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