I am working on a makefile and trying to compile it for debugging (I added -g and -Wall flag). Here are the relevant parts:
LDFLAGS =-L$(ORACLE_HOME)/lib -L$(ORACLE_HOME)/rdbms/lib -L../../lib
INCLUDE =-I$(ORACLE_HOME)/rdbms/demo -I$(ORACLE_HOME)/rdbms/public -I$(ORACLE_HOME)/plsql/public -I$(ORACLE_HOME)/network/public -I$(COMMON_SRC) -I$(BNS_INCLUDE) -I.
CFLAGS =$(INCLUDE) $(LDFLAGS) -g -Wall -Xt
Error: I am trying to compile in unix and get an error:
cc: illegal option -Wall
*** Error code 1
clearmake: Error: Build script failed for "bess_interface.o"
I recall using -Wall before on Linux/Cygwin.
Question:
Why am I getting the
-Wallerror? Is it not a valid flag?
Note:
I initially I had:
CFLAGS =$(INCLUDE) $(LDFLAGS) -g -Xt
and when I was trying to debug I'd get an error saying:
No symbolic information for "main". Compile with
-gflag.
But the -g flag was right there!