tests/tcg/x86_64: add a PVH crt.o for x86_64 system tests
[qemu/ar7.git] / tests / tcg / i386 / Makefile.softmmu-target
blob0a4364868ce6f44f554fdc74ab422928c7e27b7c
2 # x86 system tests
4 # This currently builds only for i386. The common C code is built
5 # with standard compiler flags however so we can support both by
6 # adding additional boot files for x86_64.
9 I386_SYSTEM_SRC=$(SRC_PATH)/tests/tcg/i386/system
10 X64_SYSTEM_SRC=$(SRC_PATH)/tests/tcg/x86_64/system
12 # These objects provide the basic boot code and helper functions for all tests
13 CRT_OBJS=boot.o
15 ifeq ($(TARGET_X86_64), y)
16 CRT_PATH=$(X64_SYSTEM_SRC)
17 CFLAGS=-march=x86-64
18 LINK_SCRIPT=$(X64_SYSTEM_SRC)/kernel.ld
19 LDFLAGS=-Wl,-T$(LINK_SCRIPT) -Wl,-melf_x86_64
20 else
21 CRT_PATH=$(I386_SYSTEM_SRC)
22 CFLAGS+=-m32
23 LINK_SCRIPT=$(I386_SYSTEM_SRC)/kernel.ld
24 LDFLAGS=-Wl,-T$(LINK_SCRIPT) -Wl,-melf_i386
25 endif
26 CFLAGS+=-nostdlib -ggdb -O0 $(MINILIB_INC)
27 LDFLAGS+=-static -nostdlib $(CRT_OBJS) $(MINILIB_OBJS) -lgcc
29 TESTS+=$(MULTIARCH_TESTS)
31 # building head blobs
32 .PRECIOUS: $(CRT_OBJS)
34 %.o: $(CRT_PATH)/%.S
35         $(CC) $(CFLAGS) -c $< -o $@
37 # Build and link the tests
38 %: %.c $(LINK_SCRIPT) $(CRT_OBJS) $(MINILIB_OBJS)
39         $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
41 memory: CFLAGS+=-DCHECK_UNALIGNED=1
43 # Running
44 QEMU_OPTS+=-device isa-debugcon,chardev=output -device isa-debug-exit,iobase=0xf4,iosize=0x4 -kernel