I am trying to launch scons from within xcode 4 in order to build an external (i.e. not originally created in xcode) c++ project.
I have created a new project with an external build system as advised in the documentation.
Everything works except the autoconf functionality built in scons - it fails to find a library in /usr/lib. Calling scons from the shell (i.e. outside of xcode) works of course.
Since SCons allows to cache config test results, I also tried to run scons from the shell for the first time, hoping that xcode would grab the test results and therefore avoid performing them. It doesn't work - apparently scons is using a different cache when called from the shell or from xcode...
Any suggestions for identifying the problem? Thanks