diff options
author | Simon Horman <horms@verge.net.au> | 2008-10-08 15:53:02 +1100 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2008-10-08 17:09:04 +1100 |
commit | edd13ae1c4965b6f1e8a8e07d8e01d31fef37d55 (patch) | |
tree | 68b73a327893a2acab913ec0a2fd8444ebf4071a /Makefile.in | |
parent | 7210dc1f75575412b6c29b004614194b9d3ce956 (diff) |
Only use -fno-zero-initialized-in-bss if it is available
As pointed out by Edgar E. Iglesias, the -fno-zero-initialized-in-bss
option to gcc is not available in the cris 3.2.1 toolchain.
Signed-off-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index f0621e1..6b4c954 100644 --- a/Makefile.in +++ b/Makefile.in @@ -46,6 +46,7 @@ TARGET_CFLAGS = @TARGET_CFLAGS@ CPPFLAGS = @CPPFLAGS@ -I$(srcdir)/include -I$(srcdir)/util_lib/include \ -Iinclude/ CFLAGS = @CFLAGS@ -fno-strict-aliasing -Wall -Wstrict-prototypes +PURGATORY_EXTRA_CFLAGS = @PURGATORY_EXTRA_CFLAGS@ ASFLAGS = @ASFLAGS@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ |