I don't even know what it's talking about. If it thinks that I want to link
EVERY library statically, including glibc, then it's mistaken. I only want to
link SOME statically.
-Aidan
Steve Holdoway wrote:
On Fri, 28 Mar 2008 21:52:35 +1300
Aidan Gauland <[EMAIL PROTECTED]> wrote:
3) Bugger around with the -Wl, option to talk directly to ld instead
of via the gcc wrapper. (Hint the program gcc is just a wrapper that
parses options, adds some more and invokes the real preprocessor /
compiler / assembler / linker.)
Nuts! Didn't work! Got error:
/usr/bin/ld: cannot find -lgcc_s
collect2: ld returned 1 exit status
I only managed to get rid of dynamic links to gcc_s ( even with the
-static-libgcc flag ) when I used stlport - http://www.stlport.org.
Steve