summaryrefslogtreecommitdiff
path: root/scripts/build
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-02-23 06:00:03 (GMT)
committerGitHub <noreply@github.com>2017-02-23 06:00:03 (GMT)
commit4de4507a651901c65e09ee7db644962d4ac956ff (patch)
tree910d43d6d5cb2258e593132da2f1b202f3625cb1 /scripts/build
parent1468e996f75fe7b9c23c883d9367633cf3d0177e (diff)
parentc8d7d79e20f83e3ca268b0c302263a8c6660bd8a (diff)
Merge pull request #375 from jasmin-j/add_tls_config
Added new gcc config option CC_GCC_CONFIG_TLS
Diffstat (limited to 'scripts/build')
-rw-r--r--scripts/build/cc/100-gcc.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/build/cc/100-gcc.sh b/scripts/build/cc/100-gcc.sh
index 48f5122..81ef523 100644
--- a/scripts/build/cc/100-gcc.sh
+++ b/scripts/build/cc/100-gcc.sh
@@ -555,6 +555,12 @@ do_gcc_core_backend() {
extra_config+=("--with-system-zlib")
fi
+ case "${CT_CC_GCC_CONFIG_TLS}" in
+ y) extra_config+=("--enable-tls");;
+ m) ;;
+ "") extra_config+=("--disable-tls");;
+ esac
+
# Some versions of gcc have a defective --enable-multilib.
# Since that's the default, only pass --disable-multilib. For multilib,
# also enable multiarch. Without explicit --enable-multiarch, pass-1
@@ -1077,6 +1083,12 @@ do_gcc_backend() {
extra_config+=("--with-system-zlib")
fi
+ case "${CT_CC_GCC_CONFIG_TLS}" in
+ y) extra_config+=("--enable-tls");;
+ m) ;;
+ "") extra_config+=("--disable-tls");;
+ esac
+
# Some versions of gcc have a defective --enable-multilib.
# Since that's the default, only pass --disable-multilib.
if [ "${CT_MULTILIB}" != "y" ]; then