From d1e057eefb79dbdf2fe3c3ab20e6349109f577ea Mon Sep 17 00:00:00 2001
From: Arvind S Raj <sraj.arvind@gmail.com>
Date: Mon, 21 Jul 2014 18:58:28 +0530
Subject: [PATCH] Disable building gcc with TLS support since ARM build fails
 due to undefined references

---
 build/scripts/build_cross_tools_gcc4 | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/build/scripts/build_cross_tools_gcc4 b/build/scripts/build_cross_tools_gcc4
index 162359599d..15f19205b1 100755
--- a/build/scripts/build_cross_tools_gcc4
+++ b/build/scripts/build_cross_tools_gcc4
@@ -42,6 +42,10 @@ arm-*)
 		--with-cpu=cortex-a8 --with-arch=armv7-a --with-fpu=vfpv3"
 	gccConfigureArgs="--disable-multilib --with-float=hard
 		--with-cpu=cortex-a8 --with-arch=armv7-a --with-fpu=vfpv3"
+
+	# TODO: Disable building with TLS support for ARM until implemented.
+	binutilsConfigureArgs+="--disable-tls"
+	gccConfigureArgs+="--disable-tls"
 	;;
 *)
 	binutilsConfigureArgs="--disable-multilib"