xref: /openbmc/qemu/tests/tcg/x86_64/Makefile.target (revision fdf250e5a37830615e324017cb3a503e84b3712c)
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
11X86_64_TESTS += test-2413
12
13ifeq ($(filter %-linux-user, $(TARGET)),$(TARGET))
14X86_64_TESTS += vsyscall
15X86_64_TESTS += noexec
16X86_64_TESTS += cmpxchg
17X86_64_TESTS += adox
18X86_64_TESTS += test-1648
19X86_64_TESTS += test-2175
20X86_64_TESTS += cross-modifying-code
21TESTS=$(MULTIARCH_TESTS) $(X86_64_TESTS) test-x86_64
22else
23TESTS=$(MULTIARCH_TESTS)
24endif
25
26adox: CFLAGS=-O2
27
28run-test-i386-ssse3: QEMU_OPTS += -cpu max
29run-plugin-test-i386-ssse3-%: QEMU_OPTS += -cpu max
30
31cross-modifying-code: CFLAGS+=-pthread
32cross-modifying-code: LDFLAGS+=-pthread
33
34test-x86_64: LDFLAGS+=-lm -lc
35test-x86_64: test-i386.c test-i386.h test-i386-shift.h test-i386-muldiv.h
36	$(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
37
38%: $(SRC_PATH)/tests/tcg/x86_64/%.c
39	$(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
40