Merge tag 'pull-loongarch-20241016' of https://gitlab.com/gaosong/qemu into staging
[qemu/armbru.git] / tests / tcg / mips / Makefile.target
blob5d17c1706e4b471ef62f66a7f723ca937e3a78f9
1 # -*- Mode: makefile -*-
3 # MIPS - included from tests/tcg/Makefile.target
6 MIPS_SRC=$(SRC_PATH)/tests/tcg/mips
8 # Set search path for all sources
9 VPATH           += $(MIPS_SRC)
11 # hello-mips is 32 bit only
12 ifeq ($(findstring 64,$(TARGET_NAME)),)
13 MIPS_TESTS=hello-mips
15 TESTS += $(MIPS_TESTS)
17 hello-mips: CFLAGS+=-mno-abicalls -fno-PIC -fno-stack-protector -mabi=32
18 hello-mips: LDFLAGS+=-nostdlib
19 endif