diff options
author | andreas <andreas@FreeBSD.org> | 1996-09-27 19:59:36 +0800 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1996-09-27 19:59:36 +0800 |
commit | 3ebcdfdcb151e34bb00f0f8e6ac3876b24b287ae (patch) | |
tree | 893e2b8290a970344080912ca9dc455c738c5b37 /archivers | |
parent | fd43d1af7060043b16d5ac0e9215e1880944c864 (diff) | |
download | freebsd-ports-gnome-3ebcdfdcb151e34bb00f0f8e6ac3876b24b287ae.tar.gz freebsd-ports-gnome-3ebcdfdcb151e34bb00f0f8e6ac3876b24b287ae.tar.zst freebsd-ports-gnome-3ebcdfdcb151e34bb00f0f8e6ac3876b24b287ae.zip |
The readme file says, that it's important for i386 architecture,
to include -fomit-frame-pointer into the CFLAGS.
BTW: someone here who knows, if -funroll-loops might add some (stable)
performance as well ?!
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/bzip/files/patch-aa | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/archivers/bzip/files/patch-aa b/archivers/bzip/files/patch-aa index a08a49f31c33..69b52ae7048c 100644 --- a/archivers/bzip/files/patch-aa +++ b/archivers/bzip/files/patch-aa @@ -1,6 +1,6 @@ --- Makefile.orig Sat Aug 31 09:50:33 1996 -+++ Makefile Fri Sep 27 12:54:40 1996 -@@ -1,29 +1,15 @@ ++++ Makefile Fri Sep 27 13:57:55 1996 +@@ -1,29 +1,17 @@ - -CC = gcc -SH = /bin/sh @@ -8,7 +8,8 @@ -CFLAGS = -O3 -fomit-frame-pointer -funroll-loops -Wall -Winline -Wshadow -W - - -- ++CFLAGS+= -fomit-frame-pointer + all: - cat words0 $(CC) $(CFLAGS) -o bzip bzip.c |