projectNe10 / Ne10

An open optimized software library project for the ARM® Architecture
Other
1.46k stars 408 forks source link

CMake failure with aarch64 on linux platform #272

Open DrDonGoodeve opened 3 years ago

DrDonGoodeve commented 3 years ago

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"))))

Robert-Knapp commented 2 years ago

DrDon, this got me a little further along, but I still can't build, per the missing references Stephano experienced two years ago: https://github.com/projectNe10/Ne10/issues/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