diff options
author | midipix <writeonce@midipix.org> | 2021-06-08 15:30:31 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-08 15:31:14 +0000 |
commit | 6448777316a45e61177b8cbf0f00d5608dca2da6 (patch) | |
tree | c321e4d6be6c2516dcdc7fb911c5fafd6ef00b96 | |
parent | 004c583d4bdde05442e7d4a708c3b481ce7918ca (diff) | |
download | tpax-6448777316a45e61177b8cbf0f00d5608dca2da6.tar.bz2 tpax-6448777316a45e61177b8cbf0f00d5608dca2da6.tar.xz |
build system: ccenv: ccenv_set_cc_bits(): support strict compiler drivers.
-rw-r--r-- | sofort/ccenv/ccenv.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index d0e808d..61d3c58 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -721,7 +721,10 @@ ccenv_set_cc_bits() "$ccenv_internal_type" \ "$ccenv_internal_guess") - if [ -n "$ccenv_dumpmachine_switch" ]; then + ccenv_expr='ccenv_stdin_input=$ccenv_'${ccenv_cfgtype}'_stdin_input' + eval ${ccenv_expr} + + if [ "$ccenv_stdin_input" = 'yes' ]; then printf '%s' "$ccenv_internal_str" \ | eval $ccenv_cc -S -xc - -o - \ $(printf '%s' "$ccenv_cflags") \ |