Compile errors with Assembler messages

后端 未结 7 1954
天命终不由人
天命终不由人 2021-01-14 08:38

I\'m working with Point Cloud Library. It\'s mostly in C++ When I compile it, gives such error:

[  0%] Building CXX object common/CMakeFiles/pcl_common.dir/s         


        
相关标签:
7条回答
  • 2021-01-14 09:39

    You probably need to enable advanced vector extensions when compiling (and use toolchain that supports this). Try -march=core-avx2 or something similar.

    If you compiled library yourself, it is possible you need to configure it to not use AVX.

    0 讨论(0)
提交回复
热议问题