1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-20 15:43:16 +00:00

Only conditionally add in hyperv support if we're building amd64

This unbreaks the build because the assembly is written for x64.

MFC after:	3 weeks
X-MFC with:	r312418
Pointyhat to:	ngie
Reported by:	Jenkins (i386 job)
Sponsored by:	Dell EMC Isilon
This commit is contained in:
Enji Cooper 2017-01-19 18:07:24 +00:00
parent de3506af97
commit 0195177b26
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=312422

View File

@ -5,6 +5,6 @@
SRCS+= \
__vdso_gettc.c
.if ${MK_HYPERV} != "no"
.if ${MACHINE_CPUARCH} == "amd64" && ${MK_HYPERV} != "no"
CFLAGS+= -DWANT_HYPERV
.endif