From 9feb47215a7730a9efcbacc25d8ff02e861a8527 Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 18 Feb 2024 17:39:03 +0000 Subject: ar mode: pretty printer: coff archives: filter out __imp_ prefixed symbols. --- src/arbits/output/slbt_ar_output_mapfile.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/arbits/output/slbt_ar_output_mapfile.c') diff --git a/src/arbits/output/slbt_ar_output_mapfile.c b/src/arbits/output/slbt_ar_output_mapfile.c index f2c2a9b..1c5534e 100644 --- a/src/arbits/output/slbt_ar_output_mapfile.c +++ b/src/arbits/output/slbt_ar_output_mapfile.c @@ -21,6 +21,7 @@ static int slbt_ar_output_mapfile_impl( int fdout) { bool fsort; + bool fcoff; const char * regex; const char ** symv; const char ** symstrv; @@ -28,6 +29,7 @@ static int slbt_ar_output_mapfile_impl( regmatch_t pmatch[2] = {{0,0},{0,0}}; fsort = !(dctx->cctx->fmtflags & SLBT_OUTPUT_ARCHIVE_NOSORT); + fcoff = (mctx->ofmtattr == AR_OBJECT_ATTR_COFF); if (slbt_dprintf(fdout,"{\n" "\t" "global:\n") < 0) return SLBT_SYSTEM_ERROR(dctx,0); @@ -45,9 +47,10 @@ static int slbt_ar_output_mapfile_impl( symstrv = fsort ? mctx->mapstrv : mctx->symstrv; for (symv=symstrv; *symv; symv++) - if (!regex || !regexec(®ctx,*symv,1,pmatch,0)) - if (slbt_dprintf(fdout,"\t\t%s;\n",*symv) < 0) - return SLBT_SYSTEM_ERROR(dctx,0); + if (!fcoff || strncmp(*symv,"__imp_",6)) + if (!regex || !regexec(®ctx,*symv,1,pmatch,0)) + if (slbt_dprintf(fdout,"\t\t%s;\n",*symv) < 0) + return SLBT_SYSTEM_ERROR(dctx,0); if (regex) regfree(®ctx); -- cgit v1.2.3