diff options
author | midipix <writeonce@midipix.org> | 2021-05-26 16:41:15 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-05-26 16:48:13 +0000 |
commit | 99a6516644cbfa5e62e9047ae61fa692332937e9 (patch) | |
tree | 2b1dd7ed3eb1228db4460d414d730068fd569d6a | |
parent | 3c706994feab84c888cf75fc7ff585e4d847695e (diff) | |
download | sbpython3-99a6516644cbfa5e62e9047ae61fa692332937e9.tar.bz2 sbpython3-99a6516644cbfa5e62e9047ae61fa692332937e9.tar.xz |
build system: ccenv_set_cc_underscore(): rewrite against strict posix utils.
-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 } |