[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging] x86emul: also allow running the 32-bit harness on a 64-bit distro
commit 52c37f7ab9d284da6543d2c4a2d9831948077ed9 Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Tue Nov 20 15:07:09 2018 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Tue Nov 20 15:07:09 2018 +0100 x86emul: also allow running the 32-bit harness on a 64-bit distro In order to be able to verify the 32-bit variant builds and runs, introduce a respective target (and the necessary other adjustments). Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- .gitignore | 1 + tools/tests/x86_emulator/32/Makefile | 5 +++++ tools/tests/x86_emulator/Makefile | 20 +++++++++++++++++++- 3 files changed, 25 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index ab53fc42e2..f11e61321a 100644 --- a/.gitignore +++ b/.gitignore @@ -240,6 +240,7 @@ tools/security/xensec_tool tools/tests/depriv/depriv-fd-checker tools/tests/x86_emulator/*.bin tools/tests/x86_emulator/*.tmp +tools/tests/x86_emulator/32/x86_emulate tools/tests/x86_emulator/3dnow*.[ch] tools/tests/x86_emulator/asm tools/tests/x86_emulator/avx*.[ch] diff --git a/tools/tests/x86_emulator/32/Makefile b/tools/tests/x86_emulator/32/Makefile new file mode 100644 index 0000000000..b61a644fd3 --- /dev/null +++ b/tools/tests/x86_emulator/32/Makefile @@ -0,0 +1,5 @@ +override XEN_COMPILE_ARCH := x86_32 +XEN_ROOT = $(CURDIR)/../../../.. +vpath %.c .. +vpath %.h .. +include ../Makefile diff --git a/tools/tests/x86_emulator/Makefile b/tools/tests/x86_emulator/Makefile index 3c711c6c09..84e3484a8d 100644 --- a/tools/tests/x86_emulator/Makefile +++ b/tools/tests/x86_emulator/Makefile @@ -1,5 +1,5 @@ -XEN_ROOT=$(CURDIR)/../../.. +XEN_ROOT ?= $(CURDIR)/../../.. include $(XEN_ROOT)/tools/Rules.mk TARGET := test_x86_emulator @@ -23,6 +23,12 @@ TESTCASES := blowfish $(SIMD) $(FMA) $(SG) OPMASK := avx512f avx512dq avx512bw +ifeq ($(origin XEN_COMPILE_ARCH),override) + +HOSTCFLAGS += -m32 + +else + blowfish-cflags := "" blowfish-cflags-x86_32 := "-mno-accumulate-outgoing-args -Dstatic=" @@ -144,6 +150,8 @@ $(addsuffix .h,$(SIMD) $(FMA) $(SG)): simd.h xop.h: simd-fma.c +endif # 32-bit override + $(TARGET): x86-emulate.o cpuid.o test_x86_emulator.o evex-disp8.o wrappers.o $(HOSTCC) $(HOSTCFLAGS) -o $@ $^ @@ -158,6 +166,16 @@ distclean: clean .PHONY: install uninstall install uninstall: +.PHONY: run32 clean32 +ifeq ($(XEN_TARGET_ARCH),x86_64) +run32: $(addsuffix .h,$(TESTCASES)) $(addsuffix -opmask.h,$(OPMASK)) +run32 clean32: %32: + $(MAKE) -C 32 $* +clean: clean32 +else +run32 clean32: %32: % +endif + x86_emulate: [ -L $@ ] || ln -sf $(XEN_ROOT)/xen/arch/x86/$@ -- generated by git-patchbot for /home/xen/git/xen.git#staging _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |