Cross compiler of armsom-w3 development board

Hi,

What is the application compiler on the armsom-w3 development board? I want to cross compile some applications for use on the development board.

Thanks in advance!

Best Regards

Hello, this is the related gcc compiler Toolchain:Cross compiler

  • 64 bit Toolchain:linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu
  • 32 bit Toolchain: linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf

I encountered a compilation problem. I compiled a set of QT programs with this Toolchain, but after migrating to the target board, I found that the C library version of the target board was inconsistent with the version in this Toolchain. How to deal with this problem? Is it necessary to change the Toolchain?

If you are developing under the Debian system, it is recommended not to compile on a PC and then run on the development board.
Can install the required QT toolkit online

Install cross compilation:
sudo su
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install build-essential

Install Qt
sudo apt-get install qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools
sudo apt-get install qtcreator
sudo apt-get install qt5*

Thank you. I will use online installation later on