From 18624d1a84e28224ec098d93400d5ee190700166 Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Wed, 30 Jan 2008 03:17:38 +0000 Subject: [PATCH] Split CFLAGS into two parts. One contains all flags except optimization setting. Needed to compile e_rem_pio2.c and k_rem_pio2.c with -O1. There are aliasing issues with that code. --- lisp/Config.linux_gencgc | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/lisp/Config.linux_gencgc b/lisp/Config.linux_gencgc index 94c91e5e1..780e873b5 100644 --- a/lisp/Config.linux_gencgc +++ b/lisp/Config.linux_gencgc @@ -21,7 +21,12 @@ endif RUNTIME = $(GENCGC) $(LINKAGE) # __NO_CTYPE so builds on glibc 2.3 will run on (some) older glibc's. CPPFLAGS = -D__NO_CTYPE -D_GNU_SOURCE -I. -I$(PATH1) -I- -I/usr/X11R6/include $(RUNTIME) -CFLAGS = -rdynamic -Wstrict-prototypes -Wall -O2 -g $(RUNTIME) + +# CFLAGS_NO_OPT should be all the C compiler flags we want, except for +# the optimization flags. Needed so we can compile e_rem_pio2 and +# k_rem_pio2 with the right optimization flags. +CFLAGS_NO_OPT = -rdynamic -Wstrict-prototypes -Wall -g $(RUNTIME) +CFLAGS = -O2 $(CFLAGS_NO_OPT) ASFLAGS = -g -DGENCGC -DLINKAGE_TABLE NM = $(PATH1)/linux-nm UNDEFSYMPATTERN = -Xlinker -u -Xlinker & @@ -41,7 +46,7 @@ OS_LIBS = -ldl # since we can't tell what compiler version we're using. e_rem_pio2.o : e_rem_pio2.c - $(CC) -c $(CFLAGS) -O1 -ffloat-store $< + $(CC) -c $(CFLAGS_NO_OPT) -O1 -ffloat-store $< k_rem_pio2.o : k_rem_pio2.c - $(CC) -c $(CFLAGS) -O1 -ffloat-store $< + $(CC) -c $(CFLAGS_NO_OPT) -O1 -ffloat-store $< -- GitLab