tmedicci commented on issue #15059: URL: https://github.com/apache/nuttx/issues/15059#issuecomment-2536107774
Thanks @chirping78 ! From your logs, I saw you have been using a newer toolchain version: ` xtensa-esp32s3-elf-gcc: xtensa-esp-elf-gcc (crosstool-NG esp-13.2.0_20240530) 13.2.0`. We recommend using the toolchain based on GCC 12.2.0 (the one which is also tested with NuttX's CI: https://github.com/apache/nuttx/blob/c9db6e8173b456c9886e9cce6d02f46152b4216f/tools/ci/docker/linux/Dockerfile#L272). Maybe this is related to the issue. Can you try building your firmware within the docker container used by the NuttX's CI: ``` sudo docker run -it ghcr.io/apache/nuttx/apache-nuttx-ci-linux:latest \ /bin/bash -c " cd /tmp ; ls -la pwd ; git clone https://github.com/apache/nuttx nuttx; pushd nuttx; git checkout 060fda032bc446e8deb1322ff78ec1fedee19a45; popd; git clone https://github.com/apache/nuttx-apps apps; pushd apps; git checkout 6600a5fd0; popd; cd nuttx make -j distclean && ./tools/configure.sh esp32s3-devkit:smp && make -j$(nproc); " ``` (the firmware will be at your PC's `/tmp/nutttx` folder) -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
