more warnings

This commit is contained in:
Màrius Montón 2021-01-15 10:15:08 +01:00
parent 39bb40f189
commit 63dfb0f5f1
1 changed files with 3 additions and 2 deletions

View File

@ -5,11 +5,12 @@ TARGET_ARCH=linux64
CC = g++ CC = g++
# compiling flags here # compiling flags here
CFLAGS = -Wall -I. -O3 -std=c++11 CFLAGS = -Wall -I. -O3 -std=c++11 -g -Wall -Wextra
LINKER = g++ LINKER = g++
# linking flags here # linking flags here
LFLAGS = -Wall -I. -lm LFLAGS = -Wall -I. -lm -g
LIBS = -lsystemc -lm $(EXTRA_LIBS) LIBS = -lsystemc -lm $(EXTRA_LIBS)