diff options
author | Matt Fleming <matt.fleming@intel.com> | 2013-07-05 11:33:26 +0100 |
---|---|---|
committer | Matt Fleming <matt.fleming@intel.com> | 2013-07-05 13:05:16 +0100 |
commit | bbd9262c2323c1df461f18fcfa2aed56cd2411ce (patch) | |
tree | 8443f2c3db44c833b9e5b9feefbb59aa7c686861 /mk | |
parent | 00d0f3add99de6d9c83ff2492bac175a5e1b8a11 (diff) | |
download | syslinux-bbd9262c2323c1df461f18fcfa2aed56cd2411ce.tar.gz syslinux-bbd9262c2323c1df461f18fcfa2aed56cd2411ce.tar.xz syslinux-bbd9262c2323c1df461f18fcfa2aed56cd2411ce.zip |
mk: include $(GCCWARN) when building ELF objects
It's currently impossible to turn on dprintf() statements in
com32/modules because $(GCCWARN) isn't used as part of $(CFLAGS).
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Diffstat (limited to 'mk')
-rw-r--r-- | mk/elf.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ GPLLIB = GPLINCLUDE = endif -CFLAGS = $(GCCOPT) -W -Wall -march=i386 \ +CFLAGS = $(GCCOPT) $(GCCWARN) -W -Wall -march=i386 \ -fomit-frame-pointer -D__COM32__ -DDYNAMIC_MODULE \ -nostdinc -iwithprefix include \ -I$(com32)/libutil/include -I$(com32)/include $(GPLINCLUDE) \ |