mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-02-21 09:21:52 +00:00
Fixes for libstdcxx-verbose option tristate
Make it proper "tristate" by not specifying the option. The config GCC_4_8_or_later was removed with cc6b7fad46f5cb3d84, so dont use it.
This commit is contained in:
parent
1655025873
commit
ee635cdf9a
@ -293,7 +293,6 @@ config CC_GCC_LIBSTDCXX_VERBOSE
|
||||
default n if BARE_METAL
|
||||
default m if !BARE_METAL
|
||||
prompt "Verbose libstdc++"
|
||||
depends on GCC_4_8_or_later
|
||||
depends on CC_LANG_CXX
|
||||
help
|
||||
Write descriptive error messages on certain events.
|
||||
|
@ -380,6 +380,7 @@ do_gcc_core_backend() {
|
||||
|
||||
case "${CT_CC_GCC_LIBSTDCXX_VERBOSE}" in
|
||||
y) extra_config+=("--enable-libstdcxx-verbose");;
|
||||
m) ;;
|
||||
"") extra_config+=("--disable-libstdcxx-verbose");;
|
||||
esac
|
||||
|
||||
@ -1020,6 +1021,7 @@ do_gcc_backend() {
|
||||
|
||||
case "${CT_CC_GCC_LIBSTDCXX_VERBOSE}" in
|
||||
y) extra_config+=("--enable-libstdcxx-verbose");;
|
||||
m) ;;
|
||||
"") extra_config+=("--disable-libstdcxx-verbose");;
|
||||
esac
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user