# HG changeset patch # User "Yann E. MORIN" # Date 1179090687 0 # Node ID aa1d248fa51bcd6275e0dfedf1f3518143df78f9 # Parent f7653e06e3c631b120525d400bf782be92b0e7db 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. diff -r f7653e06e3c6 -r aa1d248fa51b config/cc.in --- a/config/cc.in Sun May 13 19:09:55 2007 +0000 +++ b/config/cc.in Sun May 13 21:11:27 2007 +0000 @@ -16,16 +16,6 @@ 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 @@ 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 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 @@ 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 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 -r f7653e06e3c6 -r aa1d248fa51b config/global.in --- a/config/global.in Sun May 13 19:09:55 2007 +0000 +++ b/config/global.in Sun May 13 21:11:27 2007 +0000 @@ -242,8 +242,8 @@ 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 -r f7653e06e3c6 -r aa1d248fa51b config/kernel.in --- a/config/kernel.in Sun May 13 19:09:55 2007 +0000 +++ b/config/kernel.in Sun May 13 21:11:27 2007 +0000 @@ -13,13 +13,6 @@ 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 @@ source config/kernel_linux.in endif -if KERNEL_CYGWIN -source config/kernel_cygwin.in -endif - endmenu diff -r f7653e06e3c6 -r aa1d248fa51b config/kernel_cygwin.in --- a/config/kernel_cygwin.in Sun May 13 19:09:55 2007 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -# Cygwin 'kernel' options - -config KERNEL - string - default "cygwin" diff -r f7653e06e3c6 -r aa1d248fa51b config/toolchain.in --- a/config/toolchain.in Sun May 13 19:09:55 2007 +0000 +++ b/config/toolchain.in Sun May 13 21:11:27 2007 +0000 @@ -103,7 +103,6 @@ bool prompt "Canadian (EXPERIMENTAL)" depends on EXPERIMENTAL - default n help Build a canadian-toolchain. See docs/overview.txt diff -r f7653e06e3c6 -r aa1d248fa51b scripts/crosstool.sh --- a/scripts/crosstool.sh Sun May 13 19:09:55 2007 +0000 +++ b/scripts/crosstool.sh Sun May 13 21:11:27 2007 +0000 @@ -114,7 +114,7 @@ CT_LIBC_FILE="${CT_LIBC}-${CT_LIBC_VERSION}" [ "${CT_ARCH_FLOAT_SW_LIBFLOAT}" = "y" ] && CT_LIBFLOAT_FILE="libfloat-990616" -# Kludge: If any of the configured options needs CT_TARGET or CT_TOP_DIR, +# Kludge: If any of the configured options needs CT_TARGET, # then rescan the options file now: . "${CT_TOP_DIR}/.config"