-
- Downloads
inspect-library: Add support for consuming deb-symbols(5) files
The Steam Runtime is built using dpkg/apt, so we have this information
already for a lot of the shared libraries, for example in
`/var/lib/dpkg/info/zlib1g:amd64.symbols` in a SDK container.
For those that we don't, such as libcurl3, we can generate
a deb-symbols(5) file by either improving the packaging, or using for
example
dpkg-gensymbols -q -v0 -plibcurl3 -e/usr/lib/x86_64-linux-gnu/libcurl.so.3 -I/dev/null -O
(although the output of such commands will require some postprocessing
and common sense to filter out private symbols that are not meant to
be part of the ABI).
Signed-off-by:
Simon McVittie <smcv@collabora.com>
parent
010b78c1
No related branches found
No related tags found
Showing
- helpers/inspect-library.c 67 additions, 2 deletionshelpers/inspect-library.c
- steam-runtime-tools/library.c 34 additions, 5 deletionssteam-runtime-tools/library.c
- steam-runtime-tools/library.h 14 additions, 0 deletionssteam-runtime-tools/library.h
- tests/library.c 81 additions, 0 deletionstests/library.c
Please register or sign in to comment