Hi, how can I pass the option --enable-auto-import
to ld from gcc?
views:
65answers:
3
+1
A:
You use the -Xlinker option to pass options to the linker:
$ gcc -Xlinker--enable-auto-import blah...
should work.
unwind
2010-05-28 09:26:52
+1
A:
-Xlinker option
Pass option as an option to the linker. You can use this to supply system-specific
linker options which GCC does not know how to recognize.
zed_0xff
2010-05-28 09:27:22