X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=support%2Fregression%2Fports%2Fhost%2Fspec.mk;h=8112dd4690861188a68a776b8697546f567712eb;hb=761a78cecf4e8d3810a7557204f9e324a08eb795;hp=ab3f89f440158466fa155b408a39de0d06bb0520;hpb=3a8a4c8f86116fda630a3687d41683a1552c7e6c;p=fw%2Fsdcc diff --git a/support/regression/ports/host/spec.mk b/support/regression/ports/host/spec.mk index ab3f89f4..8112dd46 100644 --- a/support/regression/ports/host/spec.mk +++ b/support/regression/ports/host/spec.mk @@ -1,6 +1,10 @@ # Port specification for compiling on the host machines version of gcc SDCC = $(shell ( sh -c "gcc --version" 2>&1 ) > /dev/null && echo gcc || echo cc) -SDCCFLAGS = -DPORT_HOST=1 -Wall -fsigned-char -fpack-struct -DREENTRANT= -I$(top_builddir) -I$(top_srcdir) +SDCCFLAGS = -DPORT_HOST=1 -fsigned-char -fpack-struct -DREENTRANT= -I$(top_builddir) -I$(top_srcdir) +# disable all warnings: +SDCCFLAGS+= -w +# enable all warnings: +#SDCCFLAGS+= -Wall EXEEXT = .bin OBJEXT = .o