I am currently trying to use Eclipse to develop some code that I've been doing in a text editor in C.
I am currently under Linux, compiling it with GCC with the following arguments:
gcc -o SO SO.c -lpthread -lrt
I've tried adding "-lpthread -lrt"
to Eclipse's "C/C++ Build"->"Discovery Options"-> "Compiler Invocation Arguments" but it seems of no avail.
I also tried on "C/C++ Build"->"Discovery Options"-> "Settings" but that doesn't seem to do it, too.
How may I override Eclipse's GCC command line arguments?
See Question&Answers more detail:os