Closed useperl closed 2 years ago
I followed your steps & can reproduce. Only happens in Release configuration - cmake . -DCMAKE_BUILD_TYPE=Debug
works.
Looks like GCC on x86 has some vector intrinsics that might be interfering. Or possibly alignment issues.
In the meantime cmake . -DLIBDIVIDE_SSE2=OFF -DLIBDIVIDE_AVX2=OFF -DLIBDIVIDE_AVX512=OFF -DLIBDIVIDE_NEON=OFF
should work.
Hello, when I try to build libdivide with gcc 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) under Ubuntu 20.04, I get the following error:
I just run
cmake .
, thenmake
, and then get the error. (Runningmake -j
instead of justmake
gives the same error). Am I doing anything wrong? What's the easiest way to fix or work around? I'm just trying to get a working benchmark binary. I tried building currentmaster
branch...... as well as release 5.0:
with the same error