Changes between Version 34 and Version 35 of Mac OS X build instructions
- Timestamp:
- Mar 5, 2008 8:36:54 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Mac OS X build instructions
v34 v35 11 11 * Some things from !MacPorts (http://www.macports.org/): 12 12 {{{ 13 sudo port install i386-elf-gcc libidl libxml2subversion teTeX doxygen13 sudo port install i386-elf-gcc libidl subversion teTeX doxygen 14 14 }}} 15 Only i386-elf-gcc (for op.o in src/recompiler) , libidl (for the xpcom idl compiler) and libxml2are required. The remainder is optional. Note that as of time of writing, i386-elf-gcc will not build on Leopard. As a workaround issue {{{ sudo mv /usr/include/iconv.h /usr/include/iconv.h.tmp }}} before installing i386-elf-gcc and rename back the file after installing the compiler. If you run into the iconv build error, you need to issue {{{ sudo port clean --work i386-elf-gcc }}}, rename the header and install i386-elf-gcc again.15 Only i386-elf-gcc (for op.o in src/recompiler) and libidl (for the xpcom idl compiler) are required. The remainder is optional. Note that as of time of writing, i386-elf-gcc will not build on Leopard. As a workaround issue {{{ sudo mv /usr/include/iconv.h /usr/include/iconv.h.tmp }}} before installing i386-elf-gcc and rename back the file after installing the compiler. If you run into the iconv build error, you need to issue {{{ sudo port clean --work i386-elf-gcc }}}, rename the header and install i386-elf-gcc again. 16 16 17 17 * SDL 1.2.12 or later 1.2.x release. [[BR]] … … 25 25 1. Change to the root directory of the sources and execute the configure script: 26 26 {{{ 27 ./configure --disable-qt 27 ./configure --disable-qt --build-libxml2 28 28 }}} 29 29 If it finds everything it needs, it will create a file called '!AutoConfig.kmk' containing paths to the various tools on your system. Also, it will create an environment setup script called configure.sh. This step only has to be done once (if something changes in your build tool setup, you might have to repeat it but keep in mind that both output files will be overwritten).