diff options
author | bjarni <bjarni@openttd.org> | 2006-02-25 21:25:23 +0000 |
---|---|---|
committer | bjarni <bjarni@openttd.org> | 2006-02-25 21:25:23 +0000 |
commit | d09e66eef68cd9a4656cc10ffb9165894a81342e (patch) | |
tree | 51da72a003083c9dc35b68b2b70d5720bfeb4cb4 /Makefile | |
parent | 4ff6b2a5148fce8f3abb110a4206b12825f243ef (diff) | |
download | openttd-d09e66eef68cd9a4656cc10ffb9165894a81342e.tar.xz |
(svn r3674) -Feature: [OSX] Added support for tripple binaries (binaries optimised for G3, G5 and i686)
G4 have no problems using G3 code while G5 can, but really benefit from getting their own optimised code (Apple: G5 is not just a fast G4)
Also changed FAT_BINARY to UNIVERSAL_BINARY since Apple removed most (all?) references to fat binaries on their homepage two days after I added FAT_BINARY
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -106,7 +106,8 @@ # # Special for crosscompiling there are some commands available: # -# FAT_BINARY: builds a universal binary for OSX. Make sure you got both PPC and x86 libs. Only works with GCC 4 or newer +# UNIVERSAL_BINARY: builds a universal binary for OSX. Make sure you got both PPC and x86 libs. Only works with GCC 4 or newer +# TRIPPLE_BINARY: builds a universal binary with the addition of code optimised for G5 (which means a total of 3 binaries in one file) # # JAGUAR: Crosscompiling for OSX 1.2.8 (codenamed Jaguar). Only works if OSX is defined too. Only works with GCC 4 or newer # This can be changed to any PPC version of OSX by changing the ppc flags in Makefile.config |