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
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,10 @@ if(DS2_ARCHITECTURE MATCHES "ARM|ARM64")

Sources/Core/ARM/HardwareBreakpointManager.cpp
Sources/Core/ARM/SoftwareBreakpointManager.cpp)
set_source_files_properties(
Sources/Architecture/ARM/ThumbBranchInfo.cpp
PROPERTIES
COMPILE_OPTIONS $<$<CXX_COMPILER_ID:Clang>:-Wno-error=comma>)

target_sources(ds2 PRIVATE
${CMAKE_CURRENT_BINARY_DIR}/Headers/DebugServer2/Architecture/ARM/RegistersDescriptors.h
Expand Down
6 changes: 3 additions & 3 deletions Sources/Core/ARM/HardwareBreakpointManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ namespace ds2 {

int HardwareBreakpointManager::hit(Target::Thread *thread, Site &site) {
return -1;
};
}

ErrorCode HardwareBreakpointManager::enableLocation(Site const &site, int idx,
Target::Thread *thread) {
return kErrorUnsupported;
};
}

ErrorCode HardwareBreakpointManager::disableLocation(int idx,
Target::Thread *thread) {
return kErrorUnsupported;
};
}

size_t HardwareBreakpointManager::maxWatchpoints() {
return _process->getMaxWatchpoints();
Expand Down
Loading