Ticket #11693: patch-config.diff
File patch-config.diff, 679 bytes (added by julian9@…, 18 years ago) |
---|
-
config
old new 1 1 # config file used for the Makefile only 2 2 3 # define to 1 to use Altivec instructions 4 USE_ALTIVEC ?= 0 5 6 # define to 1 to use SSE2 instructions 7 USE_SSE ?= 0 3 export PROCESSOR = $(shell uname -p) 4 ifeq ($(PROCESSOR), powerpc) 5 # define to 1 to use Altivec instructions 6 USE_ALTIVEC ?= 1 7 USE_SSE ?= 0 8 else 9 # define to 1 to use SSE2 instructions 10 USE_ALTIVEC ?= 0 11 USE_SSE ?= 1 12 endif 8 13 9 14 # default flags 10 15 CXXFLAGS ?= -O2 … … 18 23 endif 19 24 20 25 # where should we install to 21 INSTALL_DIR ?= / usr/local26 INSTALL_DIR ?= /opt/local 22 27