Changeset 15340 in vbox
- Timestamp:
- Dec 11, 2008 9:51:13 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler_new/Makefile.kmk
r15339 r15340 33 33 # During the runtime, we load appropriate library from VBOXREM, depending on guest settings. 34 34 # 64-bit targets have 64-bit enabled REM by default, so is not part of this mess 35 if 1of (x86, $(KBUILD_TARGET_ARCH))35 ifeq ($(KBUILD_TARGET_ARCH),x86) 36 36 ifdef VBOX_WITH_64_BITS_GUESTS 37 37 VBOX_USE_REM64 := 1 … … 214 214 ifdef VBOX_USE_REM64 215 215 ## @todo Note to self: One should be the default config (VBoxREM) with a NAME, the 64 bit varian should be done like here. 216 DLL += VBoxREM32 VBoxREM64216 DLLS += VBoxREM32 217 217 VBoxREM32_EXTENDS = VBoxREM 218 218 VBoxREM32_EXTENDS_BY = appending 219 219 VBoxREM32_TEMPLATE = $(VBoxREM_TEMPLATE) 220 VBoxREM32_NAME 220 221 VBoxREM32_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxREM32.dylib 221 222 223 DLLS += VBoxREM64 222 224 VBoxREM64_EXTENDS = VBoxREM 223 225 VBoxREM64_EXTENDS_BY = appending
Note:
See TracChangeset
for help on using the changeset viewer.