We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8d9317 commit 90cdfa8Copy full SHA for 90cdfa8
1 file changed
util/emscripten-genwhitelist.py
@@ -87,7 +87,6 @@ def iter_archive_symbols(archive):
87
if verbose:
88
print(' '.join(command))
89
output = subprocess.check_output(command)
90
- current_object = []
91
for line in output.splitlines():
92
line = line.strip()
93
@@ -107,7 +106,7 @@ def iter_archive_symbols(archive):
107
106
# object, should be emterpreted. Put an "_" before each symbol
108
# to get the name as generated by emscripten
109
if line[-2].lower() == 't':
110
- yield ('_' + line[2])
+ yield ('_' + line[-1])
111
continue
112
113
# Check for undefined C++ symbols
0 commit comments