File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,9 @@ def library_symbols(file: Path) -> list[str]:
5555 if active :
5656 if not line .strip ():
5757 return syms
58- syms .append (line .split ()[2 ])
58+ sym = line .split ()[- 1 ]
59+ if sym != 'Name' :
60+ syms .append (sym )
5961 elif 'Ordinal/Name Pointer' in line :
6062 active = True
6163 raise Exception ("Couldn't parse objdump output" )
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ from common.meson import (
5050)
5151from common .software import Project
5252
53- WINDOWS_API_VERS = (4 ,)
53+ WINDOWS_API_VERS = (4 , 5 )
5454LINUX_API_VERS = (3 ,)
5555# we have a higher minimum than the underlying meson.build
5656MESON_MIN_VER = (1 , 5 , 0 )
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM docker.io/gentoo/stage3:latest
22# NOTE: try to keep the current container image compatible with the latest
33# stable source release, so people can conveniently build from the source
44# tarball
5- RUN touch /etc/openslide-winbuild-builder-v{3,4}
5+ RUN touch /etc/openslide-winbuild-builder-v5
66RUN echo 'FEATURES="-sandbox -usersandbox -ipc-sandbox -network-sandbox -pid-sandbox"' >> /etc/portage/make.conf
77COPY package.accept_keywords /etc/portage/package.accept_keywords/openslide
88COPY package.use /etc/portage/package.use/openslide
You can’t perform that action at this time.
0 commit comments