diff options
author | notaz | 2012-02-22 01:30:51 +0200 |
---|---|---|
committer | notaz | 2012-02-27 00:27:41 +0200 |
commit | f7be0e2b7adc4f6c4057f44f789bd7405844701c (patch) | |
tree | aed2f7bcc8216b47f97301fc5fcc4f00b511cf93 /plugins/gpu_unai/Makefile | |
parent | bb88ec28db0535102b70a7c18ef095cb904e3c6c (diff) | |
download | pcsx_rearmed-f7be0e2b7adc4f6c4057f44f789bd7405844701c.tar.gz pcsx_rearmed-f7be0e2b7adc4f6c4057f44f789bd7405844701c.tar.bz2 pcsx_rearmed-f7be0e2b7adc4f6c4057f44f789bd7405844701c.zip |
gpu_unai: update CFLAGS
avoid -fPIC if not really needed, no need for a performance hit
Diffstat (limited to 'plugins/gpu_unai/Makefile')
-rw-r--r-- | plugins/gpu_unai/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gpu_unai/Makefile b/plugins/gpu_unai/Makefile index dd9e4ca..57a0371 100644 --- a/plugins/gpu_unai/Makefile +++ b/plugins/gpu_unai/Makefile @@ -3,7 +3,7 @@ CC = $(CROSS_COMPILE)g++ ARCH = $(shell $(CC) -v 2>&1 | grep -i 'target:' | awk '{print $$2}' | awk -F '-' '{print $$1}') CFLAGS += -DREARMED -CFLAGS += -ggdb -Wall -fPIC -O2 -ffast-math +CFLAGS += -ggdb -Wall -O3 -ffast-math SRC_STANDALONE += gpu.cpp SRC_GPULIB += gpulib_if.cpp |