am a80f11ba: Merge "Add support for listing missing POSIX 2013 symbols."
* commit 'a80f11ba99a078515aa7e06dc99db62a475a7b53': Add support for listing missing POSIX 2013 symbols.
This commit is contained in:
commit
fa7e13b3af
@ -16,6 +16,14 @@ arch = re.sub(r'.*/linux-x86/([^/]+)/.*', r'\1', toolchain)
|
|||||||
if arch == 'aarch64':
|
if arch == 'aarch64':
|
||||||
arch = 'arm64'
|
arch = 'arm64'
|
||||||
|
|
||||||
|
def GetSymbolsFromTxt(txt_file):
|
||||||
|
symbols = set()
|
||||||
|
f = open(txt_file, 'r')
|
||||||
|
for line in f.read().splitlines():
|
||||||
|
symbols.add(line)
|
||||||
|
f.close()
|
||||||
|
return symbols
|
||||||
|
|
||||||
def GetSymbolsFromSo(so_file):
|
def GetSymbolsFromSo(so_file):
|
||||||
# Example readelf output:
|
# Example readelf output:
|
||||||
# 264: 0001623c 4 FUNC GLOBAL DEFAULT 8 cabsf
|
# 264: 0001623c 4 FUNC GLOBAL DEFAULT 8 cabsf
|
||||||
@ -75,6 +83,7 @@ glibc_to_bionic_names = {
|
|||||||
|
|
||||||
glibc = GetSymbolsFromSystemSo('libc.so.*', 'librt.so.*', 'libpthread.so.*', 'libresolv.so.*', 'libm.so.*')
|
glibc = GetSymbolsFromSystemSo('libc.so.*', 'librt.so.*', 'libpthread.so.*', 'libresolv.so.*', 'libm.so.*')
|
||||||
bionic = GetSymbolsFromAndroidSo('libc.so', 'libm.so')
|
bionic = GetSymbolsFromAndroidSo('libc.so', 'libm.so')
|
||||||
|
posix = GetSymbolsFromTxt(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'posix-2013.txt'))
|
||||||
ndk_ignored = GetNdkIgnored()
|
ndk_ignored = GetNdkIgnored()
|
||||||
|
|
||||||
glibc = map(MangleGlibcNameToBionic, glibc)
|
glibc = map(MangleGlibcNameToBionic, glibc)
|
||||||
@ -189,6 +198,11 @@ if not only_unwanted:
|
|||||||
for symbol in sorted(bionic):
|
for symbol in sorted(bionic):
|
||||||
print symbol
|
print symbol
|
||||||
|
|
||||||
|
print
|
||||||
|
print 'in posix but not bionic:'
|
||||||
|
for symbol in sorted(posix.difference(bionic)):
|
||||||
|
print symbol
|
||||||
|
|
||||||
print
|
print
|
||||||
print 'in bionic but not glibc:'
|
print 'in bionic but not glibc:'
|
||||||
|
|
||||||
|
1191
libc/tools/posix-2013.txt
Normal file
1191
libc/tools/posix-2013.txt
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user