mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-22 23:47:39 +01:00
Add x86-specific checks.
(Logical change 1.233)
This commit is contained in:
parent
5ccc669fa7
commit
d7f8bd62d4
1 changed files with 11 additions and 1 deletions
|
@ -106,8 +106,13 @@ function check_local_unw_abi {
|
||||||
match _UL${plat}_search_unwind_table
|
match _UL${plat}_search_unwind_table
|
||||||
match _U${plat}_get_elf_image
|
match _U${plat}_get_elf_image
|
||||||
;;
|
;;
|
||||||
|
x86)
|
||||||
|
match _U${plat}_get_elf_image
|
||||||
|
match _U${plat}_is_fpreg
|
||||||
|
match _UL${plat}_dwarf_search_unwind_table
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
match _UL${plat}_is_fpreg
|
match _U${plat}_is_fpreg
|
||||||
match _UL${plat}_dwarf_search_unwind_table
|
match _UL${plat}_dwarf_search_unwind_table
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
@ -146,6 +151,11 @@ function check_generic_unw_abi {
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
x86)
|
||||||
|
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}_is_fpreg
|
||||||
match _U${plat}_dwarf_search_unwind_table
|
match _U${plat}_dwarf_search_unwind_table
|
||||||
|
|
Loading…
Reference in a new issue