We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7d6bf13 + 9649e46 commit c1c3058Copy full SHA for c1c3058
test-snapshot-binaries/linux_load_commands.py
@@ -158,7 +158,10 @@ def main():
158
# When linking the swiftCompilerModules to lldb, the text segment
159
# gets RWE for some reason.
160
# TODO: remove this workaround once rdar://87078244 is fixed
161
- if "liblldb.so" in l:
+ #
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:
165
continue
166
167
process_library(args, l)
0 commit comments