diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-05-13 21:11:27 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-05-13 21:11:27 +0000 |
commit | 4ef6286f11161370e7d77102ec23df58a11a7e47 (patch) | |
tree | 074a2430820074f73fb5a9f621beec1ca3d2fc94 /config | |
parent | a47bd2d00e3f766a58d57d30e77613726475326e (diff) | |
download | crosstool-ng-4ef6286f11161370e7d77102ec23df58a11a7e47.tar.gz crosstool-ng-4ef6286f11161370e7d77102ec23df58a11a7e47.tar.bz2 crosstool-ng-4ef6286f11161370e7d77102ec23df58a11a7e47.zip |
Remove dead entries for components not yet integrated: cygwin kernel, tcc...
Some fixups in config entries, to avoid warnings when parsed by the kconfig parser.
Diffstat (limited to 'config')
-rw-r--r-- | config/cc.in | 31 | ||||
-rw-r--r-- | config/cc_core_tcc.in | 0 | ||||
-rw-r--r-- | config/cc_tcc.in | 0 | ||||
-rw-r--r-- | config/global.in | 4 | ||||
-rw-r--r-- | config/kernel.in | 11 | ||||
-rw-r--r-- | config/kernel_cygwin.in | 5 | ||||
-rw-r--r-- | config/toolchain.in | 1 |
7 files changed, 2 insertions, 50 deletions
diff --git a/config/cc.in b/config/cc.in index 1412a0ff..27d9d692 100644 --- a/config/cc.in +++ b/config/cc.in @@ -16,16 +16,6 @@ config CC_USE_CORE You most probably don't need that. -config CC_CORE_GCC - bool - default y if ! CC_USE_CORE && CC_GCC - default n if CC_USE_CORE || ! CC_GCC - -config CC_CORE_TCC - bool - default y if ! CC_USE_CORE && CC_TCC - default n if CC_USE_CORE || ! CC_TCC - choice bool prompt "Core C compiler:" @@ -35,11 +25,6 @@ config CC_CORE_GCC bool prompt "gcc" -#config CC_CORE_TCC -# bool -# prompt "tcc (EXPERIMENTAL)" -# depends on EXPERIMENTAL - endchoice config CC_CORE_VERSION @@ -48,16 +33,11 @@ config CC_CORE_VERSION config CC_CORE string default "gcc" if CC_CORE_GCC - default "tcc" if CC_CORE_TCC if CC_CORE_GCC && CC_USE_CORE source config/cc_core_gcc.in endif -if CC_CORE_TCC && CC_USE_CORE -source config/cc_core_tcc.in -endif - comment "Final C compiler" choice @@ -75,12 +55,6 @@ config CC_GCC select CC_SUPPORT_OBJC select CC_SUPPORT_OBJCXX -#config CC_TCC -# bool -# prompt "tcc (EXPERIMENTAL)" -# select CC_LANG_C -# depends on EXPERIMENTAL - endchoice config CC_VERSION @@ -89,16 +63,11 @@ config CC_VERSION config CC string default "gcc" if CC_GCC - default "tcc" if CC_TCC if CC_GCC source config/cc_gcc.in endif -if CC_GCC -source config/cc_tcc.in -endif - config CC_SUPPORT_CXX bool diff --git a/config/cc_core_tcc.in b/config/cc_core_tcc.in deleted file mode 100644 index e69de29b..00000000 --- a/config/cc_core_tcc.in +++ /dev/null diff --git a/config/cc_tcc.in b/config/cc_tcc.in deleted file mode 100644 index e69de29b..00000000 --- a/config/cc_tcc.in +++ /dev/null diff --git a/config/global.in b/config/global.in index ee23a5de..00c5b10d 100644 --- a/config/global.in +++ b/config/global.in @@ -242,8 +242,8 @@ config LOG_SEE_TOOLS_WARN default n depends on ! LOG_ERROR help - If you say Y here, then you will have see the warning lines from - the components builds. + If you say Y here, then you will see the warning lines from the + components builds. It should suffice to say N here, as those will anyway be visible in the log file (if you want one). diff --git a/config/kernel.in b/config/kernel.in index 770f496c..2eaf4e36 100644 --- a/config/kernel.in +++ b/config/kernel.in @@ -13,13 +13,6 @@ config KERNEL_LINUX help Build a toolchain targeting systems running Linux as a kernel. -config KERNEL_CYGWIN - bool - prompt "cygwin" - depends on EXPERIMENTAL && ( ARCH_x86 || ARCH_x86_64 ) - help - Build a toolchain targeting systems running Windows/cygwin as a kernel. - endchoice config KERNEL_VERSION @@ -29,8 +22,4 @@ if KERNEL_LINUX source config/kernel_linux.in endif -if KERNEL_CYGWIN -source config/kernel_cygwin.in -endif - endmenu diff --git a/config/kernel_cygwin.in b/config/kernel_cygwin.in deleted file mode 100644 index 1edac593..00000000 --- a/config/kernel_cygwin.in +++ /dev/null @@ -1,5 +0,0 @@ -# Cygwin 'kernel' options - -config KERNEL - string - default "cygwin" diff --git a/config/toolchain.in b/config/toolchain.in index fee1db1d..a17d1518 100644 --- a/config/toolchain.in +++ b/config/toolchain.in @@ -103,7 +103,6 @@ config CANADIAN bool prompt "Canadian (EXPERIMENTAL)" depends on EXPERIMENTAL - default n help Build a canadian-toolchain. See docs/overview.txt |