diff options
author | midipix <writeonce@midipix.org> | 2019-01-01 01:46:21 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-01 01:47:54 -0500 |
commit | 48c04595b0fcf13771df3649356da4165906ab1d (patch) | |
tree | 1e9e3dcddd19ddd1cc443c03667fc99dda8f4c8f /sofort/ccenv | |
parent | fa286ef29e1e63c3fd39ef93b9964ab7f70d0299 (diff) | |
download | bfirm-48c04595b0fcf13771df3649356da4165906ab1d.tar.bz2 bfirm-48c04595b0fcf13771df3649356da4165906ab1d.tar.xz |
build system: replace config_support() with ccenv_dso_verify().
Diffstat (limited to 'sofort/ccenv')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index c786f90..a608675 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -963,6 +963,20 @@ ccenv_output_defs() fi } +ccenv_dso_verify() +{ + ccenv_str='int foo(int x){return ++x;}' + ccenv_cmd="$ccenv_cc -xc - -shared -o a.out" + + rm -f a.out + + printf '%s' "$ccenv_str" | $ccenv_cmd \ + > /dev/null 2>/dev/null \ + || mb_disable_shared=yes + + rm -f a.out +} + ccenv_clean_up() { rm -f $ccenv_image @@ -1042,6 +1056,7 @@ ccenv_set_toolchain_variables() ccenv_set_host_variables() { ccenv_set_toolchain_variables 'host' + ccenv_dso_verify } ccenv_set_native_variables() |