aboutsummaryrefslogtreecommitdiff
path: root/lib/std/process.zig
diff options
context:
space:
mode:
Diffstat (limited to 'lib/std/process.zig')
-rw-r--r--lib/std/process.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/process.zig b/lib/std/process.zig
index b083126b31..5fc262e8b0 100644
--- a/lib/std/process.zig
+++ b/lib/std/process.zig
@@ -686,6 +686,8 @@ pub fn getBaseAddress() usize {
if (base != 0) {
return base;
}
+ // XXX: Wrong for PIE executables, it should look at the difference
+ // between _DYNAMIC and the PT_DYNAMIC phdr instead.
const phdr = os.system.getauxval(std.elf.AT_PHDR);
return phdr - @sizeOf(std.elf.Ehdr);
},