You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On an older system (in this case Mint Una), where cmake < 3.20, the build will fail claiming that you need at least version 3.20 of cmake. Embuild installs a custom cmake in ~/.espressif/tools/cmake but it doesn't seem to be used (in all cases?).
A workaround is adding export PATH="${HOME}/.espressif/tools/cmake/3.24.0/bin/:${PATH}" to export-esp.sh, after which the build does go through.
The version installed in the system is 3.16 btw. Mint Una and Ubuntu Focal on which it is based are LTS until April 2025.
The text was updated successfully, but these errors were encountered:
With the updated embuild crate we now make sure in the installation step of the tools, that a proper version is installed, and we also export them automatically in such a way that this version is used over the version potentially provided by the system.
On an older system (in this case Mint Una), where cmake < 3.20, the build will fail claiming that you need at least version 3.20 of cmake. Embuild installs a custom cmake in
~/.espressif/tools/cmake
but it doesn't seem to be used (in all cases?).A workaround is adding
export PATH="${HOME}/.espressif/tools/cmake/3.24.0/bin/:${PATH}"
toexport-esp.sh
, after which the build does go through.The version installed in the system is 3.16 btw. Mint Una and Ubuntu Focal on which it is based are LTS until April 2025.
The text was updated successfully, but these errors were encountered: