1# -*- Mode: makefile -*- 2# 3# x86_64 tests - included from tests/tcg/Makefile.target 4# 5# Currently we only build test-x86_64 and test-i386-ssse3 from 6# $(SRC_PATH)/tests/tcg/i386/ 7# 8 9include $(SRC_PATH)/tests/tcg/i386/Makefile.target 10 11ifneq ($(CONFIG_LINUX_USER),) 12X86_64_TESTS += vsyscall 13TESTS=$(MULTIARCH_TESTS) $(X86_64_TESTS) test-x86_64 14else 15TESTS=$(MULTIARCH_TESTS) 16endif 17QEMU_OPTS += -cpu max 18 19test-x86_64: LDFLAGS+=-lm -lc 20test-x86_64: test-i386.c test-i386.h test-i386-shift.h test-i386-muldiv.h 21 $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS) 22 23vsyscall: $(SRC_PATH)/tests/tcg/x86_64/vsyscall.c 24 $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS) 25 26# TCG does not yet support all SSE (SIGILL on pshufb) 27# sha512-sse: CFLAGS=-march=core2 -O3 28# sha512-sse: sha512.c 29# $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS) 30 31TESTS+=sha512-sse 32