forked from M-Labs/artiq-zynq
libdyld: fixed symbol relocation
Note that in libdyld/src/lib.rs #117-118, image pointer is already added to the symbol offset, so we do not need to add the pointer again
This commit is contained in:
parent
2ed2ffe417
commit
35250b3f56
|
@ -123,7 +123,7 @@ pub fn relocate<R: Relocatable>(
|
|||
if let Some(addr) = lib.lookup(sym_name) {
|
||||
// First, try to resolve against itself.
|
||||
trace!("looked up symbol {} in image", format_sym_name(sym_name));
|
||||
value = lib.image.ptr() as u32 + addr;
|
||||
value = addr;
|
||||
} else if let Some(addr) = resolve(sym_name) {
|
||||
// Second, call the user-provided function.
|
||||
trace!("resolved symbol {:?}", format_sym_name(sym_name));
|
||||
|
|
Loading…
Reference in New Issue