diff options
author | midipix <writeonce@midipix.org> | 2021-06-05 03:47:54 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-05 03:49:56 +0000 |
commit | 5cd9b4f52fa984f13664533e2f03dd38cf3fc4df (patch) | |
tree | 826b809ac3140c07a5cb42ac36bb31bcfb7963af | |
parent | c6daf9158544bea80894eae84e239bd6f903c716 (diff) | |
download | bfirm-5cd9b4f52fa984f13664533e2f03dd38cf3fc4df.tar.bz2 bfirm-5cd9b4f52fa984f13664533e2f03dd38cf3fc4df.tar.xz |
build system: ccenv: ccenv_set-cc(): test for -dumpmachine support silently.
-rw-r--r-- | sofort/ccenv/ccenv.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index a52d699..baa0790 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -481,12 +481,16 @@ ccenv_set_cc() ccenv_native_cc= fi + cfgtest_silent='yes' + if cfgtest_compiler_switch -dumpmachine ; then ccenv_dumpmachine_switch='-dumpmachine' else ccenv_dumpmachine_switch= fi + unset cfgtest_silent + ccenv_cc_cmd="$ccenv_cc" ccenv_errors= |