Skip to content

Commit

Permalink
Merge pull request #138 from etcwilde/ewilde/5.10-ignore-lldb-cpython…
Browse files Browse the repository at this point in the history
…-rwe

🍒 Skip lldb cpython as well
  • Loading branch information
shahmishal authored May 16, 2024
2 parents 7d6bf13 + 9649e46 commit c1c3058
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test-snapshot-binaries/linux_load_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c1c3058

Please sign in to comment.