From b48cb77c5fe44e3392ecb9f4335c6a9b7401c89d Mon Sep 17 00:00:00 2001 From: midipix Date: Wed, 13 Mar 2024 21:33:14 +0000 Subject: link mode: properly interpret -static when output is an executable program. --- src/driver/slbt_driver_ctx.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/driver') diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c index 6737815..9479e54 100644 --- a/src/driver/slbt_driver_ctx.c +++ b/src/driver/slbt_driver_ctx.c @@ -788,10 +788,12 @@ int slbt_lib_get_driver_ctx( case TAG_SHARED: cmdshared = entry; + cctx.drvflags |= SLBT_DRIVER_PREFER_SHARED; break; case TAG_STATIC: cmdstatic = entry; + cctx.drvflags |= SLBT_DRIVER_PREFER_STATIC; break; case TAG_WEAK: -- cgit v1.2.3