mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
add debug info
This commit is contained in:
parent
11360edf7b
commit
ccc69c2f16
1 changed files with 5 additions and 0 deletions
|
@ -364,6 +364,7 @@ pub(crate) fn surgery_pe(executable_path: &Path, metadata_path: &Path, roc_app_b
|
||||||
} = app_relocation;
|
} = app_relocation;
|
||||||
|
|
||||||
if let Some(destination) = md.exports.get(name) {
|
if let Some(destination) = md.exports.get(name) {
|
||||||
|
dbg!(&name);
|
||||||
match relocation.kind() {
|
match relocation.kind() {
|
||||||
object::RelocationKind::Relative => {
|
object::RelocationKind::Relative => {
|
||||||
// we implicitly only do 32-bit relocations
|
// we implicitly only do 32-bit relocations
|
||||||
|
@ -383,6 +384,8 @@ pub(crate) fn surgery_pe(executable_path: &Path, metadata_path: &Path, roc_app_b
|
||||||
// we implicitly only do 32-bit relocations
|
// we implicitly only do 32-bit relocations
|
||||||
debug_assert_eq!(relocation.size(), 32);
|
debug_assert_eq!(relocation.size(), 32);
|
||||||
|
|
||||||
|
dbg!(&name);
|
||||||
|
|
||||||
let delta =
|
let delta =
|
||||||
destination - section_virtual_address as i64 - *offset_in_section as i64
|
destination - section_virtual_address as i64 - *offset_in_section as i64
|
||||||
+ relocation.addend();
|
+ relocation.addend();
|
||||||
|
@ -411,6 +414,8 @@ pub(crate) fn surgery_pe(executable_path: &Path, metadata_path: &Path, roc_app_b
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dbg!(&name);
|
||||||
|
|
||||||
match relocation.kind() {
|
match relocation.kind() {
|
||||||
object::RelocationKind::Relative => {
|
object::RelocationKind::Relative => {
|
||||||
// we implicitly only do 32-bit relocations
|
// we implicitly only do 32-bit relocations
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue