diff options
author | Norbert Lange <nolange79@gmail.com> | 2022-06-07 15:10:45 +0200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2022-07-11 19:50:29 +1200 |
commit | ee635cdf9a67be84f4815f4afe2759dd90a7cc2e (patch) | |
tree | 1014446414804e4ccf6c318363439ee17205e277 /scripts | |
parent | 165502587397fa25558ecc89ce32cddb561104da (diff) | |
download | crosstool-ng-ee635cdf9a67be84f4815f4afe2759dd90a7cc2e.tar.gz crosstool-ng-ee635cdf9a67be84f4815f4afe2759dd90a7cc2e.tar.bz2 crosstool-ng-ee635cdf9a67be84f4815f4afe2759dd90a7cc2e.zip |
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.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build/cc/gcc.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/build/cc/gcc.sh b/scripts/build/cc/gcc.sh index 4db478bb..d9e9da98 100644 --- a/scripts/build/cc/gcc.sh +++ b/scripts/build/cc/gcc.sh @@ -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 |