Getting MintCoin working on the aarch64 CPU requires a few changes:
The atomic pointer code used by LevelDB needed to be updated.
The Makefile needed to be updated to remove the SSE optimizations (which are x86/amd64 only).
An implementation of Scrypt that works on the CPU was needed (I used a C-based version here, which is portable and should work on any CPU, but may be slower than a hand-crafted assembly version).
The code to support aarch64 on LevelDB was found here:
Getting MintCoin working on the aarch64 CPU requires a few changes:
The code to support aarch64 on LevelDB was found here:
https://github.com/google/leveldb/commit/c4c38f9c1f3bb405fe22a79c5611438f91208d09
The C implementation of Scrypt was found here:
https://github.com/pooler/cpuminer/blob/8da0556cec32819d967734527a8e0f1d8efb0671/scrypt.c#L420
(I think that this is defined in an IETF RFC as well, but using this seemed easiest.)