Skip to content

Commit 86e36f6

Browse files
authored
Merge pull request #131 from phausler/pr/lldb_cpython_workaround
Skip lldb cpython as well
2 parents cbaa8ea + 1de1963 commit 86e36f6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test-snapshot-binaries/linux_load_commands.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,10 @@ def main():
158158
# When linking the swiftCompilerModules to lldb, the text segment
159159
# gets RWE for some reason.
160160
# TODO: remove this workaround once rdar://87078244 is fixed
161-
if "liblldb.so" in l:
161+
#
162+
# Additionally th cpython lldb library also has this too
163+
# TODO: remove that workaround once rdar://124693792 is fixed
164+
if "liblldb.so" in l or "_lldb.cpython" in l:
162165
continue
163166

164167
process_library(args, l)

0 commit comments

Comments
 (0)