1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

Don't forceably add -O2 to CFLAGS as this is known to cause problems

because of optimization bugs in the compiler on the Alpha.
This commit is contained in:
Steve Price 2000-05-28 03:19:46 +00:00
parent c6f6217221
commit 11f12d4c1b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=28790

View File

@ -1,11 +1,14 @@
--- Makefile.orig Tue May 16 14:31:04 2000
+++ Makefile Thu May 18 17:31:44 2000
@@ -2,5 +2,6 @@
--- Makefile.orig Tue May 16 16:31:04 2000
+++ Makefile Sat May 27 16:54:49 2000
@@ -1,8 +1,9 @@
SHELL=/bin/sh
-CC=gcc
+CC?=gcc
BIGFILES=-D_FILE_OFFSET_BITS=64
-CFLAGS=-Wall -Winline -O2 -fomit-frame-pointer -fno-strength-reduce $(BIGFILES)
+CFLAGS?=-O2
+CFLAGS+=-Wall -Winline -O2 -fomit-frame-pointer -fno-strength-reduce $(BIGFILES)
+CFLAGS+=-Wall -Winline -fomit-frame-pointer -fno-strength-reduce $(BIGFILES)
OBJS= blocksort.o \
huffman.o \