1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 05:53:49 +01:00

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}
LINKFLAGS += ${LTOFLAGS}
endif
# Forbid common symbols to prevent accidental aliasing.
CFLAGS += -fno-common