diff options
author | Doug Rabson <dfr@FreeBSD.org> | 2001-10-29 11:40:14 +0000 |
---|---|---|
committer | Doug Rabson <dfr@FreeBSD.org> | 2001-10-29 11:40:14 +0000 |
commit | a4addc62cee41b36931ec9c4df1ecd5df92108ed (patch) | |
tree | bc075346254c5a45e22333e8cf88300357513673 /sys/conf/ldscript.ia64 | |
parent | c54311384904cc39c1da37a7eabe93490e80be66 (diff) | |
download | src-a4addc62cee41b36931ec9c4df1ecd5df92108ed.tar.gz src-a4addc62cee41b36931ec9c4df1ecd5df92108ed.zip |
Put symbols at the start and end of the unwind section so that we can
find it at runtime.
Notes
Notes:
svn path=/head/; revision=85683
Diffstat (limited to 'sys/conf/ldscript.ia64')
-rw-r--r-- | sys/conf/ldscript.ia64 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/conf/ldscript.ia64 b/sys/conf/ldscript.ia64 index 5a7a1d2b17fb..14d4eb9b9258 100644 --- a/sys/conf/ldscript.ia64 +++ b/sys/conf/ldscript.ia64 @@ -59,6 +59,10 @@ SECTIONS .rodata : { *(.rodata) *(.gnu.linkonce.r*) } .rodata1 : { *(.rodata1) } .reginfo : { *(.reginfo) } + .IA_64.unwind_info : { *(.IA_64.unwind_info) } + _ia64_unwind_start = .; + .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. */ . = .; |