mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-21 23:27:39 +01:00
Ignore _fbss, _fdata, _ftext and _gp symbols on MIPS
This commit is contained in:
parent
a63c209fed
commit
6f374ccb5a
1 changed files with 7 additions and 0 deletions
|
@ -78,6 +78,13 @@ filter_misc () {
|
|||
ignore __end__
|
||||
ignore _bss_end__
|
||||
fi
|
||||
|
||||
if [ ${plat} = "mips" ]; then
|
||||
ignore _fbss
|
||||
ignore _fdata
|
||||
ignore _ftext
|
||||
ignore _gp
|
||||
fi
|
||||
}
|
||||
|
||||
check_local_unw_abi () {
|
||||
|
|
Loading…
Reference in a new issue