Hey @miconda,
Regarding the unknown architecture, it seems that CMake defines the arch as arm64
for your machine instead of aarch64
and therefore __CPU_arm64
is defined (and not an option in fastlock.h
). As far as I can understand they are one and the same. see this SO.
Two options I see for this, either
aarch64
and it will pick up the correct path.__CPU_arm64
as a possible value in fastlock.h right next to the __CPU_aarch64
.I would go for the second option, as I find it more clean and descriptive but of course we can discuss it.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.