Open galdor opened 11 years ago
Straight forward workarround: it seems save to edit the Makefile and just remove the offending -Wl.
I am neither an expert with C in general or the gcc compiler in particular, but from reading http://gcc.gnu.org/onlinedocs/gcc/Link-Options.html it seems that a syntax like -Wl,--some-linker-option is used to pass options to the linker. Only in our case there are no options. Maybe a copy&paste-Error?
I ran into this issue today.
I guess gcc does not like
-Wl
with no linker option.
Yep. Apparently they made it illegal in GCC 4.7. Since the option didn't do anything removing it is harmless.
I guess gcc does not like
-Wl
with no linker option.