From 9649e462bcc001895a9ed6eee0e6c4003a924c0f Mon Sep 17 00:00:00 2001 From: Philippe Hausler Date: Fri, 15 Mar 2024 16:11:35 -0700 Subject: [PATCH] Skip lldb cpython as well --- test-snapshot-binaries/linux_load_commands.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test-snapshot-binaries/linux_load_commands.py b/test-snapshot-binaries/linux_load_commands.py index 9c13f47..264c700 100644 --- a/test-snapshot-binaries/linux_load_commands.py +++ b/test-snapshot-binaries/linux_load_commands.py @@ -158,7 +158,10 @@ def main(): # When linking the swiftCompilerModules to lldb, the text segment # gets RWE for some reason. # TODO: remove this workaround once rdar://87078244 is fixed - if "liblldb.so" in l: + # + # Additionally th cpython lldb library also has this too + # TODO: remove that workaround once rdar://124693792 is fixed + if "liblldb.so" in l or "_lldb.cpython" in l: continue process_library(args, l)