From mboxrd@z Thu Jan 1 00:00:00 1970 From: linux@arm.linux.org.uk (Russell King - ARM Linux) Date: Sun, 22 Sep 2013 11:11:55 +0100 Subject: [PATCH v3 0/5] kernel mode NEON support In-Reply-To: <1373321521-15485-1-git-send-email-ard.biesheuvel@linaro.org> References: <1373321521-15485-1-git-send-email-ard.biesheuvel@linaro.org> Message-ID: <20130922101155.GP12758@n2100.arm.linux.org.uk> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Mon, Jul 08, 2013 at 11:11:56PM +0100, Ard Biesheuvel wrote: > This is version 3 of the kernel mode NEON patch set. I've noticed some of the randconfigs are failing due to trying to mix VFP and FPA objects together, which causes the linker to complain. I thought about adding -Wa,-mfpu=softvfp, but this overrides your -mfpu=neon resulting in the neon code failing to build. -mfpu=softvfp doesn't work because GCC and binutils don't take the same -mfpu= option names (GCC rejects softvfp, whereas the assembler accepts it.) This only happens when AEABI is not selected, so I think the only solution to this is to make KERNEL_MODE_NEON depend on AEABI - and this is what I've committed to my tree today.