[haiku-commits] haiku: hrev47542 - build/scripts

  • From: jessica.l.hamilton@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 21 Jul 2014 16:04:08 +0200 (CEST)

hrev47542 adds 1 changeset to branch 'master'
old head: de21d557b769da71d2c3a5479fb453b053b58775
new head: d1e057eefb79dbdf2fe3c3ab20e6349109f577ea
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=d1e057e+%5Ede21d55

----------------------------------------------------------------------------

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

                                    [ Arvind S Raj <sraj.arvind@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev47542
Commit:      d1e057eefb79dbdf2fe3c3ab20e6349109f577ea
URL:         http://cgit.haiku-os.org/haiku/commit/?id=d1e057e
Author:      Arvind S Raj <sraj.arvind@xxxxxxxxx>
Date:        Mon Jul 21 13:28:28 2014 UTC
Committer:   Jessica Hamilton <jessica.l.hamilton@xxxxxxxxx>
Commit-Date: Mon Jul 21 14:03:32 2014 UTC

----------------------------------------------------------------------------

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

----------------------------------------------------------------------------

diff --git a/build/scripts/build_cross_tools_gcc4 
b/build/scripts/build_cross_tools_gcc4
index 1623595..15f1920 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"


Other related posts:

  • » [haiku-commits] haiku: hrev47542 - build/scripts - jessica . l . hamilton