diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-08-15 10:14:43 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-08-15 10:14:43 +0000 |
commit | e58af8f79ed50126d4e148b1ef509ef6068e2b38 (patch) | |
tree | f1dd2a46b25f248c95c44fda4dd25dce0981c7cb /config/cc.in | |
parent | 6c368af5b4e68c05c8774ea5795b708aca9d0d66 (diff) | |
download | crosstool-ng-e58af8f79ed50126d4e148b1ef509ef6068e2b38.tar.gz crosstool-ng-e58af8f79ed50126d4e148b1ef509ef6068e2b38.tar.bz2 crosstool-ng-e58af8f79ed50126d4e148b1ef509ef6068e2b38.zip |
Get rid of the core cc selection. It is now the same as the final compiler.
Diffstat (limited to 'config/cc.in')
-rw-r--r-- | config/cc.in | 45 |
1 files changed, 6 insertions, 39 deletions
diff --git a/config/cc.in b/config/cc.in index 27d9d692..176cdf6a 100644 --- a/config/cc.in +++ b/config/cc.in @@ -2,47 +2,9 @@ menu "C compiler" -comment "Core C Compiler (used to build the C library)" - -config CC_USE_CORE - bool - prompt "Use a different core C compiler" - default n - help - Use a different compiler to build the C library than the one - in the final toolchain. - - You can change the compiler used, or only the version used. - - You most probably don't need that. - -choice - bool - prompt "Core C compiler:" - depends on CC_USE_CORE - -config CC_CORE_GCC - bool - prompt "gcc" - -endchoice - -config CC_CORE_VERSION - string - -config CC_CORE - string - default "gcc" if CC_CORE_GCC - -if CC_CORE_GCC && CC_USE_CORE -source config/cc_core_gcc.in -endif - -comment "Final C compiler" - choice bool - prompt "Final C compiler" + prompt "C compiler flavour" default CC_GCC config CC_GCC @@ -54,6 +16,11 @@ config CC_GCC select CC_SUPPORT_ADA select CC_SUPPORT_OBJC select CC_SUPPORT_OBJCXX + help + gcc is the full-blown GNU compiler. This is what most people will choose. + + gcc sports lots of languages, powerfull code parser, optimised binary output, + and lots of other features. endchoice |