Changeset 26224 in vbox
- Timestamp:
- Feb 3, 2010 10:03:01 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
-
include/iprt/cdefs.h (modified) (7 diffs)
-
src/VBox/Disassembler/Makefile.kmk (modified) (1 diff)
-
src/VBox/Runtime/Makefile.kmk (modified) (1 diff)
-
src/VBox/Runtime/testcase/Makefile.kmk (modified) (1 diff)
-
src/VBox/VMM/Makefile.kmk (modified) (1 diff)
-
src/VBox/VMM/testcase/Makefile.kmk (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cdefs.h
r26011 r26224 79 79 #define IN_RC 80 80 #define IN_RC 81 #define IN_RT_ GC81 #define IN_RT_RC 82 82 #define IN_RT_R0 83 83 #define IN_RT_R3 … … 743 743 * or not. The IPRT symbols will be declared as hidden (if 744 744 * supported). Note that this define has no effect without setting 745 * IN_RT_R0, IN_RT_R3 or IN_RT_ GC indicators are set first.745 * IN_RT_R0, IN_RT_R3 or IN_RT_RC indicators are set first. 746 746 */ 747 747 … … 782 782 #endif 783 783 784 /** @def IN_RT_ GC784 /** @def IN_RT_RC 785 785 * Used to indicate whether we're inside the same link module as 786 786 * the GC Runtime Library. … … 790 790 * @param type The return type of the function declaration. 791 791 */ 792 #ifdef IN_RT_ GC792 #ifdef IN_RT_RC 793 793 # ifdef IN_RT_STATIC 794 794 # define RTGCDECL(type) DECLHIDDEN(type) RTCALL … … 805 805 * @param type The return type of the function declaration. 806 806 */ 807 #if defined(IN_RT_R3) || defined(IN_RT_ GC) || defined(IN_RT_R0)807 #if defined(IN_RT_R3) || defined(IN_RT_RC) || defined(IN_RT_R0) 808 808 # ifdef IN_RT_STATIC 809 809 # define RTDECL(type) DECLHIDDEN(type) RTCALL … … 820 820 * @param type The return type of the function declaration. 821 821 */ 822 #if defined(IN_RT_R3) || defined(IN_RT_ GC) || defined(IN_RT_R0)822 #if defined(IN_RT_R3) || defined(IN_RT_RC) || defined(IN_RT_R0) 823 823 # ifdef IN_RT_STATIC 824 824 # define RTDATADECL(type) DECLHIDDEN(type) … … 833 833 * Declares an class living in the runtime. 834 834 */ 835 #if defined(IN_RT_R3) || defined(IN_RT_ GC) || defined(IN_RT_R0)835 #if defined(IN_RT_R3) || defined(IN_RT_RC) || defined(IN_RT_R0) 836 836 # ifdef IN_RT_STATIC 837 837 # define RT_DECL_CLASS -
trunk/src/VBox/Disassembler/Makefile.kmk
r26223 r26224 53 53 LIBRARIES += DisasmRC 54 54 DisasmRC_TEMPLATE = VBoxRc 55 DisasmRC_DEFS = IN_DIS IN_RT_ GC IN_RT_RC DIS_CORE_ONLY55 DisasmRC_DEFS = IN_DIS IN_RT_RC DIS_CORE_ONLY 56 56 DisasmRC_SOURCES = \ 57 57 DisasmCore.cpp \ -
trunk/src/VBox/Runtime/Makefile.kmk
r26223 r26224 1550 1550 # 1551 1551 RuntimeRC_TEMPLATE = VBoxRc 1552 RuntimeRC_DEFS = IN_RT_ GC RT_WITH_VBOX1552 RuntimeRC_DEFS = IN_RT_RC RT_WITH_VBOX 1553 1553 RuntimeRC_INCS = include 1554 1554 RuntimeRC_SOURCES = \ -
trunk/src/VBox/Runtime/testcase/Makefile.kmk
r26223 r26224 233 233 tstLdrObj_SYSSUFF = .gc 234 234 tstLdrObj_SOURCES = tstLdrObj.cpp 235 tstLdrObj_DEFS = IN_DIS IN_RT_ GC IN_RT_RC DIS_CORE_ONLY235 tstLdrObj_DEFS = IN_DIS IN_RT_RC DIS_CORE_ONLY 236 236 ifeq ($(VBOX_LDR_FMT32),elf) 237 237 tstLdrObj_DEFS += VBOX_SOME_IMPORT_FUNCTION -
trunk/src/VBox/VMM/Makefile.kmk
r26223 r26224 328 328 VMMGC_SYSSUFF = .gc 329 329 330 VMMGC_DEFS = IN_VMM_RC IN_RT_ GC IN_RT_RC IN_DIS DIS_CORE_ONLY VBOX_WITH_RAW_MODE330 VMMGC_DEFS = IN_VMM_RC IN_RT_RC IN_DIS DIS_CORE_ONLY VBOX_WITH_RAW_MODE 331 331 ifdef VBOX_WITH_R0_LOGGING 332 332 VMMGC_DEFS += VBOX_WITH_R0_LOGGING -
trunk/src/VBox/VMM/testcase/Makefile.kmk
r26223 r26224 102 102 ifdef VBOX_WITH_RAW_MODE 103 103 tstVMStructRC_TEMPLATE = VBoxRcExe 104 tstVMStructRC_DEFS = IN_VMM_RC IN_DIS IN_RT_RC IN_RT_GCVBOX_WITH_RAW_MODE104 tstVMStructRC_DEFS = IN_VMM_RC IN_DIS IN_RT_RC VBOX_WITH_RAW_MODE 105 105 ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),darwin.x86) 106 106 tstVMStructRC_DEFS += \ … … 152 152 ifdef VBOX_WITH_RAW_MODE 153 153 tstAsmStructsRC_TEMPLATE= VBoxRcExe 154 tstAsmStructsRC_DEFS = IN_VMM_RC IN_DIS IN_RT_RC IN_RT_GCVBOX_WITH_RAW_MODE154 tstAsmStructsRC_DEFS = IN_VMM_RC IN_DIS IN_RT_RC VBOX_WITH_RAW_MODE 155 155 ifdef VBOX_WITH_R0_LOGGING 156 156 tstAsmStructsRC_DEFS += VBOX_WITH_R0_LOGGING
Note:
See TracChangeset
for help on using the changeset viewer.

