2018-04-17 13:14:37 +03:00
|
|
|
# -*- Mode: makefile -*-
|
|
|
|
#
|
|
|
|
# x86_64 tests - included from tests/tcg/Makefile.target
|
|
|
|
#
|
|
|
|
# Currently we only build test-x86_64 and test-i386-ssse3 from
|
2021-05-19 07:57:38 +03:00
|
|
|
# $(SRC_PATH)/tests/tcg/i386/
|
2018-04-17 13:14:37 +03:00
|
|
|
#
|
|
|
|
|
2019-08-07 17:35:22 +03:00
|
|
|
include $(SRC_PATH)/tests/tcg/i386/Makefile.target
|
|
|
|
|
2022-01-05 16:49:54 +03:00
|
|
|
ifneq ($(CONFIG_LINUX_USER),)
|
2021-05-19 07:57:38 +03:00
|
|
|
X86_64_TESTS += vsyscall
|
2019-08-07 17:35:22 +03:00
|
|
|
TESTS=$(MULTIARCH_TESTS) $(X86_64_TESTS) test-x86_64
|
2021-09-17 19:23:24 +03:00
|
|
|
else
|
|
|
|
TESTS=$(MULTIARCH_TESTS)
|
|
|
|
endif
|
2019-08-07 17:35:22 +03:00
|
|
|
QEMU_OPTS += -cpu max
|
2018-04-17 13:14:37 +03:00
|
|
|
|
|
|
|
test-x86_64: LDFLAGS+=-lm -lc
|
|
|
|
test-x86_64: test-i386.c test-i386.h test-i386-shift.h test-i386-muldiv.h
|
|
|
|
$(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
|
2021-05-19 07:57:38 +03:00
|
|
|
|
|
|
|
vsyscall: $(SRC_PATH)/tests/tcg/x86_64/vsyscall.c
|
|
|
|
$(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
|
2022-02-25 20:20:16 +03:00
|
|
|
|
|
|
|
# TCG does not yet support all SSE (SIGILL on pshufb)
|
|
|
|
# sha512-sse: CFLAGS=-march=core2 -O3
|
|
|
|
# sha512-sse: sha512.c
|
|
|
|
# $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS)
|
|
|
|
|
|
|
|
TESTS+=sha512-sse
|