summaryrefslogtreecommitdiff
path: root/tcwg-llvm-release.sh
diff options
context:
space:
mode:
authorRenato Golin <renato.golin@linaro.org>2017-05-12 16:05:36 +0100
committerRenato Golin <renato.golin@linaro.org>2017-05-12 16:05:36 +0100
commit9059e1f0b5b5f752d6ab9ae6a4ef19e841f4fc33 (patch)
tree48b2d89f83a399d195eadc110aa5419006a5950b /tcwg-llvm-release.sh
parent2e125142f39db30aeb5e5a3ec065b23ba1758c6b (diff)
tcwg-llvm-release.sh: openmp is now on by default
Change-Id: I22ec92c285086d714079e96feb310c9de4bce3ec
Diffstat (limited to 'tcwg-llvm-release.sh')
-rwxr-xr-xtcwg-llvm-release.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tcwg-llvm-release.sh b/tcwg-llvm-release.sh
index 01159022..925d55b0 100755
--- a/tcwg-llvm-release.sh
+++ b/tcwg-llvm-release.sh
@@ -123,11 +123,11 @@ fi
# Additional Options
PLATFORM=$(uname -m)
-OPENMP="-openmp"
+OPENMP=""
TARGET="$PLATFORM-linux-gnu"
if echo "$PLATFORM" | grep -qi "armv7"; then
TARGET="armv7a-linux-gnueabihf"
- OPENMP=""
+ OPENMP="-no-openmp"
elif ! echo "$PLATFORM" | grep -qi "aarch64" && \
! echo "$PLATFORM" | grep -qi "x86_64"; then
echo "ERROR: Don't recognise PLATFORM $PLATFORM"