mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Upgrade NDK to v15c.
This commit is contained in:
parent
0a5aab6cc2
commit
7a95cbcf91
8 changed files with 73 additions and 31 deletions
|
@ -15,7 +15,22 @@ import subprocess
|
|||
import sys
|
||||
|
||||
symbol_regex = re.compile(b"D \*UND\*\t(.*) (.*)$")
|
||||
allowed_symbols = frozenset([b'unshare', b'malloc_usable_size', b'__cxa_type_match', b'signal'])
|
||||
allowed_symbols = frozenset([
|
||||
b'unshare',
|
||||
b'malloc_usable_size',
|
||||
b'__cxa_type_match',
|
||||
b'signal',
|
||||
b'tcgetattr',
|
||||
b'tcsetattr',
|
||||
b'__strncpy_chk2',
|
||||
b'rand',
|
||||
b'__read_chk',
|
||||
b'fesetenv',
|
||||
b'srand',
|
||||
b'abs',
|
||||
b'fegetenv',
|
||||
b'sigemptyset',
|
||||
])
|
||||
actual_symbols = set()
|
||||
|
||||
objdump_output = subprocess.check_output([
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue