Skip to content

Commit

Permalink
Merge pull request #291 from espressif/fix/clang_tool
Browse files Browse the repository at this point in the history
IDE Installer fix - idf_tools.py was not installing esp-clang
  • Loading branch information
jakub-kocka authored Nov 5, 2024
2 parents 1072b70 + aed894c commit fe94392
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/InnoSetup/Environment.iss
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,8 @@ begin
Log('Installing tools:' + CmdLine);
DoCmdlineInstall(CustomMessage('InstallingEspIdfTools'), '', CmdLine);
CmdLine := IDFToolsPyCmd + ' install esp-clang';
DoCmdlineInstall(CustomMessage('InstallingEspIdfTools'), '', CmdLine);
PythonVirtualEnvPath := ExpandConstant('{app}\python_env\') + GetIDFPythonEnvironmentVersion() + '_env';
CmdLine := PythonExecutablePath + ' -m venv "' + PythonVirtualEnvPath + '"';
Expand Down

0 comments on commit fe94392

Please sign in to comment.