[vbox-dev] [PATCH] 64Bit: VMM testcases: Path to nm.exe
Bodo
bopi at users.sourceforge.net
Mon Nov 12 03:33:07 PST 2012
===================================================================
--- a/src/VBox/VMM/testcase/Makefile.kmk (revision 43841)
+++ b/src/VBox/VMM/testcase/Makefile.kmk (working copy)
@@ -365,7 +365,11 @@
ifndef TOOL_MINGW32
include $(KBUILD_PATH)/tools/MINGW32.kmk
endif
- VBOX_NM ?= $(PATH_TOOL_MINGW32)/bin/nm.exe -p
+ ifeq ($(KBUILD_TARGET_ARCH),x86)
+ VBOX_NM ?= $(PATH_TOOL_MINGW32)/bin/nm.exe -p
+ else ifeq ($(KBUILD_TARGET_ARCH),amd64)
+ VBOX_NM ?= $(PATH_TOOL_MINGWW64)/bin/nm.exe -p
+ endif
else
VBOX_NM ?= nm -p
endif
This Patch is contributed under the MIT license
Regards
Bodo
More information about the vbox-dev
mailing list