projectNe10/Ne10

CMake failure with aarch64 on linux platform

DrDonGoodeve opened this issue · 1 comments

The CMakeLists.txt file contains a trap for non-arm builds at L191:
if(GNULINUX_PLATFORM AND (NOT CMAKE_SYSTEM_PROCESSOR MATCHES "^arm"))

To retain the trap and allow the aarch64 build to complete, this line can be replaced with:
if(GNULINUX_PLATFORM AND (NOT ((CMAKE_SYSTEM_PROCESSOR MATCHES "^arm") OR (CMAKE_SYSTEM_PROCESSOR MATCHES "^aarch"))))

DrDon, this got me a little further along, but I still can't build, per the missing references Stephano experienced two years ago: #252 .

How did you get past all of this to a build? Was what you suggest above the only thing you did, or were more steps needed?

Thanks, Robert