[build] Disabling split-dwarf for now due to possible errors

Change-Id: Ibb5821ad428e87c3bf64f638632167cac51d70a0
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 @@
 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