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/cc.in | |
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/cc.in')
-rw-r--r-- | config/cc.in | 31 |
1 files changed, 0 insertions, 31 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 |