diff options
author | midipix <writeonce@midipix.org> | 2024-03-15 02:18:13 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-03-15 02:29:33 +0000 |
commit | 92ca4f0bcb95533db9abf26aff528d6b33c14268 (patch) | |
tree | e882e509188e602d338aa8f2fd6aeb92c7b8de2c /src/logic | |
parent | c4e10a27780e84469fa6d95fe63a5d87315f5aca (diff) | |
download | slibtool-92ca4f0bcb95533db9abf26aff528d6b33c14268.tar.bz2 slibtool-92ca4f0bcb95533db9abf26aff528d6b33c14268.tar.xz |
compile mode: allow -static to override --disable-static, ditto for -shared.
Diffstat (limited to 'src/logic')
-rw-r--r-- | src/logic/slbt_exec_compile.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/logic/slbt_exec_compile.c b/src/logic/slbt_exec_compile.c index 63b133b..47d8e72 100644 --- a/src/logic/slbt_exec_compile.c +++ b/src/logic/slbt_exec_compile.c @@ -175,6 +175,8 @@ int slbt_exec_compile(const struct slbt_driver_ctx * dctx) int ret; char * fpic; char * ccwrap; + bool fshared; + bool fstatic; struct slbt_exec_ctx * ectx; const struct slbt_common_ctx * cctx = dctx->cctx; @@ -190,8 +192,12 @@ int slbt_exec_compile(const struct slbt_driver_ctx * dctx) if (slbt_exec_compile_remove_file(dctx,ectx,ectx->ltobjname)) return SLBT_NESTED_ERROR(dctx); + /* fshared, fstatic */ + fshared = (cctx->drvflags & (SLBT_DRIVER_SHARED | SLBT_DRIVER_PREFER_SHARED)); + fstatic = (cctx->drvflags & (SLBT_DRIVER_STATIC | SLBT_DRIVER_PREFER_STATIC)); + /* .libs directory */ - if (cctx->drvflags & SLBT_DRIVER_SHARED) + if (fshared) if (slbt_mkdir(dctx,ectx->ldirname)) { ret = SLBT_SYSTEM_ERROR(dctx,ectx->ldirname); slbt_ectx_free_exec_ctx(ectx); @@ -219,7 +225,7 @@ int slbt_exec_compile(const struct slbt_driver_ctx * dctx) } /* shared library object */ - if (cctx->drvflags & SLBT_DRIVER_SHARED) { + if (fshared) { if (!(cctx->drvflags & SLBT_DRIVER_ANTI_PIC)) { *ectx->dpic = "-DPIC"; *ectx->fpic = fpic; @@ -247,12 +253,12 @@ int slbt_exec_compile(const struct slbt_driver_ctx * dctx) return SLBT_CUSTOM_ERROR(dctx,SLBT_ERR_COMPILE_ERROR); } - if (cctx->drvflags & SLBT_DRIVER_STATIC) + if (fstatic) slbt_ectx_reset_argvector(ectx); } /* static archive object */ - if (cctx->drvflags & SLBT_DRIVER_STATIC) { + if (fstatic) { slbt_reset_placeholders(ectx); if (cctx->drvflags & SLBT_DRIVER_PRO_PIC) { |