2018-04-17 12:14:37 +02: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 06:57:38 +02:00
|
|
|
# $(SRC_PATH)/tests/tcg/i386/
|
2018-04-17 12:14:37 +02:00
|
|
|
#
|
|
|
|
|
2019-08-07 16:35:22 +02:00
|
|
|
include $(SRC_PATH)/tests/tcg/i386/Makefile.target
|
|
|
|
|
2022-04-19 11:10:08 +02:00
|
|
|
ifeq ($(filter %-linux-user, $(TARGET)),$(TARGET))
|
2021-05-19 06:57:38 +02:00
|
|
|
X86_64_TESTS += vsyscall
|
2022-08-17 17:05:05 +02:00
|
|
|
X86_64_TESTS += noexec
|
2022-09-11 14:04:36 +02:00
|
|
|
X86_64_TESTS += cmpxchg
|
2023-01-15 02:21:03 +01:00
|
|
|
X86_64_TESTS += adox
|
2019-08-07 16:35:22 +02:00
|
|
|
TESTS=$(MULTIARCH_TESTS) $(X86_64_TESTS) test-x86_64
|
2021-09-17 18:23:24 +02:00
|
|
|
else
|
|
|
|
TESTS=$(MULTIARCH_TESTS)
|
|
|
|
endif
|
2022-08-25 14:27:00 +02:00
|
|
|
|
2023-01-15 02:21:03 +01:00
|
|
|
adox: CFLAGS=-O2
|
|
|
|
|
2022-08-25 14:27:00 +02:00
|
|
|
run-test-i386-ssse3: QEMU_OPTS += -cpu max
|
|
|
|
run-plugin-test-i386-ssse3-%: QEMU_OPTS += -cpu max
|
2018-04-17 12:14:37 +02: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 06:57:38 +02:00
|
|
|
|
2022-08-17 17:05:05 +02:00
|
|
|
%: $(SRC_PATH)/tests/tcg/x86_64/%.c
|
2021-05-19 06:57:38 +02:00
|
|
|
$(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
|