summaryrefslogtreecommitdiffstats
path: root/rules/libc.in
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2008-10-16 07:22:36 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2008-10-16 07:22:36 +0000
commit844cfae2c664df523d7a0debff8a7e5b1182d73c (patch)
treef654ad28f73b00afbeed329614cbc1d25851d038 /rules/libc.in
parentd86554b5ba588fe9d9910be1058c66b8ec68328e (diff)
downloadOSELAS.Toolchain-844cfae2c664df523d7a0debff8a7e5b1182d73c.tar.gz
OSELAS.Toolchain-844cfae2c664df523d7a0debff8a7e5b1182d73c.tar.xz
* rules/cross-gcc.in, rules/cross-binutils.make, rules/cross-gdb.make, rules/glibc.make, rules/cross-gcc.make, rules/libc.in:
use clean namespace use new TOOLCHAIN_ instead of GENERIC_ fix urls git-svn-id: https://svn.pengutronix.de/svn/oselas/toolchain/trunks/OSELAS.Toolchain-trunk@7845 f8d472c7-5700-0410-ac5a-87979cec3adf
Diffstat (limited to 'rules/libc.in')
-rw-r--r--rules/libc.in32
1 files changed, 18 insertions, 14 deletions
diff --git a/rules/libc.in b/rules/libc.in
index f084b65..85f0258 100644
--- a/rules/libc.in
+++ b/rules/libc.in
@@ -55,27 +55,31 @@ endchoice
#
# sysroot support
#
-config GENERIC_SYSROOT
- bool
+config TOOLCHAIN_ENABLE_SYSROOT
+ bool
+ default !TOOLCHAIN_DISABLE_SYSROOT
+
+config TOOLCHAIN_DISABLE_SYSROOT
+ bool
-config GENERIC_CONFIG_SYSROOT
- string
- default "--with-sysroot=${SYSROOT}" if GENERIC_SYSROOT
+config TOOLCHAIN_CONFIG_SYSROOT
+ string
+ default "--with-sysroot=${SYSROOT}" if TOOLCHAIN_ENABLE_SYSROOT
#
# multilib support
#
-config GENERIC_ENABLE_MULTILIB
- bool
+config TOOLCHAIN_ENABLE_MULTILIB
+ bool
-config GENERIC_DISABLE_MULTILIB
- bool
- default !GENERIC_ENABLE_MULTILIB
+config TOOLCHAIN_DISABLE_MULTILIB
+ bool
+ default !TOOLCHAIN_ENABLE_MULTILIB
-config GENERIC_CONFIG_MULTILIB
- string
- default "--enable-multilib" if GENERIC_ENABLE_MULTILIB
- default "--disable-multilib" if GENERIC_DISABLE_MULTILIB
+config TOOLCHAIN_CONFIG_MULTILIB
+ string
+ default "--enable-multilib" if TOOLCHAIN_ENABLE_MULTILIB
+ default "--disable-multilib" if TOOLCHAIN_DISABLE_MULTILIB