Title: Building on OSX Lion Post by: celynwalters on April 26, 2012, 05:58:50 pm Hi - trying to build so I can use the Kohr-Ah cleansing mod, but when I ./build.sh uqm anything
it displays: 'echo -n' capable echo found. Sed stream editor found. tr found. Make found. build/unix/config_proginfo_host: line 251: libmikmod-config: command not found build/unix/config_proginfo_host: line 252: libmikmod-config: command not found build/unix/config_proginfo_host: line 253: libmikmod-config: command not found GNU C compiler found. We have a C preprocessor. We have a C dependency generator. We have a C compiler. We have a linker. We have a Objective-C preprocessor. We have a Objective-C dependency generator. We have a Objective-C compiler. Rez resource compiler (Apple Developer Tools) not found. No MacOS X resource compiler (Rez) found. I know I have Rez, I've downloaded the latest command line tools package, and in the terminal I can type "Re" and press tab, and Rez exists. Any pointers would be much appreciated. Title: Re: Building on OSX Lion Post by: superbutcherx on December 04, 2012, 07:57:48 am Hi, Celyn.
This comes in quite-a-late, but hopefully it'll still help you. The reason UQM builder can't find rez is that Apple in its wisdom shifts the developing tools and all the other important shit around in every damn UI update they make. If you're running Xcode 4.5.x (maybe applicable to all Xcode 4 releases, dunno), the command line tools are not on your HD in /Developer/Tools/ folder anymore. They are now inside the Xcode .app, in /Applications/Xcode.app/Contents/Developer/usr/bin . The UQM builder tries to locate Rez in /Developer/, so it needs to be told where the Rez resides nowadays. To do this: 1.open /build/unix/config_proginfo_build and find the following line: PROG_Rez_FILE="/Developer/Tools/Rez" 2. Change the line to PROG_Rez_FILE="/Applications/Xcode.app/Contents/Developer/usr/bin/Rez" Try building again. It should find Rez now! :) |