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.
LIBS=['foo']rather thanLIBS=['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