diff options
author | midipix <writeonce@midipix.org> | 2021-06-05 12:59:41 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-05 15:09:34 +0000 |
commit | 19db2b30cf142eccdb322f1e6aaf01415a789f58 (patch) | |
tree | 1caab45545e5ac6accdfc9dfed1904e7836156e1 /sofort | |
parent | b34058fb384e5c9901bfdec32f0819efacab624b (diff) | |
download | mdso-19db2b30cf142eccdb322f1e6aaf01415a789f58.tar.bz2 mdso-19db2b30cf142eccdb322f1e6aaf01415a789f58.tar.xz |
build system: ccenv: ccenv_set_cc(): record compiler's support of stdin input.
Diffstat (limited to 'sofort')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index 17656e3..3c48fa6 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -489,6 +489,12 @@ ccenv_set_cc() ccenv_dumpmachine_switch= fi + if cfgtest_code_snippet_asm 'typedef int dummy;' ; then + eval ccenv_${ccenv_cfgtype}_stdin_input='yes' + else + eval ccenv_${ccenv_cfgtype}_stdin_input='no' + fi + unset cfgtest_silent ccenv_cc_cmd="$ccenv_cc" |