I recently started using scons to build several small cross-platform projects. One of these projects needs to link against pre-built static libraries... how is this done?

In make, I'd just append "link /LIBPATH:wherever libstxxl.lib" on windows, and "stxxl.a" on unix.

link|improve this question

One small note, it's better to say LIBS=['foo'] rather than LIBS=['libfoo']. The former gives you platform independance (ie, in POSIX you will get a libfoo.a, and in Windows a foo.lib) – imran.fanaswala Dec 12 '08 at 0:49
feedback

1 Answer

up vote 5 down vote accepted

Just to document the answer, as I already located it myself.

Program( 'foo', ['foo.cpp'], LIBS=['foo'], LIBPATH='.' )

Adding the LIBS & LIBPATH parameters add the correct arguments to the build command line.

More information here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.