about summary refs log tree commit diff
path: root/sysdeps/x86_64/set-hooks-arch.h
Commit message (Collapse)AuthorAgeFilesLines
* hurd: Fix static-PIE startupSamuel Thibault2021-12-281-0/+28
hurd initialization stages use RUN_HOOK to run various initialization functions. That is however using absolute addresses which need to be relocated, which is done later by csu. We can however easily make the linker compute relative addresses which thus don't need a relocation. The new SET_RELHOOK and RUN_RELHOOK macros implement this.