10-01-2018, 02:36 AM
I think you mix up different issues. So a couple of thoughts:
* try a more recent gcc. 4.9 has poor support for aarch64.
* compiler flags like -msse2 or -m64 won't work on aarch64-alt-linux-gcc, they are x64 specific.
* you can't compare aarch64 (rock64) and armv7 (raspi) - they are just different architectures.
I got lot of "gcc: internal compiler error:" on my rock64, too. Look into https://forum.pine64.org/showthread.php?tid=6404
aarch64 can't be the problem. I just got hashcat-4.2.1.tar.gz, extracted it, installed opencl and compiled it with
$ CFLAGS="-mtune=cortex-a53 -march=armv8-a+crc+crypto" CC=gcc-7 make -j4
$ ls -l hashcat
-rwxr-xr-x 1 user users 730496 Oct 1 10:22 hashcat
on altlinux sisyphus.
* try a more recent gcc. 4.9 has poor support for aarch64.
* compiler flags like -msse2 or -m64 won't work on aarch64-alt-linux-gcc, they are x64 specific.
* you can't compare aarch64 (rock64) and armv7 (raspi) - they are just different architectures.
I got lot of "gcc: internal compiler error:" on my rock64, too. Look into https://forum.pine64.org/showthread.php?tid=6404
aarch64 can't be the problem. I just got hashcat-4.2.1.tar.gz, extracted it, installed opencl and compiled it with
$ CFLAGS="-mtune=cortex-a53 -march=armv8-a+crc+crypto" CC=gcc-7 make -j4
$ ls -l hashcat
-rwxr-xr-x 1 user users 730496 Oct 1 10:22 hashcat
on altlinux sisyphus.