Changeset 15383

Show
Ignore:
Timestamp:
12/06/05 17:47:04 (3 years ago)
Author:
bonefish
Message:

Support PPC as target architecture.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • haiku/trunk/build/jam/BuildSetup

    r15025 r15383  
    6262# analyze the gcc machine spec to determine HAIKU_CPU 
    6363switch $(HAIKU_GCC_MACHINE) { 
    64         case i386-* : HAIKU_CPU = x86 ; 
    65         case i486-* : HAIKU_CPU = x86 ; 
    66         case i586-* : HAIKU_CPU = x86 ; 
    67         case i686-* : HAIKU_CPU = x86 ; 
    68         # TODO: PPC? 
     64        case i386-*             : HAIKU_CPU = x86 ; 
     65        case i486-*             : HAIKU_CPU = x86 ; 
     66        case i586-*             : HAIKU_CPU = x86 ; 
     67        case i686-*             : HAIKU_CPU = x86 ; 
     68        case powerpc-*  : HAIKU_CPU = ppc ; 
    6969        case * : Exit "Unsupported gcc target machine:" $(HAIKU_GCC_MACHINE) ; 
    7070}