This commit adds support for column breakpoints to lldb-dap To do so, support for the `breakpointLocations` request was added. To find all available breakpoint positions, we iterate over the line table. The `setBreakpoints` request already forwarded the column correctly to `SBTarget::BreakpointCreateByLocation`. However, `SourceBreakpointMap` did not keep track of multiple breakpoints in the same line. To do so, the `SourceBreakpointMap` is now indexed by line+column instead of by line only. This was previously submitted as #113787, but got reverted due to failures on ARM and macOS. This second attempt has less strict test case expectations. Also, I added a release note.
20 lines
472 B
Makefile
20 lines
472 B
Makefile
CXX_SOURCES := main-copy.cpp
|
|
LD_EXTRAS := -Wl,-rpath "-Wl,$(shell pwd)"
|
|
USE_LIBDL :=1
|
|
|
|
a.out: libother
|
|
|
|
include Makefile.rules
|
|
|
|
# We copy the source files to move them to test source mapping
|
|
other-copy.c: other.c
|
|
cp -f $< $@
|
|
|
|
main-copy.cpp: main.cpp
|
|
cp -f $< $@
|
|
|
|
# The following shared library will be used to test breakpoints under dynamic loading
|
|
libother: other-copy.c
|
|
"$(MAKE)" -f $(MAKEFILE_RULES) \
|
|
DYLIB_ONLY=YES DYLIB_C_SOURCES=other-copy.c DYLIB_NAME=other
|