mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 12:10:09 +01:00
bin/symbols-check: ignore version of platform symbols
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35891>
This commit is contained in:
parent
5672230c19
commit
3d9b76db8e
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ def get_symbols_nm(nm, lib):
|
|||
continue
|
||||
symbol_name = fields[0]
|
||||
if platform_name == 'Linux' or platform_name == 'GNU' or platform_name.startswith('GNU/'):
|
||||
if symbol_name in PLATFORM_SYMBOLS:
|
||||
if symbol_name.split('@')[0] in PLATFORM_SYMBOLS:
|
||||
continue
|
||||
elif platform_name == 'Darwin':
|
||||
assert symbol_name[0] == '_'
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue