From 05b39a9bdb727cbaf43be3111bcdd88443e2a379 Mon Sep 17 00:00:00 2001 From: axel Date: Tue, 7 Mar 2006 04:49:24 +1000 Subject: [PATCH] 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 --- Makefile.in | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Makefile.in b/Makefile.in index 82eed46a1..4bb8f9b37 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.