ref: cd552016005342817acf92d70e3a6244f5c3592e
parent: aea1017562d48a83ca1acfb2ba7f9ef74e8dfd1e
author: Martin Storsjö <martin@martin.st>
date: Fri Jan 16 04:59:49 EST 2015
Ignore armasm warnings about instructions that are deprecated in ARMv8 This disables armasm warning A4509, "This form of conditional instruction is deprecated". The conditional instructions (such as movcs, addcs, subscs) have been deprecated in ARMv8, in favor of conditional branches. This isn't something that we need to take immediate action about, though, therefore silence the warning.
--- a/build/msvc-common.mk
+++ b/build/msvc-common.mk
@@ -10,7 +10,7 @@
endif
ifeq ($(ASM_ARCH), arm)
CCAS = gas-preprocessor.pl -as-type armasm -force-thumb -- armasm
-CCASFLAGS = -nologo -DHAVE_NEON
+CCASFLAGS = -nologo -DHAVE_NEON -ignore 4509
endif
CC=cl