diff options
author | midipix <writeonce@midipix.org> | 2020-08-16 17:00:44 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-08-16 18:04:04 +0000 |
commit | e13b1a1f825032b8c5af951b69cd0f30f10b91cd (patch) | |
tree | b38b5d59b2036bf0c98989a70de4fd5284a08019 /sofort | |
parent | 82155787446b702a0eb1d104b80805f042b1a5dd (diff) | |
download | sbpython2-e13b1a1f825032b8c5af951b69cd0f30f10b91cd.tar.bz2 sbpython2-e13b1a1f825032b8c5af951b69cd0f30f10b91cd.tar.xz |
build system: shared library logic: support dso-implemented-as-archive targets.
Diffstat (limited to 'sofort')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 14 | ||||
-rw-r--r-- | sofort/config/config.vars | 3 |
2 files changed, 17 insertions, 0 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index 9ef0fba..f996333 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -1087,6 +1087,20 @@ ccenv_set_os_dso_format() ;; esac + if [ "$ccenv_cfgtype" = 'host' ]; then + case "$ccenv_cc_sofmt" in + bigaf | aiaff ) + mb_shared_lib_cmd='$(AR) -rcs' + mb_shared_lib_ldflags= + ;; + + * ) + mb_shared_lib_cmd='$(CC) -shared -o' + mb_shared_lib_ldflags='$(LDFLAGS_SHARED)' + ;; + esac + fi + ccenv_attr_epilog "$ccenv_cc_sofmt" } diff --git a/sofort/config/config.vars b/sofort/config/config.vars index 524b746..6f7fbbc 100644 --- a/sofort/config/config.vars +++ b/sofort/config/config.vars @@ -131,3 +131,6 @@ disable_static use_custom_cfgdefs use_custom_usrdefs + +shared_lib_cmd +shared_lib_ldflags |