diff options
author | midipix <writeonce@midipix.org> | 2024-02-14 04:19:35 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-02-14 04:19:35 +0000 |
commit | 816e2809f45c52162aa68281f61450cfbb38d8d0 (patch) | |
tree | d240930d9cfcc45a55d0e0f1416b634d6464f925 /src/logic/linkcmd | |
parent | a6c3935a905e27e38e63d0d77578c158c873ad08 (diff) | |
download | slibtool-816e2809f45c52162aa68281f61450cfbb38d8d0.tar.bz2 slibtool-816e2809f45c52162aa68281f61450cfbb38d8d0.tar.xz |
link mode: support the darwin version for the -no-undefined switch.
Diffstat (limited to 'src/logic/linkcmd')
-rw-r--r-- | src/logic/linkcmd/slbt_linkcmd_dsolib.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/logic/linkcmd/slbt_linkcmd_dsolib.c b/src/logic/linkcmd/slbt_linkcmd_dsolib.c index c395118..a3361db 100644 --- a/src/logic/linkcmd/slbt_linkcmd_dsolib.c +++ b/src/logic/linkcmd/slbt_linkcmd_dsolib.c @@ -105,7 +105,9 @@ int slbt_exec_link_create_library( /* --no-undefined */ if (dctx->cctx->drvflags & SLBT_DRIVER_NO_UNDEFINED) - *ectx->noundef = "-Wl,--no-undefined"; + *ectx->noundef = !strcmp(dctx->cctx->host.host,"darwin") + ? "-Wl,-undefined,error" + : "-Wl,--no-undefined"; /* -soname */ dot = strrchr(dctx->cctx->output,'.'); |