summaryrefslogtreecommitdiffhomepage
path: root/sofort
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-01-01 01:46:21 -0500
committermidipix <writeonce@midipix.org>2019-01-01 01:47:55 -0500
commit5dbfbaae1cc32b321195a18198015898b785e11b (patch)
tree3ae945dbe2b0962f69863612d09a4379876a3ad1 /sofort
parent80c2c2ee3e3039fb251bc6f5aa4b700f6c4ff3ea (diff)
downloadperk-5dbfbaae1cc32b321195a18198015898b785e11b.tar.bz2
perk-5dbfbaae1cc32b321195a18198015898b785e11b.tar.xz
build system: replace config_support() with ccenv_dso_verify().
Diffstat (limited to 'sofort')
-rw-r--r--sofort/ccenv/ccenv.sh15
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()