diff options
author | Jamie Bullock <jamie@postlude.co.uk> | 2007-09-24 10:26:26 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@postlude.co.uk> | 2007-09-24 10:26:26 +0000 |
commit | ac13b3230b9b85cb092742a192a9c2bae6c5e779 (patch) | |
tree | 507e5ed2ab01d71b4ef1b994eb016b75538a6167 | |
parent | 05c9f692e8a4139320b4f541e1654f7cd0fb44ec (diff) | |
download | LibXtract-ac13b3230b9b85cb092742a192a9c2bae6c5e779.tar.gz LibXtract-ac13b3230b9b85cb092742a192a9c2bae6c5e779.tar.bz2 LibXtract-ac13b3230b9b85cb092742a192a9c2bae6c5e779.zip |
Minor documentation change
-rw-r--r-- | README | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -36,6 +36,25 @@ There following configure flags are optional: --enable-fft (to enable functions that require fftw3) --enable-simpletest (to build the simpletest example) +If you wish to build a Universal binary on OS X: + +CFLAGS="-isysroot /Developer/SDKs/MacOSX10.4u.sdk -Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc" \./configure --isable-dependency-tracking --your-options + +Building the MSP external +------------------------- + +Type: + +cd examples/MSP +make +sudo make install + +To build for a specific architecture: + +make intel +or +make ppc + Building the Python bindings ---------------------------- |