I have a sample app (hellow world from the zephyr samples).
It compiled well on my system in vscode using 2.7.0 and sysbuild.
I then installed 2.8.0 and suddenly the build fails, the cmake cannot find the python libraries.
The reason seemed to be that even though i have defined the default SDK and toolchain to be 2.7.0 when calling ncsconfig.cmake it finds toolchain for 2.8.0 and not 2.7.0
i tried to set -DNCS_TOOLCHAIN_VERSION=v2.7.0 instead of None in west call, but it did not help.
Any idea how to resolve it ?
If i remove 2.8.0 then everything goes back to normal, but i want the ability to move some of the new projects to 2.8.0 without docker.
Please advise.