f55188
build system: replace config_support() with ccenv_dso_verify().
@@ -460,27 +460,6 @@ config_cfghost()
|
|
460
460
|
}
|
461
461
|
|
462
462
|
|
463
|
-
config_support()
|
464
|
-
{
|
465
|
-
[ _$mb_disable_shared = _yes ] && return 0
|
466
|
-
|
467
|
-
mbt_cc=$(make .display-cc)
|
468
|
-
mbt_cflags=$(make .display-cflags)
|
469
|
-
mbt_source='int foo(int x){return ++x;}'
|
470
|
-
mbt_result=no
|
471
|
-
|
472
|
-
rm -f a.out
|
473
|
-
printf '%s' "$mbt_source" | $mbt_cc -shared -o a.out -xc -
|
474
|
-
[ -f a.out ] && mbt_result=yes
|
475
|
-
rm -f a.out
|
476
|
-
|
477
|
-
if [ $mbt_result = no ]; then
|
478
|
-
mb_disable_shared=yes
|
479
|
-
config_copy
|
480
|
-
fi
|
481
|
-
}
|
482
|
-
|
483
|
-
|
484
463
|
config_host()
|
485
464
|
{
|
486
465
|
make -s host.tag && return 0
|
@@ -787,7 +766,6 @@ config_copy
|
|
787
766
|
config_ccenv
|
788
767
|
config_custom
|
789
768
|
config_cfghost
|
790
|
-
config_support
|
791
769
|
config_host
|
792
770
|
config_status
|
793
771
|
|
@@ -963,6 +963,20 @@ ccenv_output_defs()
|
|
963
963
|
fi
|
964
964
|
}
|
965
965
|
|
966
|
+
ccenv_dso_verify()
|
967
|
+
{
|
968
|
+
ccenv_str='int foo(int x){return ++x;}'
|
969
|
+
ccenv_cmd="$ccenv_cc -xc - -shared -o a.out"
|
970
|
+
|
971
|
+
rm -f a.out
|
972
|
+
|
973
|
+
printf '%s' "$ccenv_str" | $ccenv_cmd \
|
974
|
+
> /dev/null 2>/dev/null \
|
975
|
+
|| mb_disable_shared=yes
|
976
|
+
|
977
|
+
rm -f a.out
|
978
|
+
}
|
979
|
+
|
966
980
|
ccenv_clean_up()
|
967
981
|
{
|
968
982
|
rm -f $ccenv_image
|
@@ -1042,6 +1056,7 @@ ccenv_set_toolchain_variables()
|
|
1042
1056
|
ccenv_set_host_variables()
|
1043
1057
|
{
|
1044
1058
|
ccenv_set_toolchain_variables 'host'
|
1059
|
+
ccenv_dso_verify
|
1045
1060
|
}
|
1046
1061
|
|
1047
1062
|
ccenv_set_native_variables()
|