From 11e2771a23a1f20df8d6a371c3c889b174609576 Mon Sep 17 00:00:00 2001 From: midipix Date: Wed, 11 Jul 2018 06:18:35 +0000 Subject: compile & link modes: accommodate conceptually challenged, PICky targets. --- src/logic/slbt_exec_link.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/logic/slbt_exec_link.c') diff --git a/src/logic/slbt_exec_link.c b/src/logic/slbt_exec_link.c index 4f422d2..a2501b9 100644 --- a/src/logic/slbt_exec_link.c +++ b/src/logic/slbt_exec_link.c @@ -1221,9 +1221,11 @@ static int slbt_exec_link_create_library( /* shared/static */ if (dctx->cctx->drvflags & SLBT_DRIVER_ALL_STATIC) { *ectx->dpic = "-static"; + } else if (dctx->cctx->settings.picswitch) { + *ectx->dpic = "-shared"; + *ectx->fpic = dctx->cctx->settings.picswitch; } else { *ectx->dpic = "-shared"; - *ectx->fpic = "-fPIC"; } /* output */ -- cgit v1.2.3