direct-io.hg
changeset 9646:3a9d0c29ed72
Trivial patch to fix x86_64 builds in which XEN_TARGET_ARCH
is specified on the make command line, e.g.:
make XEN_TARGET_ARCH=x86_64
This busted the vmxassist and hvmloader builds, which must
be done -m32. Using "override" in the vmxassist/hvmloader
Makefiles fixes the problem by not allowing this to be
overridden from the command line.
Signed-off-by: Dave Lively <dlively@virtualiron.com>
is specified on the make command line, e.g.:
make XEN_TARGET_ARCH=x86_64
This busted the vmxassist and hvmloader builds, which must
be done -m32. Using "override" in the vmxassist/hvmloader
Makefiles fixes the problem by not allowing this to be
overridden from the command line.
Signed-off-by: Dave Lively <dlively@virtualiron.com>
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Fri Apr 14 14:18:39 2006 +0100 (2006-04-14) |
parents | 9a273aabb839 |
children | 7b9dacaf3340 |
files | tools/firmware/hvmloader/Makefile tools/firmware/vmxassist/Makefile |
line diff
1.1 --- a/tools/firmware/hvmloader/Makefile Fri Apr 14 14:14:24 2006 +0100 1.2 +++ b/tools/firmware/hvmloader/Makefile Fri Apr 14 14:18:39 2006 +0100 1.3 @@ -21,7 +21,7 @@ 1.4 # External CFLAGS can do more harm than good. 1.5 CFLAGS := 1.6 1.7 -XEN_TARGET_ARCH = x86_32 1.8 +override XEN_TARGET_ARCH = x86_32 1.9 XEN_ROOT = ../../.. 1.10 include $(XEN_ROOT)/Config.mk 1.11
2.1 --- a/tools/firmware/vmxassist/Makefile Fri Apr 14 14:14:24 2006 +0100 2.2 +++ b/tools/firmware/vmxassist/Makefile Fri Apr 14 14:18:39 2006 +0100 2.3 @@ -21,7 +21,7 @@ 2.4 # External CFLAGS can do more harm than good. 2.5 CFLAGS := 2.6 2.7 -XEN_TARGET_ARCH = x86_32 2.8 +override XEN_TARGET_ARCH = x86_32 2.9 XEN_ROOT = ../../.. 2.10 include $(XEN_ROOT)/Config.mk 2.11