Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CMake failure with aarch64 on linux platform #272

Open
DrDonGoodeve opened this issue Oct 14, 2021 · 1 comment
Open

CMake failure with aarch64 on linux platform #272

DrDonGoodeve opened this issue Oct 14, 2021 · 1 comment

Comments

@DrDonGoodeve
Copy link

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
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants