Closed dschnabel closed 5 years ago
@dschnabel Kindly make sure that flag -march=armv8-a+fp+simd
is only available with 64-bit toolchains. If you are using 32-bit-toolchains kindly use -march=armv8-a -mfloat-abi=hard -mfpu=neon-fp-armv8
combination instead. For more information see here.
When I build with the 9.1.0 cross-compiler toolchain and use the flag
-march=armv8-a+fp+simd
as mentioned in the README, I'm getting this error message:Looks like
fp
is the default, so I can omit that and just use-march=armv8-a+simd
? It builds fine without it.