Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Initial Version and Version 1 of dev/MacOSXDependencies


Ignore:
Timestamp:
Dec 1, 2010, 3:01:39 PM (13 years ago)
Author:
youngk
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • dev/MacOSXDependencies

    v1 v1  
     1= Mac OS X Dependencies =
     2
     3In order to get the orxonox dependencies to build properly on the mac, some tricks are needed. This page will contain some or more important tidbits for compiling various dependencies on the mac.
     4
     5== Configure Flags ==
     6
     7For a list of all possible configure flags, run ../configure --help.
     8The following are common ones:
     9
     10|| Configure Flag || Description ||
     11|| {{{--enable-universal_binary}}} || Gives you a universal binary running on ppc and i386 OS X variants. ||
     12|| {{{--with-macosx-version-min}}} || For specifing the minimal supported OS X version, eg. --with-macosx-version-min=10.4. ||
     13|| {{{--with-macosx-sdk}}} || For specifing which SDK you want to build against, the maximum system whose API you want to benefit from, ie it can run on newer systems, but newer APIs would not be used, eg --with-macosx-sdk=/Developer/SDKs/MacOSX10.4u.sdk. ||
     14|| {{{--enable-debug}}} || Build the library with debug support (recommended for development phase of your product) ||
     15|| {{{--disable-shared}}} || Builds static libraries. (note: Linking your own applications against dynamic libraries is quicker than against static ones.)(note 2 : do not combine with monolithic) ||
     16
     17== Compiler Flags ==
     18
     19|| Compiler and Linker Flag || Description ||
     20|| {{{-arch}}} || Set both the CFLAGS and the LDFLAGS variable to the desired architecture, i.e. {{{i386, ppc, ppc64, x86_64}}} ||