Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
b27381f4
Commit
b27381f4
authored
May 28, 2008
by
dias@eecs.harvard.edu
Browse files
when linking, ignore unknown .reloc section that appeared in gcc 3.4.5(?)
parent
20d0ce2f
Changes
1
Hide whitespace changes
Inline
Side-by-side
rts/Linker.c
View file @
b27381f4
...
...
@@ -2306,6 +2306,8 @@ ocGetNames_PEi386 ( ObjectCode* oc )
&&
0
!=
strcmp
(
".ctors"
,
sectab_i
->
Name
)
/* ignore section generated from .ident */
&&
0
!=
strcmp
(
"/4"
,
sectab_i
->
Name
)
/* ignore unknown section that appeared in gcc 3.4.5(?) */
&&
0
!=
strcmp
(
".reloc"
,
sectab_i
->
Name
)
)
{
errorBelch
(
"Unknown PEi386 section name `%s' (while processing: %s)"
,
sectab_i
->
Name
,
oc
->
fileName
);
return
0
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment