mirror of https://github.com/xemu-project/xemu.git
tests/tcg/arm: Use -march and -mfpu for fcvt
Clang requires the architecture to be set properly in order to assemble the half-precision instructions. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Akihiko Odaki <akihiko.odaki@daynix.com> Message-Id: <20240630190050.160642-13-richard.henderson@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20240705084047.857176-18-alex.bennee@linaro.org>
This commit is contained in:
parent
1e7c9ba4a2
commit
e3693cd3c9
|
@ -29,8 +29,8 @@ test-arm-iwmmxt: test-arm-iwmmxt.S
|
|||
|
||||
# Float-convert Tests
|
||||
ARM_TESTS += fcvt
|
||||
fcvt: LDFLAGS+=-lm
|
||||
# fcvt: CFLAGS+=-march=armv8.2-a+fp16 -mfpu=neon-fp-armv8
|
||||
fcvt: LDFLAGS += -lm
|
||||
fcvt: CFLAGS += -march=armv8.2-a+fp16 -mfpu=neon-fp-armv8
|
||||
run-fcvt: fcvt
|
||||
$(call run-test,fcvt,$(QEMU) $<)
|
||||
$(call diff-out,fcvt,$(ARM_SRC)/fcvt.ref)
|
||||
|
|
Loading…
Reference in New Issue