projects
/
barrelfish
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
872fbe6
)
ARMv7: Use --export-dynamic in kernel link.
author
David Cock
<david.cock@inf.ethz.ch>
Mon, 17 Oct 2016 09:01:26 +0000 (11:01 +0200)
committer
David Cock
<david.cock@inf.ethz.ch>
Mon, 17 Oct 2016 09:01:26 +0000 (11:01 +0200)
This ensures that the got_base symbol (and others) appear in the dynamic
symbol table, without relying on the vagaries of the link.
Signed-off-by: David Cock <david.cock@inf.ethz.ch>
hake/ARMv7.hs
patch
|
blob
|
history
diff --git
a/hake/ARMv7.hs
b/hake/ARMv7.hs
index
08a64dd
..
e8aeb99
100644
(file)
--- a/
hake/ARMv7.hs
+++ b/
hake/ARMv7.hs
@@
-152,7
+152,8
@@
kernelLdFlags = [ Str "-Wl,-N",
Str "-nostdlib",
Str "-pie",
Str "-Wl,--fatal-warnings",
- Str "-Wl,--dynamic-list-data"
+ Str "-Wl,--dynamic-list-data",
+ Str "-Wl,--export-dynamic"
]