From: Esa Ilari Vuokko Date: Wed, 23 Aug 2006 15:50:23 +0000 (+0000) Subject: Ignore sections generated from .ident X-Git-Tag: Before_FC_branch_merge~146 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=22afade657206fa4ac86ebb6ecc8f2352cca3c4f;p=ghc-hetmet.git Ignore sections generated from .ident --- diff --git a/rts/Linker.c b/rts/Linker.c index 1919618..2c9b07e 100644 --- a/rts/Linker.c +++ b/rts/Linker.c @@ -2282,6 +2282,8 @@ ocGetNames_PEi386 ( ObjectCode* oc ) && 0 != strcmp(".stabstr", sectab_i->Name) /* ignore constructor section for now */ && 0 != strcmp(".ctors", sectab_i->Name) + /* ignore section generated from .ident */ + && 0!= strcmp("/4", sectab_i->Name) ) { errorBelch("Unknown PEi386 section name `%s' (while processing: %s)", sectab_i->Name, oc->fileName); return 0;