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 26b14dd commit 8a841d8Copy full SHA for 8a841d8
platform.py
@@ -23,6 +23,13 @@
23
from platformio.project.config import ProjectConfig
24
from platformio.package.manager.tool import ToolPackageManager
25
26
+IS_WINDOWS = sys.platform.startswith("win")
27
+# Set Platformio env var to use windows_amd64 for all windows architectures
28
+# only windows_amd64 native espressif toolchains are available
29
+# needs platformio core >= 6.1.16b2 or pioarduino core 6.1.16+test
30
+if IS_WINDOWS:
31
+ os.environ["PLATFORMIO_SYSTEM_TYPE"] = "windows_amd64"
32
+
33
python_exe = get_pythonexe_path()
34
pm = ToolPackageManager()
35
0 commit comments