Changes between Version 12 and Version 13 of BuildMacApp
- Timestamp:
- Apr 2, 2008, 4:37:23 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildMacApp
v12 v13 190 190 }}} 191 191 192 The elements of our custom Makefile correspond to those described in our script, except that, instead of setting the environment variable `MACOSX_DEPLOYMENT_TARGET`, we include in the `CXXFLAGS` `-DMAC_OS_X_VERSION_MIN_REQUIRED=1030` (for GCC-3.3), or either `-mmacosx-version-min=10.4` or `-mmacosx-version-min=10.5` (forGCC-4.0).192 The elements of our custom Makefile correspond to those described in our script, with one important exception. Instead of setting the environment variable `MACOSX_DEPLOYMENT_TARGET`, we include in the `CXXFLAGS` one of the following: `-DMAC_OS_X_VERSION_MIN_REQUIRED=1030` (to build a PowerPC application using GCC-3.3), `-mmacosx-version-min=10.4` (to build a 32-bit Intel application using GCC-4.0) or `-mmacosx-version-min=10.5` (to build a 64-bit Intel application using GCC-4.0). 193 193 194 194