[llvm-dev] how to build NE10 Project using llvm compiler

Tim Northover via llvm-dev llvm-dev at lists.llvm.org
Mon Jul 30 08:08:11 PDT 2018


Hi,

On Mon, 30 Jul 2018 at 12:15, yehuda marko via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
> ./NE10_abs.asm.s:59:9: error: unrecognized instruction mnemonic
>         vmov s2, r3

Clang 3.8 is pretty old, but it should support all of these
instructions. But those instructions are for AArch32 and if you're
compiling for Cortex-A72 you'd naturally be using the new 64-bit
AArch64 instruction set.

So what I suspect is happening is that the project is choosing the old
ARMv7 assembly implementations, either because it doesn't have 64-bit
ones or because something strange in the configuration is taking it
down that path.

Either way, you probably need to contact people involved with NE10 to
sort out what's going on.

Cheers.

Tim.


More information about the llvm-dev mailing list