mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Exempt __cxa_type_match as an allowed dynamic symbol
This commit is contained in:
parent
65b891c23f
commit
9ac11177d2
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ import subprocess
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
symbol_regex = re.compile(b"D \*UND\*\t(.*) (.*)$")
|
symbol_regex = re.compile(b"D \*UND\*\t(.*) (.*)$")
|
||||||
allowed_symbols = frozenset([b'unshare', b'malloc_usable_size'])
|
allowed_symbols = frozenset([b'unshare', b'malloc_usable_size', b'__cxa_type_match'])
|
||||||
actual_symbols = set()
|
actual_symbols = set()
|
||||||
|
|
||||||
objdump_output = subprocess.check_output([
|
objdump_output = subprocess.check_output([
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue