mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2025-04-05 23:03:38 +03:00
build: Fix glibc symbol pattern
This commit is contained in:
parent
ceb4d21d9c
commit
4a38b186b4
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):
|
||||
symbol_format = re.compile('\S+ \S+ ([^@]+)@@?(\S+)\n')
|
||||
symbol_format = re.compile('\S+ \S+ ([^@]+)@@?([^@]+)')
|
||||
version_format = re.compile('GLIBC_[0-9\.]+')
|
||||
symbols = {}
|
||||
for line in nm_file:
|
||||
|
|
Loading…
Add table
Reference in a new issue