mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-01-09 19:03:43 +01:00
Add PPC namespace checking
PPC is the only architecture that has the get_func_addr() symbol exported, so add specific checks for this architecture.
This commit is contained in:
parent
d139d7e78e
commit
a63c209fed
1 changed files with 14 additions and 0 deletions
|
@ -144,6 +144,13 @@ check_local_unw_abi () {
|
||||||
match _UL${plat}_dwarf_find_unwind_table
|
match _UL${plat}_dwarf_find_unwind_table
|
||||||
match _U${plat}_setcontext
|
match _U${plat}_setcontext
|
||||||
;;
|
;;
|
||||||
|
ppc*)
|
||||||
|
match _U${plat}_get_func_addr
|
||||||
|
match _U${plat}_get_elf_image
|
||||||
|
match _U${plat}_is_fpreg
|
||||||
|
match _UL${plat}_dwarf_search_unwind_table
|
||||||
|
match _UL${plat}_dwarf_find_unwind_table
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
match _U${plat}_is_fpreg
|
match _U${plat}_is_fpreg
|
||||||
match _UL${plat}_dwarf_search_unwind_table
|
match _UL${plat}_dwarf_search_unwind_table
|
||||||
|
@ -218,6 +225,13 @@ check_generic_unw_abi () {
|
||||||
match _U${plat}_dwarf_search_unwind_table
|
match _U${plat}_dwarf_search_unwind_table
|
||||||
match _U${plat}_dwarf_find_unwind_table
|
match _U${plat}_dwarf_find_unwind_table
|
||||||
;;
|
;;
|
||||||
|
ppc*)
|
||||||
|
match _U${plat}_get_elf_image
|
||||||
|
match _U${plat}_get_func_addr
|
||||||
|
match _U${plat}_is_fpreg
|
||||||
|
match _U${plat}_dwarf_search_unwind_table
|
||||||
|
match _U${plat}_dwarf_find_unwind_table
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
match _U${plat}_is_fpreg
|
match _U${plat}_is_fpreg
|
||||||
match _U${plat}_dwarf_search_unwind_table
|
match _U${plat}_dwarf_search_unwind_table
|
||||||
|
|
Loading…
Reference in a new issue