Should fix the i386 build

Esse commit está contido em:
Thom Wiggers 2019-02-27 17:36:19 +01:00
commit 7c5e671dac
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados
ID da chave GPG: 001BB0A7CE26E363

Ver arquivo

@ -41,6 +41,8 @@ def check_symbol_namespace(scheme_name, implementation_name):
*_, symtype, symbol = symbolstr.split()
if symtype in 'TR':
if (not symbol.startswith(namespace) and
# weird things on i386
not symbol.startwith('__x86.get_pc_thunk.') and
not symbol.startswith('_' + namespace)):
non_namespaced.append(symbol)