We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46b0e61 commit 6c30a4aCopy full SHA for 6c30a4a
builder/frameworks/espidf.py
@@ -232,6 +232,11 @@ def populate_idf_env_vars(idf_env):
232
233
idf_env["PATH"] = os.pathsep.join(additional_packages + [idf_env["PATH"]])
234
235
+ # Some users reported that the `IDF_TOOLS_PATH` var can seep into the
236
+ # underlying build system. Unsetting it is a safe workaround.
237
+ if "IDF_TOOLS_PATH" in idf_env:
238
+ del idf_env["IDF_TOOLS_PATH"]
239
+
240
241
def get_target_config(project_configs, target_index, cmake_api_reply_dir):
242
target_json = project_configs.get("targets")[target_index].get("jsonFile", "")
0 commit comments