pass egl-symbols-check test on mips64el
authorsuijingfeng <suijingfeng@loongson.cn>
Mon, 19 Jul 2021 13:05:54 +0000 (21:05 +0800)
committerMarge Bot <eric+marge@anholt.net>
Wed, 21 Jul 2021 13:14:05 +0000 (13:14 +0000)
commit2f07c675b911ff4d630556608e5d7d867c7e690c
tree036edf9d53b3564b701dae34a4113b3f999b19e1
parent88b234d7a7cd71fcb4955428010f238ec9530431
pass egl-symbols-check test on mips64el

Without this patch the egl symbols check test fail on mips platform:

72/87 mesa:egl / egl-symbols-check        FAIL        0.20s (exit status 1)

src/egl/libEGL.so.1.0.0: unknown symbol exported: _fbss
src/egl/libEGL.so.1.0.0: unknown symbol exported: _fdata
src/egl/libEGL.so.1.0.0: unknown symbol exported: _ftext

See Mips Run say thoes special symbols are automatically defined by the
linker to allow programs to discover the start and end of their various
section. They are descended from conventions that grew up in UNIX-like OSs,
and are peculiar to the MIPS environment.

_fbss  :  Start of uninitialized data segment
_fdata :  Start of initialized data segment
_ftext :  Start of text segment

Reviewed-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: suijingfeng <suijingfeng@loongson.cn>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11955>
bin/symbols-check.py