aboutsummaryrefslogtreecommitdiff
path: root/helpers/llvm-build
diff options
context:
space:
mode:
authorRenato Golin <renato.golin@linaro.org>2016-10-26 11:59:06 +0100
committerRenato Golin <renato.golin@linaro.org>2016-10-26 11:59:06 +0100
commitddb253272ce266104f4a4e4eb4a4db21d0d2dcfb (patch)
tree27f40acdfebe49c13e300cc2a4edbd8460bb21d3 /helpers/llvm-build
parent0360ac24913f7654623d3a0b441f625afdbbd9f7 (diff)
[build] Disabling split-dwarf for now due to possible errors
Change-Id: Ibb5821ad428e87c3bf64f638632167cac51d70a0
Diffstat (limited to 'helpers/llvm-build')
-rwxr-xr-xhelpers/llvm-build5
1 files changed, 4 insertions, 1 deletions
diff --git a/helpers/llvm-build b/helpers/llvm-build
index b6fb46b..3f81e0a 100755
--- a/helpers/llvm-build
+++ b/helpers/llvm-build
@@ -45,7 +45,10 @@ fi
if [ "$LLVM_DEBUG" = true ]; then
build_type=Debug
shared=-DBUILD_SHARED_LIBS=True
- dwarf=-DLLVM_USE_SPLIT_DWARF=ON
+ # Disabling split-dwarf until we can be sure the relocation
+ # problems we're seeing aren't specific to this feature
+ # Error: R_ARM_ABS32 used with TLS symbol
+ #dwarf=-DLLVM_USE_SPLIT_DWARF=ON
targets=$minimal_targets
fi