1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Makefile.cflags: Add -fno-common by default to CFLAGS.

This commit is contained in:
Joakim Gebart 2015-01-23 19:24:55 +01:00
parent f71f8322d9
commit 669a4129af

View File

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