You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
wdt currently does not compile on ARM devices. I tried disabling -msse4.2 and -mpclmul compiler flags in CMakeLists.txt which are not supported on ARM but then it gave me:
$ make
...
[ 31%] Building CXX object CMakeFiles/wdt_min.dir/ErrorCodes.cpp.o
[ 34%] Building CXX object CMakeFiles/wdt_min.dir/util/FileByteSource.cpp.o
[ 36%] Building CXX object CMakeFiles/wdt_min.dir/util/FileCreator.cpp.o
/tmp/ccaKjm1j.s: Assembler messages:
/tmp/ccaKjm1j.s:1365: Error: selected processor does not support `yield' in ARM mode
/tmp/ccaKjm1j.s:4125: Error: selected processor does not support `yield' in ARM mode
/tmp/ccaKjm1j.s:4355: Error: selected processor does not support `yield' in ARM mode
CMakeFiles/wdt_min.dir/build.make:206: recipe for target 'CMakeFiles/wdt_min.dir/util/FileCreator.cpp.o' failed
make[2]: *** [CMakeFiles/wdt_min.dir/util/FileCreator.cpp.o] Error 1
CMakeFiles/Makefile2:67: recipe for target 'CMakeFiles/wdt_min.dir/all' failed
make[1]: *** [CMakeFiles/wdt_min.dir/all] Error 2
Makefile:127: recipe for target 'all' failed
make: *** [all] Error 2
Specifically:
Error: selected processor does not support `yield' in ARM mode
I've hit a wall here.
The text was updated successfully, but these errors were encountered:
wdt
currently does not compile on ARM devices. I tried disabling-msse4.2
and-mpclmul
compiler flags inCMakeLists.txt
which are not supported on ARM but then it gave me:Specifically:
I've hit a wall here.
The text was updated successfully, but these errors were encountered: