From 6bc1706e77c607947ac30f96ec0bce3e056b3026 Mon Sep 17 00:00:00 2001 From: midipix Date: Wed, 14 Feb 2024 01:35:44 +0000 Subject: driver: added the --as switch (assembler argument to pass through to dlltool). --- src/output/slbt_output_info.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/output') diff --git a/src/output/slbt_output_info.c b/src/output/slbt_output_info.c index 7498cb8..92106a7 100644 --- a/src/output/slbt_output_info.c +++ b/src/output/slbt_output_info.c @@ -62,6 +62,9 @@ int slbt_output_info(const struct slbt_driver_ctx * dctx) if ((len = strlen(cctx->host.ar)) > midwidth) midwidth = len; + if ((len = strlen(cctx->host.as)) > midwidth) + midwidth = len; + if ((len = strlen(cctx->host.ranlib)) > midwidth) midwidth = len; @@ -98,6 +101,9 @@ int slbt_output_info(const struct slbt_driver_ctx * dctx) if (slbt_output_info_line(fdout,"ar",cctx->host.ar,cctx->cfgmeta.ar,midwidth)) return SLBT_SYSTEM_ERROR(dctx,0); + if (slbt_output_info_line(fdout,"as",cctx->host.as,cctx->cfgmeta.as,midwidth)) + return SLBT_SYSTEM_ERROR(dctx,0); + if (slbt_output_info_line(fdout,"ranlib",cctx->host.ranlib,cctx->cfgmeta.ranlib,midwidth)) return SLBT_SYSTEM_ERROR(dctx,0); -- cgit v1.2.3