问题
I'm trying to cross-compile a library for ARM64, I'm using Ubuntu 18.04 x86_64 host system for a build and the way I'm doing the cross-compile as
sudo apt-get update
sudo apt-get install crossbuild-essential-arm64
and do the make
make -j 4 TARGET=aarch64
wonder what a compiler is invoked? Is it possible to set the latest gcc
from ARM?
FYI. I'm trying to follow TensorFlow cross-compile for ARM64 and set the latest GNU Toolchain for ARM64.
来源:https://stackoverflow.com/questions/62139412/cross-compile-for-arm64-understanding-make-target-aarch64