diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-01-25 22:14:52 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-01-25 22:14:52 +0100 |
commit | cec4bbf5c083d6abe7bd2f8d006fdb810a092332 (patch) | |
tree | 9d03470daeac758f5edbb3bc473090244fb4b819 /config/toolchain.in | |
parent | 8efc6dae8a781e3fc058cda0b49a0a6cfd745bb5 (diff) | |
download | crosstool-ng-cec4bbf5c083d6abe7bd2f8d006fdb810a092332.tar.gz crosstool-ng-cec4bbf5c083d6abe7bd2f8d006fdb810a092332.tar.bz2 crosstool-ng-cec4bbf5c083d6abe7bd2f8d006fdb810a092332.zip |
config/toolchain: force use of sysroot if OBSOLETE is not set
Use of the sysroot is highly recommended, and the non-sysroot case is
both obsolete and not widely tested.
Before the non-sysroot case can go away, deprecate it.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'config/toolchain.in')
-rw-r--r-- | config/toolchain.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/toolchain.in b/config/toolchain.in index 07110e49..ca796918 100644 --- a/config/toolchain.in +++ b/config/toolchain.in @@ -2,6 +2,12 @@ menu "Toolchain options" comment "General toolchain options" +config FORCE_SYSROOT + bool + default y if !OBSOLETE + default n if OBSOLETE + select USE_SYSROOT + config USE_SYSROOT bool prompt "Use sysroot'ed toolchain" |