JorgeGzm commented on PR #3120: URL: https://github.com/apache/nuttx-apps/pull/3120#issuecomment-3036635060
I followed the qemu-armv8a board tutorial to set up the build environment: https://nuttx.apache.org/docs/latest/platforms/arm64/qemu/boards/qemu-armv8a/index.html # Compile Toolchain Host environment: GNU/Linux: Ubuntu 18.04 or greater Download and Install ```bash wget https://developer.arm.com/-/media/Files/downloads/gnu/11.2-2022.02/binrel/gcc-arm-11.2-2022.02-x86_64-aarch64-none-elf.tar.xz xz -d gcc-arm-11.2-2022.02-x86_64-aarch64-none-elf.tar.xz tar xf gcc-arm-11.2-2022.02-x86_64-aarch64-none-elf.tar ``` Put gcc-arm-11.2-2022.02-x86_64-aarch64-none-elf/bin/ on your host PATH environment variable, like: ```bash export PATH=$PATH:/opt/software/arm/linaro-toolchain/gcc-arm-11.2-2022.02-x86_64-aarch64-none-elf/bin ``` check the toolchain: ```bash aarch64-none-elf-gcc -v ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org