-
Notifications
You must be signed in to change notification settings - Fork 48
riotbuild: Upgrade ESP32 toolchain to GCC 14.2.0 #255
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
riotbuild: Upgrade ESP32 toolchain to GCC 14.2.0 #255
Conversation
I don't understand why the compile test for |
Ah, the compilation test uses the Obviously, it seems to be related to PR #257 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You'll probably need to rebase on current master
for the changes from #257 to be included.
3d3b622
to
f49002d
Compare
Oh
looks like the build system sanity check complains about the RIOT version tagged with |
It is actually using the release branch. So just bumping the tagging in the release branch will fix the issue. I guess we should make sure to always backport the tagging of the new docker image once it is deployed to the latest release branch. |
Btw: This should pass the CI now. |
f49002d
to
108123e
Compare
@benpicco Don't we have to wait until |
It would be beneficial for the 2025.04 release if it would already use the new docker container. As of now, Murdock will use the latest version for building both Either way, it is not optimal and the real fix would be to somehow use the tagged version of |
That can be fixed easiely |
BTW, I have working ESP32-H2 locally with this toolchain version, but BLE is a nightmare for this variant. As usual with Espressif, they integrate external packages into their closed low-level binary libraries. For ESP32-H2 they have integrated Nimble into the BLE low-level libraries, which leads to major conflicts with the Nimble package as provided by RIOT 🙈 |
This updates the tagged container due to the merge of RIOT-OS/riotdocker#255
This updates the tagged container due to the merge of RIOT-OS/riotdocker#255 (cherry picked from commit 18b1aba)
This updates the tagged container due to the merge of RIOT-OS/riotdocker#255
This PR is required for the upgrade of the ESP-IDF SDK from version 4.4 to version 5.4. It provides the following changes:
The picolibc compilation for ESP32 had to be removed since it produces error on buildung the docker image.
The toolchain should work with current master.
Depends on #257