diff options
author | midipix <writeonce@midipix.org> | 2021-05-26 16:41:15 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-05-26 16:48:08 +0000 |
commit | 757bf2bac40f733b76639375e5c2987cd54d4ef6 (patch) | |
tree | d8f4ca048755727e747e220c9d81beec47dc0c43 /sofort | |
parent | 7929334c60cdd7cde6f5f6c63744331155e2d785 (diff) | |
download | ntcon-757bf2bac40f733b76639375e5c2987cd54d4ef6.tar.bz2 ntcon-757bf2bac40f733b76639375e5c2987cd54d4ef6.tar.xz |
build system: ccenv_set_cc_underscore(): rewrite against strict posix utils.
Diffstat (limited to 'sofort')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index 2ba9426..14e8b9a 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -741,16 +741,26 @@ ccenv_set_cc_underscore() ccenv_fn_name='ZmYaXyWbVe_UuTnSdReQrPsOcNoNrLe' ccenv_fn_code='int %s(void){return 0;}' - if printf "$ccenv_fn_code" $ccenv_fn_name \ - | $ccenv_cc -xc - -S -o - \ - 2>&3 \ - | grep "^_$ccenv_fn_name:" \ - > /dev/null; then + ccenv_tmpname='ccenv/c3RyaWN0X21vZGUK.c' + + printf "$ccenv_fn_code" $ccenv_fn_name \ + > "$ccenv_tmpname" + + $ccenv_cc -c "$ccenv_tmpname" -o a.out \ + > /dev/null 2>&3 + + if "$ccenv_nm" a.out | grep \ + -e "^_$ccenv_fn_name" \ + -e " _$ccenv_fn_name" \ + > /dev/null; then ccenv_cc_underscore='_' ccenv_attr_epilog 'yes' + else + ccenv_attr_epilog 'no' fi - ccenv_attr_epilog 'no' + rm "$ccenv_tmpname" + rm a.out return 0 } |