1# 2# Aarch64 system tests 3# 4 5AARCH64_SYSTEM_SRC=$(SRC_PATH)/tests/tcg/aarch64/system 6VPATH+=$(AARCH64_SYSTEM_SRC) 7 8# These objects provide the basic boot code and helper functions for all tests 9CRT_OBJS=boot.o 10 11AARCH64_TEST_SRCS=$(wildcard $(AARCH64_SYSTEM_SRC)/*.c) 12AARCH64_TESTS = $(patsubst $(AARCH64_SYSTEM_SRC)/%.c, %, $(AARCH64_TEST_SRCS)) 13 14CRT_PATH=$(AARCH64_SYSTEM_SRC) 15LINK_SCRIPT=$(AARCH64_SYSTEM_SRC)/kernel.ld 16LDFLAGS=-Wl,-T$(LINK_SCRIPT) 17TESTS+=$(AARCH64_TESTS) $(MULTIARCH_TESTS) 18CFLAGS+=-nostdlib -ggdb -O0 $(MINILIB_INC) 19LDFLAGS+=-static -nostdlib $(CRT_OBJS) $(MINILIB_OBJS) -lgcc 20 21# building head blobs 22.PRECIOUS: $(CRT_OBJS) 23 24%.o: $(CRT_PATH)/%.S 25 $(CC) $(CFLAGS) -x assembler-with-cpp -c $< -o $@ 26 27# Build and link the tests 28%: %.c $(LINK_SCRIPT) $(CRT_OBJS) $(MINILIB_OBJS) 29 $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS) 30 31memory: CFLAGS+=-DCHECK_UNALIGNED=1 32 33# Running 34QEMU_OPTS+=-M virt -cpu max -display none -semihosting-config enable=on,target=native,chardev=output -kernel 35