Compile with the -pedantic flag set

This commit is contained in:
Pierre Pronchery 2011-04-23 06:07:22 +00:00
parent 1e046db958
commit 73174d63c3
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ CC = cc
CPPFLAGSF= -I ../../include CPPFLAGSF= -I ../../include
CPPFLAGS= CPPFLAGS=
CFLAGSF = -W `pkg-config --cflags libSystem` CFLAGSF = -W `pkg-config --cflags libSystem`
CFLAGS = -Wall -g -O2 -fPIC CFLAGS = -Wall -g -O2 -fPIC -pedantic
AR = ar -rc AR = ar -rc
RANLIB = ranlib RANLIB = ranlib
LD = $(CC) -shared LD = $(CC) -shared

View File

@ -1,7 +1,7 @@
targets=dex,elf,flat,java,pe targets=dex,elf,flat,java,pe
cppflags_force=-I ../../include cppflags_force=-I ../../include
cflags_force=-W `pkg-config --cflags libSystem` cflags_force=-W `pkg-config --cflags libSystem`
cflags=-Wall -g -O2 -fPIC cflags=-Wall -g -O2 -fPIC -pedantic
dist=Makefile dist=Makefile
[dex] [dex]