VSCode default shell is now Powershell (instead of cmd for Ctrl-`) and powershell execution environment does not taste well for make (I am not sure why, I will check it later).
With “terminal.integrated.shell.windows”: “C:\Windows\sysnative\cmd.exe” VSCode configuration build executes fine.
Would you be so kind and test it with your configuration please ?
We need update VSCode integration anyway, so I will fix it together.
I tryed add to file settings.json in project this:
“terminal.integrated.shell.windows”: “C:\Windows\SysWOW64\cmd.exe”
(the path C:\Windows\SysWOW64\cmd.exe is working)
@hub.martin Yes, I tried close VSCode, I tried restart computer, I tried BigClown Toolchain 1.0.2 and reinstall VSCode, but no effect. Is necessary to buit it int command line with “make”.
Your VSCode Workspace is PRVNI (not PRVNI\sdk), you have to put terminal configuration in Workspace top .vscode\settings.json file. Would you be so kind and try to create settings.json in Workspace top level .vscode and put terminal configuration there please (no need to restart or reinstall) ?
@michal.muhlpachr I had information from @hub.martin about add “terminal.integrated.shell.windows”: “C:\Windows\SysWOW64\cmd.exe” to file “settings.json” and only one file with this name was in folder \sdk.
Now I added this to setting in VSCode (with Ctrl-,) and it’s working well! Thank you for your support!
Next, you will change it in all projects?
Right place for project related settings.json is in WORKSPACE/.vscode/settings.json, in your case PRVNI/.vscode/settings.json (not PRVNI/sdk/.vscode/settings.json).
Definetly, I will fix it in project skeleton. Thank you for testing in your configuration and reporting results.