Merge pull request #2352 from gebart/pr/fno-common-default

Makefile.cflags: Make -fno-common the default
This commit is contained in:
Joakim Gebart 2015-01-30 15:55:37 +01:00
commit fe076783ba

View File

@ -47,3 +47,6 @@ ifeq ($(LTO),yes)
CFLAGS += ${LTOFLAGS} CFLAGS += ${LTOFLAGS}
LINKFLAGS += ${LTOFLAGS} LINKFLAGS += ${LTOFLAGS}
endif endif
# Forbid common symbols to prevent accidental aliasing.
CFLAGS += -fno-common