- Timestamp:
- Jul 27, 2024 12:54:02 AM (6 months ago)
- Location:
- trunk/src/VBox/Debugger
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCDumpImage.cpp
r105508 r105531 344 344 /* Adjust the RVA if we're reading beyond the end of the image. */ 345 345 if (uRva + m_cbBufAlloc > RT_ALIGN_Z(cbMaxRva, 8)) 346 uRva = m_cbBufAlloc >RT_ALIGN_Z(cbMaxRva, 8) ? RT_ALIGN_Z(cbMaxRva, 8) - m_cbBufAlloc : 0;346 uRva = m_cbBufAlloc < RT_ALIGN_Z(cbMaxRva, 8) ? RT_ALIGN_Z(cbMaxRva, 8) - m_cbBufAlloc : 0; 347 347 348 348 /* Do the read. In case of failure readBytesAtRva will zero the buffer. */ -
trunk/src/VBox/Debugger/Makefile.kmk
r101554 r105531 68 68 69 69 ifdef VBOX_WITH_VIRT_ARMV8 70 ifdef VBOX_WITH_DEBUGGER71 LIBRARIES += Debugger-armv872 endif # VBOX_WITH_DEBUGGER73 74 70 # 75 71 # Debugger library - linked into VBoxVMM, ARMv8 variant. 76 72 # 77 73 # @todo Can this be merged into one library later maybe? 74 ifdef VBOX_WITH_DEBUGGER 75 LIBRARIES += Debugger-armv8 76 endif 78 77 Debugger-armv8_TEMPLATE = VBoxR3Dll 79 78 Debugger-armv8_DEFS = VBOX_VMM_TARGET_ARMV8 IN_VMM_R3 IN_DBG_R3 IN_DIS … … 99 98 DBGCIoProvIpc.cpp \ 100 99 DBGCScreenAscii.cpp 101 endif 100 endif # VBOX_WITH_VIRT_ARMV8 101 102 103 # 104 # Executable Image dumper based on the dumpimage debugger command. 105 # 106 PROGRAMS += VBoxDumpImage 107 VBoxDumpImage_TEMPLATE = VBoxR3Tool 108 VBoxDumpImage_DEFS := DBGC_DUMP_IMAGE_TOOL 109 VBoxDumpImage_SOURCES := DBGCDumpImage.cpp 110 $(call VBOX_SET_VER_INFO_DLL,VBoxDumpImage,VirtualBox Executable Image Dumper Utility) 111 102 112 103 113 #
Note:
See TracChangeset
for help on using the changeset viewer.