Remove dead entries for components not yet integrated: cygwin kernel, tcc...
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun May 13 21:11:27 2007 +0000 (2007-05-13)
changeset 91aa1d248fa51b
parent 90 f7653e06e3c6
child 92 1159b1384a78
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.
config/cc.in
config/cc_core_tcc.in
config/cc_tcc.in
config/global.in
config/kernel.in
config/kernel_cygwin.in
config/toolchain.in
scripts/build/cc_core_tcc.sh
scripts/build/cc_tcc.sh
scripts/build/kernel_cygwin.sh
scripts/crosstool.sh
     1.1 --- a/config/cc.in	Sun May 13 19:09:55 2007 +0000
     1.2 +++ b/config/cc.in	Sun May 13 21:11:27 2007 +0000
     1.3 @@ -16,16 +16,6 @@
     1.4  
     1.5        You most probably don't need that.
     1.6  
     1.7 -config CC_CORE_GCC
     1.8 -    bool
     1.9 -    default y if ! CC_USE_CORE && CC_GCC
    1.10 -    default n if CC_USE_CORE || ! CC_GCC
    1.11 -
    1.12 -config CC_CORE_TCC
    1.13 -    bool
    1.14 -    default y if ! CC_USE_CORE && CC_TCC
    1.15 -    default n if CC_USE_CORE || ! CC_TCC
    1.16 -
    1.17  choice
    1.18      bool
    1.19      prompt "Core C compiler:"
    1.20 @@ -35,11 +25,6 @@
    1.21      bool
    1.22      prompt "gcc"
    1.23  
    1.24 -#config CC_CORE_TCC
    1.25 -#    bool
    1.26 -#    prompt "tcc (EXPERIMENTAL)"
    1.27 -#    depends on EXPERIMENTAL
    1.28 -
    1.29  endchoice
    1.30  
    1.31  config CC_CORE_VERSION
    1.32 @@ -48,16 +33,11 @@
    1.33  config CC_CORE
    1.34      string
    1.35      default "gcc" if CC_CORE_GCC
    1.36 -    default "tcc" if CC_CORE_TCC
    1.37  
    1.38  if CC_CORE_GCC && CC_USE_CORE
    1.39  source config/cc_core_gcc.in
    1.40  endif
    1.41  
    1.42 -if CC_CORE_TCC && CC_USE_CORE
    1.43 -source config/cc_core_tcc.in
    1.44 -endif
    1.45 -
    1.46  comment "Final C compiler"
    1.47  
    1.48  choice
    1.49 @@ -75,12 +55,6 @@
    1.50      select CC_SUPPORT_OBJC
    1.51      select CC_SUPPORT_OBJCXX
    1.52  
    1.53 -#config CC_TCC
    1.54 -#    bool
    1.55 -#    prompt "tcc (EXPERIMENTAL)"
    1.56 -#    select CC_LANG_C
    1.57 -#    depends on EXPERIMENTAL
    1.58 -
    1.59  endchoice
    1.60  
    1.61  config CC_VERSION
    1.62 @@ -89,16 +63,11 @@
    1.63  config CC
    1.64      string
    1.65      default "gcc" if CC_GCC
    1.66 -    default "tcc" if CC_TCC
    1.67  
    1.68  if CC_GCC
    1.69  source config/cc_gcc.in
    1.70  endif
    1.71  
    1.72 -if CC_GCC
    1.73 -source config/cc_tcc.in
    1.74 -endif
    1.75 -
    1.76  config CC_SUPPORT_CXX
    1.77      bool
    1.78  
     2.1 --- a/config/global.in	Sun May 13 19:09:55 2007 +0000
     2.2 +++ b/config/global.in	Sun May 13 21:11:27 2007 +0000
     2.3 @@ -242,8 +242,8 @@
     2.4      default n
     2.5      depends on ! LOG_ERROR
     2.6      help
     2.7 -      If you say Y here, then you will have see the warning lines from
     2.8 -      the components builds.
     2.9 +      If you say Y here, then you will see the warning lines from the
    2.10 +      components builds.
    2.11  
    2.12        It should suffice to say N here, as those will anyway be visible
    2.13        in the log file (if you want one).
     3.1 --- a/config/kernel.in	Sun May 13 19:09:55 2007 +0000
     3.2 +++ b/config/kernel.in	Sun May 13 21:11:27 2007 +0000
     3.3 @@ -13,13 +13,6 @@
     3.4      help
     3.5        Build a toolchain targeting systems running Linux as a kernel.
     3.6  
     3.7 -config KERNEL_CYGWIN
     3.8 -    bool
     3.9 -    prompt "cygwin"
    3.10 -    depends on EXPERIMENTAL && ( ARCH_x86 || ARCH_x86_64 )
    3.11 -    help
    3.12 -      Build a toolchain targeting systems running Windows/cygwin as a kernel.
    3.13 -
    3.14  endchoice
    3.15  
    3.16  config KERNEL_VERSION
    3.17 @@ -29,8 +22,4 @@
    3.18  source config/kernel_linux.in
    3.19  endif
    3.20  
    3.21 -if KERNEL_CYGWIN
    3.22 -source config/kernel_cygwin.in
    3.23 -endif
    3.24 -
    3.25  endmenu
     4.1 --- a/config/kernel_cygwin.in	Sun May 13 19:09:55 2007 +0000
     4.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.3 @@ -1,5 +0,0 @@
     4.4 -# Cygwin 'kernel' options
     4.5 -
     4.6 -config KERNEL
     4.7 -    string
     4.8 -    default "cygwin"
     5.1 --- a/config/toolchain.in	Sun May 13 19:09:55 2007 +0000
     5.2 +++ b/config/toolchain.in	Sun May 13 21:11:27 2007 +0000
     5.3 @@ -103,7 +103,6 @@
     5.4      bool
     5.5      prompt "Canadian (EXPERIMENTAL)"
     5.6      depends on EXPERIMENTAL
     5.7 -    default n
     5.8      help
     5.9        Build a canadian-toolchain.
    5.10        See docs/overview.txt
     6.1 --- a/scripts/crosstool.sh	Sun May 13 19:09:55 2007 +0000
     6.2 +++ b/scripts/crosstool.sh	Sun May 13 21:11:27 2007 +0000
     6.3 @@ -114,7 +114,7 @@
     6.4  CT_LIBC_FILE="${CT_LIBC}-${CT_LIBC_VERSION}"
     6.5  [ "${CT_ARCH_FLOAT_SW_LIBFLOAT}" = "y" ] && CT_LIBFLOAT_FILE="libfloat-990616"
     6.6  
     6.7 -# Kludge: If any of the configured options needs CT_TARGET or CT_TOP_DIR,
     6.8 +# Kludge: If any of the configured options needs CT_TARGET,
     6.9  # then rescan the options file now:
    6.10  . "${CT_TOP_DIR}/.config"
    6.11