Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lldb/packages/Python/lldbsuite/test/lldbplaygroundrepl.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ def repl_set_up(self):
target = self.dbg.CreateTarget(exe)
self.assertTrue(target, VALID_TARGET)

self.registerSharedLibrariesWithTarget(target, ['libPlaygroundsRuntime.dylib'])

# Set the breakpoints
breakpoint = target.BreakpointCreateBySourceRegex(
'Set breakpoint here', self.PlaygroundStub_source_spec)
Expand Down
3 changes: 3 additions & 0 deletions lldb/packages/Python/lldbsuite/test/make/Makefile.rules
Original file line number Diff line number Diff line change
Expand Up @@ -793,6 +793,9 @@ ifneq "$(EXCLUDE_WRAPPED_SWIFTMODULE)" ""
else
$(SWIFTC) $(patsubst -g,,$(SWIFTFLAGS)) -emit-library $(DYLIB_SWIFT_FLAGS) -o $@ $^
endif
ifneq "$(CODESIGN)" ""
$(CODESIGN) -s - "$(DYLIB_FILENAME)"
endif
ifneq "$(MAKE_DSYM)" "NO"
ifneq "$(DS)" ""
"$(DS)" $(DSFLAGS) "$(DYLIB_FILENAME)"
Expand Down