Compiler Options Ingored
Posted: Wed Mar 04, 2009 10:39 pm
I'm trying to build an executable program on Linux using g++ with it linking a shared library statically. However it seems as though CodeLite ignores my compiler and linker options. For example, under compiler options I have tried the following combination's:
-g;-static
-g -static
g static
But when I hit build, I never see the -g or the -static or any other compiler options I try on the g++ call (for example below).
g++ -o ../../../../bin/cxtimer_d ../../../../tmp/cxtimer_d/cxtimer.o "-L/home/dbarber/Active/libraries/jaus++/trunk/1.0/lib" "-L/home/dbarber/Active/libraries/jaus++/trunk/1.0/ext/lib" "-L../../../../lib" -lcxutils_d -lpthread
What am I doing wrong, or have I not created my project correctly?
-g;-static
-g -static
g static
But when I hit build, I never see the -g or the -static or any other compiler options I try on the g++ call (for example below).
g++ -o ../../../../bin/cxtimer_d ../../../../tmp/cxtimer_d/cxtimer.o "-L/home/dbarber/Active/libraries/jaus++/trunk/1.0/lib" "-L/home/dbarber/Active/libraries/jaus++/trunk/1.0/ext/lib" "-L../../../../lib" -lcxutils_d -lpthread
What am I doing wrong, or have I not created my project correctly?