Steve Jenson's blog

Can't find Framework

Can't find Framework

General OS X Porting Note:

If you run into an error like ld: can't locate framework for: -framework ./module.o, you can bet that it means that the framework wasn't figured out by the configure script properly. Dig for that code in the Makefile, see what variable it's using. If that variable isn't set, set it in the autoconf script (or just hack it into the Makefile and send a note to the developers).

In this case I figured that it was supposed to read -framework Python ./module.o so I just needed to set it the Python part.

# — 13 August, 2004