summaryrefslogtreecommitdiff
path: root/configs/linux-llvm
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-12-18 11:12:59 -0700
committerBrian Paul <brianp@vmware.com>2009-12-18 11:13:06 -0700
commit04794080d2553a53f34a48b1aec7d2a630396d92 (patch)
treef508839252dea37d42cbeaad44256dd31a36809d /configs/linux-llvm
parentaeb6351a0961534e77771b962c296485b98b79fe (diff)
llvmpipe: change configs/linux-llvm from debug build to optimized build
Basically equivalent to the SCons non-debug build now.
Diffstat (limited to 'configs/linux-llvm')
-rw-r--r--configs/linux-llvm8
1 files changed, 5 insertions, 3 deletions
diff --git a/configs/linux-llvm b/configs/linux-llvm
index 19b53cc546..ace4619b36 100644
--- a/configs/linux-llvm
+++ b/configs/linux-llvm
@@ -1,5 +1,5 @@
# -*-makefile-*-
-# Configuration for Linux and LLVM with debugging info
+# Configuration for Linux and LLVM with optimizations
# Builds the llvmpipe gallium driver
include $(TOP)/configs/linux
@@ -11,8 +11,10 @@ CONFIG_NAME = linux-llvm
# Add llvmpipe driver
GALLIUM_DRIVERS_DIRS += llvmpipe
-OPT_FLAGS = -g -ansi -pedantic
-DEFINES += -DDEBUG -DDEBUG_MATH -DGALLIUM_LLVMPIPE -DHAVE_UDIS86
+OPT_FLAGS = -O3 -ansi -pedantic
+ARCH_FLAGS = -m32 -mmmx -msse -msse2 -mstackrealign
+
+DEFINES += -DNDEBUG -DGALLIUM_LLVMPIPE -DHAVE_UDIS86
# override -std=c99
CFLAGS += -std=gnu99