mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-10-31 23:29:26 +01:00
On PA-Linux, allow for _Uhppa_setcontext symbol.
2004/12/02 18:37:47-08:00 hp.com!davidm Allow _U${plat}_get_elf_image symbol on HPPA, too. 2004/12/02 00:40:45-08:00 mostang.com!davidm Add support for hppa. 2004/11/30 22:44:47-08:00 mostang.com!davidm Add rules for x86-64. (Logical change 1.290)
This commit is contained in:
parent
9fea3da388
commit
b09eae1203
1 changed files with 19 additions and 0 deletions
|
@ -103,6 +103,11 @@ function check_local_unw_abi {
|
|||
match backtrace
|
||||
|
||||
case ${plat} in
|
||||
hppa)
|
||||
match _UL${plat}_dwarf_search_unwind_table
|
||||
match _U${plat}_get_elf_image
|
||||
match _U${plat}_setcontext
|
||||
;;
|
||||
ia64)
|
||||
match _UL${plat}_search_unwind_table
|
||||
match _U${plat}_get_elf_image
|
||||
|
@ -112,6 +117,11 @@ function check_local_unw_abi {
|
|||
match _U${plat}_is_fpreg
|
||||
match _UL${plat}_dwarf_search_unwind_table
|
||||
;;
|
||||
x86_64)
|
||||
match _U${plat}_get_elf_image
|
||||
match _U${plat}_is_fpreg
|
||||
match _UL${plat}_dwarf_search_unwind_table
|
||||
;;
|
||||
*)
|
||||
match _U${plat}_is_fpreg
|
||||
match _UL${plat}_dwarf_search_unwind_table
|
||||
|
@ -143,6 +153,10 @@ function check_generic_unw_abi {
|
|||
match _U${plat}_strerror
|
||||
|
||||
case ${plat} in
|
||||
hppa)
|
||||
match _U${plat}_dwarf_search_unwind_table
|
||||
match _U${plat}_get_elf_image
|
||||
;;
|
||||
ia64)
|
||||
match _U${plat}_search_unwind_table
|
||||
match _U${plat}_find_dyn_list
|
||||
|
@ -160,6 +174,11 @@ function check_generic_unw_abi {
|
|||
match _U${plat}_is_fpreg
|
||||
match _U${plat}_dwarf_search_unwind_table
|
||||
;;
|
||||
x86_64)
|
||||
match _U${plat}_get_elf_image
|
||||
match _U${plat}_is_fpreg
|
||||
match _U${plat}_dwarf_search_unwind_table
|
||||
;;
|
||||
*)
|
||||
match _U${plat}_is_fpreg
|
||||
match _U${plat}_dwarf_search_unwind_table
|
||||
|
|
Loading…
Reference in a new issue