Skip to content
Snippets Groups Projects
Verified Commit 8ba70792 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Implement DTPOFF64

parent 2ac349d2
No related branches found
No related tags found
No related merge requests found
Pipeline #6637 failed
...@@ -390,6 +390,9 @@ impl Linker { ...@@ -390,6 +390,9 @@ impl Linker {
reloc::R_X86_64_DTPMOD64 => { reloc::R_X86_64_DTPMOD64 => {
set_u64(tm as u64); set_u64(tm as u64);
} }
reloc::R_X86_64_DTPOFF64 => {
set_u64((s + a) as u64);
}
reloc::R_X86_64_GLOB_DAT | reloc::R_X86_64_JUMP_SLOT => { reloc::R_X86_64_GLOB_DAT | reloc::R_X86_64_JUMP_SLOT => {
set_u64(s as u64); set_u64(s as u64);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment