08-06-2020, 03:28 PM
(08-04-2020, 07:45 AM)a-wai Wrote:(08-03-2020, 06:31 PM)Hiraghm Wrote: Well, my desktop runs Mint, which is Debian (sort of...) but I can't compile on it for the Aarch64... So I guess I'll need to install an Aarch64 debian distro (Mobian even?) in Qemu?
I'd suggest you rather install and amd64 debian in qemu (it will be much faster, assuming your host machine is also amd64), and then:
Code:sudo dpkg --add-architecture arm64
sudo apt update
This will enable the arm64 repos. You can then install arm64 dev packages using <package>:arm64, for instance to install gtk3 dev package, it would be something like:
Code:sudo apt install libgtk-3-dev:arm64
And then cross-compile your software the "usual" way.
Thanks!
I got Qemu up, running MintDE, and I got arm64 added... So now I need to get codeblocks to use the arm64 libraries.