Closed wstutt2000 closed 3 years ago
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
This issue is now being closed due to a lack of activity. Feel free to reopen it.
I am trying to build shogun on a Raspberry Pi 4 B so I can run it from Python 3.7.3. I installed it with Add/Remove Software but that only installed it for Python 2.7.
Here is the output from
cat /proc/cpuinfo
:Here is the output from
uname -a
:Linux raspberrypi 5.10.17-v7l+ #1403 SMP Mon Feb 22 11:33:35 GMT 2021 armv7l GNU/Linux
I used ccmake to generate the make file.
I had problems that my settings for the
CMAKE_CXX_FLAGS
andCMAKE_C_FLAGS
options were being ignored so I resorted to inserting the flags I needed in to theC_FLAGS
andCXX_FLAGS
settings in thesrc/shogun/CMakeFiles/libshogun.dir
file. The flags that I inserted were-march=armv7-a -mfpu=vfpv3-d16
Here is the end of the make output:
It appears that the line
static_assert(sizeof(T) == SIZE, "");
caused the problem. It was printed in orange.Can anyone help me with this?
Thanks!