1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
Description: remove unneeded and obsolete CPU optimizations
Author: Faidon Liambotis <paravoid@debian.org>
We pass our own flags anyway, so such magic optimization flags are not
likely to help.
--- a/Makefile
+++ b/Makefile
@@ -104,22 +104,6 @@ export PRIVERSION
PRIVERSION:=$(shell GREP=$(GREP) AWK=$(AWK) build_tools/make_version .)
-#The problem with sparc is the best stuff is in newer versions of gcc (post 3.0) only.
-#This works for even old (2.96) versions of gcc and provides a small boost either way.
-#A ultrasparc cpu is really v9 but the stock debian stable 3.0 gcc doesnt support it.
-ifeq ($(PROC),sparc64)
-PROC=ultrasparc
-LIBPRI_OPT = -mtune=$(PROC) -O3 -pipe -fomit-frame-pointer -mcpu=v8
-else
- ifneq ($(CODE_COVERAGE),)
- LIBPRI_OPT=
- COVERAGE_CFLAGS=-ftest-coverage -fprofile-arcs
- COVERAGE_LDFLAGS=-ftest-coverage -fprofile-arcs
- else
- LIBPRI_OPT=-O2
- endif
-endif
-
ifeq ($(CPUARCH),i686)
CFLAGS += -m32
SOFLAGS += -m32
|