aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-03-07 04:49:24 +1000
committerGravatar axel <axel@liljencrantz.se>2006-03-07 04:49:24 +1000
commit05b39a9bdb727cbaf43be3111bcdd88443e2a379 (patch)
treed6dc7f5c615f5a8fc89a90e7bbe32ba02c033224
parent91ab6441735b42085ee87a6ce862b06b72bf6af1 (diff)
Drop the -fno-strict-aliasing flag for GCC in Makefile.in, since it dealt with type punning using anonymous unions, which fish doesn't have anymore
darcs-hash:20060306184924-ac50b-cfcb9fff791a1fc6d8d18961cf760c13829b5707.gz
-rw-r--r--Makefile.in7
1 files changed, 2 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in
index 82eed46a..4bb8f9b3 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -45,13 +45,10 @@ INSTALL:=@INSTALL@
# now. Long term, this should be tracked down and truly fixed, at which
# point we can remove this silly flag.
#
-# -fno-strict-aliasing was sent in in a patch from James Vega. The
-# specific problem that this fixes has been lost to me.
-#
# -Wall is there to keep me on my toes
#
-CFLAGS:=@CFLAGS@ -Wall -fno-strict-aliasing -fno-optimize-sibling-calls
+CFLAGS:=@CFLAGS@ -Wall -fno-optimize-sibling-calls
CPPFLAGS=@CPPFLAGS@
LDFLAGS:= @LIBS@ @LDFLAGS@
@@ -211,7 +208,7 @@ all: $(PROGRAMS) user_doc
.PHONY: all
debug:
- make fish CFLAGS="-O0 -Wno-unused -Werror -g -Wall -fno-strict-aliasing -fno-optimize-sibling-calls"
+ make fish CFLAGS="-O0 -Wno-unused -Werror -g -Wall -fno-optimize-sibling-calls"
.PHONY: debug
# User documentation, describing the features of the fish shell.