Gary Oberbrunner wrote:
> Anyway, gotta getsomereal work done, hope that helps you get started.
Yes, it did, thank you very much!
Eventually, I found a very simple work-aroundthat however is pretty
specific tomy case. I just use
env.Append(LINKCOM=" -Wl,--allow-multiple-definition -Wl,--whole-archive
-lcfsLib -Wl,--no-whole-archive")
now, withthe--allow-multiple-definition being required because I keep
cfsLib listed in LIBS as usual (for SCons's dependeny info), so thatthe
linkers sees it twice, and generates "multiple definition" errors
withoutit.
Not a very nice solution, butit works well! :-)