mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2025-04-14 14:40:57 +00:00
build: Fix glibc symbol pattern
This commit is contained in:
parent
138a75c9fd
commit
8f79429371
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ MAX_ALLOWED_GLIBC_VERSION = [2, 17]
|
||||||
|
|
||||||
|
|
||||||
def get_replacements(nm_file, max_allowed_glibc_version):
|
def get_replacements(nm_file, max_allowed_glibc_version):
|
||||||
symbol_format = re.compile('\S+ \S+ ([^@]+)@@?(\S+)\n')
|
symbol_format = re.compile('\S+ \S+ ([^@]+)@@?([^@]+)')
|
||||||
version_format = re.compile('GLIBC_[0-9\.]+')
|
version_format = re.compile('GLIBC_[0-9\.]+')
|
||||||
symbols = {}
|
symbols = {}
|
||||||
for line in nm_file:
|
for line in nm_file:
|
||||||
|
|
Loading…
Add table
Reference in a new issue