diff options
author | 2001-11-29 17:28:09 +0000 | |
---|---|---|
committer | 2001-11-29 17:28:09 +0000 | |
commit | ebf6416d7fb209bfacdfb22322b82c5c43701d8c (patch) | |
tree | f127dbde8e010a54400b46fc24f7e68c8cd06bc2 | |
parent | regen (diff) | |
download | wireguard-openbsd-ebf6416d7fb209bfacdfb22322b82c5c43701d8c.tar.xz wireguard-openbsd-ebf6416d7fb209bfacdfb22322b82c5c43701d8c.zip |
ld -r generates some funky .text.N names
-rw-r--r-- | sys/arch/hppa/conf/ld.script | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/conf/ld.script b/sys/arch/hppa/conf/ld.script index e82b4b71d3a..a05233c4c5a 100644 --- a/sys/arch/hppa/conf/ld.script +++ b/sys/arch/hppa/conf/ld.script @@ -1,4 +1,4 @@ -/* $OpenBSD: ld.script,v 1.7 1999/12/17 07:02:38 mickey Exp $ */ +/* $OpenBSD: ld.script,v 1.8 2001/11/29 17:28:09 mickey Exp $ */ OUTPUT_FORMAT("elf32-hppa") OUTPUT_ARCH(hppa) @@ -10,7 +10,7 @@ SECTIONS .text : { kernel_text = . ; - *(.text) + *(.text) *(.text.*) *(.rodata) *(.rodata1) *(.reginfo) *(.init) |