mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-20 05:17:54 +00:00
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.
This commit is contained in:
parent
a47bd2d00e
commit
4ef6286f11
31
config/cc.in
31
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
|
||||
|
||||
|
@ -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).
|
||||
|
@ -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
|
||||
|
@ -1,5 +0,0 @@
|
||||
# Cygwin 'kernel' options
|
||||
|
||||
config KERNEL
|
||||
string
|
||||
default "cygwin"
|
@ -103,7 +103,6 @@ config CANADIAN
|
||||
bool
|
||||
prompt "Canadian (EXPERIMENTAL)"
|
||||
depends on EXPERIMENTAL
|
||||
default n
|
||||
help
|
||||
Build a canadian-toolchain.
|
||||
See docs/overview.txt
|
||||
|
@ -114,7 +114,7 @@ CT_CC_FILE="${CT_CC}-${CT_CC_VERSION}"
|
||||
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"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user