From: Eric Engestrom Date: Sat, 3 Aug 2019 23:27:05 +0000 (+0100) Subject: symbols-check: ignore exported C++ symbols X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f1c22390f78589603df35efaf1c0102c4ac814b2;p=mesa.git symbols-check: ignore exported C++ symbols Signed-off-by: Eric Engestrom Reviewed-by: Bas Nieuwenhuizen --- diff --git a/bin/symbols-check.py b/bin/symbols-check.py index 329ca5f46a0..47305919634 100644 --- a/bin/symbols-check.py +++ b/bin/symbols-check.py @@ -109,6 +109,10 @@ def main(): continue if symbol in optional_symbols: continue + if symbol[:2] == '_Z': + # Ignore random C++ symbols + #TODO: figure out if there's any way to avoid exporting them in the first place + continue unknown_symbols.append(symbol) missing_symbols = [