1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-03 09:42:38 +02:00

Ignore _fbss, _fdata, _ftext and _gp symbols on MIPS

This commit is contained in:
Tommi Rantala 2012-08-02 14:52:25 +03:00
parent a63c209fed
commit 6f374ccb5a

View file

@ -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 () {