diff options
author | Marcel Moolenaar <marcel@FreeBSD.org> | 2002-10-12 22:24:41 +0000 |
---|---|---|
committer | Marcel Moolenaar <marcel@FreeBSD.org> | 2002-10-12 22:24:41 +0000 |
commit | bb461594f9dc6f3b5ad20f16cd6b09dff0a391a3 (patch) | |
tree | fdfa8e9fd34f06614c2598f8e38019cb4a87c00a /sys/conf/ldscript.ia64 | |
parent | 8c12ff22b4e56ec6c544a5cd0c357225bb7cde74 (diff) |
Have the linker collect and combine all unwind_info and unwind
sections so that the resulting load module has a single unwind
table. This matches the behaviour in userland.
Notes
Notes:
svn path=/head/; revision=105008
Diffstat (limited to 'sys/conf/ldscript.ia64')
-rw-r--r-- | sys/conf/ldscript.ia64 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/conf/ldscript.ia64 b/sys/conf/ldscript.ia64 index 14d4eb9b9258..ad3acad0c864 100644 --- a/sys/conf/ldscript.ia64 +++ b/sys/conf/ldscript.ia64 @@ -59,9 +59,9 @@ SECTIONS .rodata : { *(.rodata) *(.gnu.linkonce.r*) } .rodata1 : { *(.rodata1) } .reginfo : { *(.reginfo) } - .IA_64.unwind_info : { *(.IA_64.unwind_info) } + .IA_64.unwind_info : { *(.IA_64.unwind_info*) } _ia64_unwind_start = .; - .IA_64.unwind : { *(.IA_64.unwind) } + .IA_64.unwind : { *(.IA_64.unwind*) } _ia64_unwind_end = .; /* Adjust the address for the data segment. We want to adjust up to the same address within the page on the next page up. */ |