1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Building DynCall on Mac OS X
============================
The build system supports universal binaries (including static libraries).
In addition, the desired SDK can be choosen.
Configure switches related to Mac OS X:
Operating System:
--target=MacOSX (auto-detect)
SDK:
--sdk=<version> (auto-detect)
Architecture:
not specified, builds universal binaries depending on SDK version
Configure and build for host platform:
./configure
make
sudo make install
Compile for Mac OS X 10.4u:
configure --target=MacOSX --sdk=10.4u
|