- Timestamp:
- Jul 3, 2013 4:15:51 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86952
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r46902 r46946 101 101 INST_ADDITIONS_ISO = $(INST_BIN) 102 102 103 INST_VBOXDBG_SYMS = $(INST_VIRTUALBOX)Contents/Resources/VBoxDbgSyms/ 104 103 105 # other paths 104 106 INST_LIB = lib/ … … 129 131 VBOX_INST_DTRACE_LIB = $(INST_BIN)dtrace/lib/ 130 132 VBOX_INST_DTRACE_TST = $(INST_BIN)dtrace/testcase/ 131 endif 133 134 INST_VBOXDBG_SYMS = $(INST_BIN)VBoxDbgSyms/ 135 endif 136 132 137 133 138 INST_TESTSUITE = testsuite/ … … 4497 4502 4498 4503 endif # VBOX_WITH_QTGUI 4504 4505 4506 # 4507 # Template for installing symbol files that we wish to ship. 4508 # 4509 TEMPLATE_VBoxDbgSyms = Symbol files for VBoxDbg and gurus. 4510 TEMPLATE_VBoxDbgSyms_INST = $(INST_VBOXDBG_SYMS) 4499 4511 4500 4512 -
trunk/src/VBox/Devices/Graphics/BIOS/Makefile.kmk
r43610 r46946 136 136 137 137 138 # 139 # Install the symbol file for the BIOS. 140 # 141 INSTALLS += VBoxVgaBiosSym 142 VBoxVgaBiosSym_TEMPLATE = VBoxDbgSyms 143 VBoxVgaBiosSym_SOURCES = $(basename $(VBoxVgaBios_1_TARGET)).sym 144 145 138 146 include $(FILE_KBUILD_SUB_FOOTER) 139 147 -
trunk/src/VBox/Devices/PC/BIOS/Makefile.kmk
r42770 r46946 131 131 endif 132 132 133 134 # 135 # Install the symbol file for the BIOS. 136 # 137 INSTALLS += VBoxPcBiosSym 138 VBoxPcBiosSym_TEMPLATE = VBoxDbgSyms 139 VBoxPcBiosSym_SOURCES = $(basename $(VBoxPcBios_1_TARGET)).sym 140 141 133 142 include $(FILE_KBUILD_SUB_FOOTER) 134 143 -
trunk/src/VBox/VMM/VMMR3/DBGFAddrSpace.cpp
r46915 r46946 199 199 } 200 200 } 201 202 /* 203 * Prepend the VBoxDbgSyms directory to the path. 204 */ 205 char szPath[RTPATH_MAX]; 206 rc = RTPathAppPrivateNoArch(szPath, sizeof(szPath)); 207 AssertRCReturn(rc, rc); 208 #ifdef RT_OS_DARWIN 209 rc = RTPathAppend(szPath, sizeof(szPath), "../Resources/VBoxDbgSyms/"); 210 #else 211 rc = RTPathAppend(szPath, sizeof(szPath), "VBoxDbgSyms/"); 212 #endif 213 AssertRCReturn(rc, rc); 214 rc = RTDbgCfgChangeString(pUVM->dbgf.s.hDbgCfg, RTDBGCFGPROP_PATH, RTDBGCFGOP_PREPEND, szPath); 215 AssertRCReturn(rc, rc); 201 216 202 217 /* … … 616 631 PATMR3DbgPopulateAddrSpace(pUVM->pVM, hDbgAs); 617 632 #endif 633 } 634 else if (hAlias == DBGF_AS_PHYS && pUVM->pVM) 635 { 636 /** @todo Lazy load pc and vga bios symbols or the EFI stuff. */ 618 637 } 619 638
Note:
See TracChangeset
for help on using the changeset viewer.