From 332d3f0e63266224db582d3507584540c514f136 Mon Sep 17 00:00:00 2001 From: Antoine ELIAS Date: Wed, 3 Sep 2014 12:14:03 +0200 Subject: [PATCH] update dumpexts to remote Intel C++/Fortran 14 strange symbols Change-Id: Ia31b737ed022120f5f861d3a7df0704e3ac878c4 --- scilab/tools/Dumpexts/winDumpExts.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scilab/tools/Dumpexts/winDumpExts.c b/scilab/tools/Dumpexts/winDumpExts.c index 3199088..4ff4aa9 100644 --- a/scilab/tools/Dumpexts/winDumpExts.c +++ b/scilab/tools/Dumpexts/winDumpExts.c @@ -282,7 +282,8 @@ void DumpExternals(PIMAGE_SYMBOL pSymbolTable, FILE *fout, unsigned cSymbols) if (( stricmp(s, "DllEntryPoint") != 0) && (stricmp(s, "DllMain") != 0)) { - if ( s[0] != '?' ) + //remove Intel C++ 14 added symbols + if ( s[0] != '?' && strncmp(s, "__sti__?", 8) != 0) { fprintf(fout, "\t%s\n", s); } -- 1.7.9.5