summaryrefslogtreecommitdiff
path: root/sofort
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-06-09 05:59:30 +0000
committermidipix <writeonce@midipix.org>2021-06-09 06:02:38 +0000
commit4ad5616b392a91186372c922244f1905bb1b36dc (patch)
treedd347ceda8099446e74e1d693271a049fa920012 /sofort
parent5355fd641d0a24515b25b9bd164848e7ca571167 (diff)
downloadtpax-4ad5616b392a91186372c922244f1905bb1b36dc.tar.bz2
tpax-4ad5616b392a91186372c922244f1905bb1b36dc.tar.xz
build system: cfgtest_library_presence(): added freestanding code snippet.
Diffstat (limited to 'sofort')
-rw-r--r--sofort/cfgtest/cfgtest.sh10
1 files changed, 9 insertions, 1 deletions
diff --git a/sofort/cfgtest/cfgtest.sh b/sofort/cfgtest/cfgtest.sh
index 1e3d707..4a50e8f 100644
--- a/sofort/cfgtest/cfgtest.sh
+++ b/sofort/cfgtest/cfgtest.sh
@@ -596,7 +596,15 @@ cfgtest_library_presence()
cfgtest_prolog 'lib module' '(see config.log)'
fi
- cfgtest_code_snippet='int main(void){return 0;}'
+ if [ "$mb_cfgtest_environment" = 'freestanding' ]; then
+ if [ -z "ccenv_cc_underscore" ]; then
+ cfgtest_code_snippet='int start(void){return 0;}'
+ else
+ cfgtest_code_snippet='int _start(void){return 0;}'
+ fi
+ else
+ cfgtest_code_snippet='int main(void){return 0;}'
+ fi
cfgtest_common_init 'lib'