From b09ebf3b84ae9d3f858edee19871bce450072d12 Mon Sep 17 00:00:00 2001 From: rdb Date: Sun, 29 Dec 2024 14:39:43 +0100 Subject: [PATCH] makewheel: Exclude some more system libs Backport of be382a8f29f81c289be818760eae12523aa26837 --- makepanda/makewheel.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/makepanda/makewheel.py b/makepanda/makewheel.py index c0fe650fdf..e60033b9a3 100644 --- a/makepanda/makewheel.py +++ b/makepanda/makewheel.py @@ -114,7 +114,9 @@ MANYLINUX_LIBS = [ # These are not mentioned in manylinux1 spec but should nonetheless always # be excluded. "linux-vdso.so.1", "linux-gate.so.1", "ld-linux.so.2", "libdrm.so.2", + "ld-linux-x86-64.so.2", "ld-linux-aarch64.so.1", "libEGL.so.1", "libOpenGL.so.0", "libGLX.so.0", "libGLdispatch.so.0", + "libGLESv2.so.2", ] # Binaries to never scan for dependencies on non-Windows systems.