On May 31, 2004, at 11:11 AM, Rene Rivera wrote:
Nick Bastin wrote:
On May 31, 2004, at 12:27 AM, Rene Rivera wrote:
You can start by making sure it runs without building anything.. "bjam -v" will output the version info and exit. If that's no problem you can start adding debug options until you get something... "bjam -d<number>" <number> can go from 1 to 13 (I think). Ok, so it appears to be in an infinite loop. bjam -d5 prints the following, over and over again: /Users/nbastin/Desktop/boost_1_31_0/tools/build/v1/python.jam:109:
|>>> set PYTHON_FRAMEWORK = /
Ouch I see the problem. Try changing line #107 (while $(PYTHON_FRAMEWORK...) to:
while $(PYTHON_FRAMEWORK:D=) && $(PYTHON_FRAMEWORK:D=) != Python.framework
And tell me if that helps. I'll then fix it CVS.
That fixes the problem, thanks. -- Nick