diff options
author | Richard Braun <rbraun@sceen.net> | 2016-10-27 19:16:04 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2016-10-27 19:16:04 +0200 |
commit | 5d627520d2530d596357c8434d497788df6b4b99 (patch) | |
tree | 3d691012cc2e96ac204d67fd44d8a413e89f5547 | |
parent | 2e9e881a034dbb4d9bcffdd9a0e3e80b4e720cf1 (diff) |
Makefile.am: build with -fno-common
Disable common storage for uninitialized global variables.
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index eacdc0c0..c63e7c7a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,6 +16,7 @@ AM_CFLAGS = \ -Wstrict-prototypes \ -fsigned-char \ -ffreestanding \ + -fno-common \ -fno-stack-protector LDS_V = $(LDS_V_$(V)) |