Disable building gcc with TLS support since ARM build fails due to undefined references

This commit is contained in:
Arvind S Raj 2014-07-21 18:58:28 +05:30 committed by Jessica Hamilton
parent de21d557b7
commit d1e057eefb

View File

@ -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"