summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2014-09-25 11:21:02 +0000
committerJavier Jardón <jjardon@gnome.org>2014-09-25 19:45:07 +0100
commitfad73985ed710c33f7f0e214d4c58d092b55865c (patch)
treed20f83289adb49701f77dd0702a232bc2f0d9f64
parent83f1a488930bf99bf9863ac9d617384a123fbe70 (diff)
downloaddefinitions-jjardon/llvm.tar.gz
llvm.morph: Compile the default options with some exceptionsjjardon/llvm
--disable--asertions: those checks are not needed in production systems --enable-optimized: it will help compiling on ARM --enable-shared: mesa recommends llvm to be compiled in this way See http://llvm.org/docs/GettingStarted.html#local-llvm-configuration and http://llvm.org/docs/HowToBuildOnARM.html
-rw-r--r--strata/mesa-common/llvm.morph6
1 files changed, 3 insertions, 3 deletions
diff --git a/strata/mesa-common/llvm.morph b/strata/mesa-common/llvm.morph
index fed29165..c967c064 100644
--- a/strata/mesa-common/llvm.morph
+++ b/strata/mesa-common/llvm.morph
@@ -3,6 +3,6 @@ kind: chunk
description: Low Level Virtual Machine
build-system: autotools
configure-commands:
-- ./configure --prefix="$PREFIX" --libdir="$PREFIX"/lib/llvm --sysconfdir=/etc --enable-shared
- --enable-libffi --enable-targets=all --disable-expensive-checks --disable-debug-runtime
- --disable-assertions --enable-optimized
+- ./configure --prefix="$PREFIX" --disable-assertions --enable-optimized --enable-shared
+build-commands:
+- make $MAKEFLAGS