Changes between Version 22 and Version 23 of MussaglBuild


Ignore:
Timestamp:
08/15/2007 03:28:37 PM (17 years ago)
Author:
diane
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MussaglBuild

    v22 v23  
    1515 See the [wiki:MussaglBuildWindows Building MussaGL on Windows] page for more information.
    1616
    17 == OS X Universal Build ==
     17== OS X Universal Build Dependencies ==
    1818
    1919  As of darcs patch [300] mussa now builds as a universal binary on os x.
     
    9797}}}
    9898
     99
     100'''OS X & Multiple Python Installations'''
     101
     102If you're building on OS X and have several different versions of python installed you might want to pick which python to link against. To do so, you'll need to use ccmake to edit 4 CMake python variables.
     103
     104For instance if you want to link against the version of python that ships with OS X, you need to use the following settings.
     105
     106{{{
     107PYTHON_DEBUG_LIBRARY = -F/System/Library/Frameworks -framework Python
     108PYTHON_LIBRARY = -F/System/Library/Frameworks -framework Python
     109PYTHON_EXECUTABLE = /usr/bin/python2.3
     110PYTHON_INCLUDE = /usr/include/python2.3
     111}}}
     112
     113-F needs to be set to which the base path of whatever framework you want to force to be used, and it needs to precede the -framework you want to force.
     114
    99115== CMake Troubleshooting ==
    100116