Compiler errors while building a project which uses Eigen, the C++ template library for linear algebra
问题 in my project I'm making use of Eigen C++ library for linear algebra and ONLY when I turn on the vectorization flags (mfpu=neon -mfloat-abi=softfp) for ARM NEON, I get compiler errors. I'm not able to understand whats going wrong. Do I need to enable any preprocessor directives for ARM NEON in the Eigen Library? main.c #include<iostream> #include <Eigen/Core> // import most common Eigen types using namespace Eigen; int main(int, char *[]) { Matrix4f m3; m3 << 1, 2, 3, 0, 4, 5, 6, 0, 7, 8, 9,