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 bfd06b4 commit 7caa067Copy full SHA for 7caa067
platform.py
@@ -23,6 +23,11 @@
23
24
25
IS_WINDOWS = sys.platform.startswith("win")
26
+# Set Platformio env var to use windows_amd64 for all windows architectures
27
+# only windows_amd64 native espressif toolchains are available
28
+# needs platformio core >= 6.1.16b2 or pioarduino core 6.1.16+test
29
+if IS_WINDOWS:
30
+ os.environ["PLATFORMIO_SYSTEM_TYPE"] = "windows_amd64"
31
32
33
class Espressif32Platform(PlatformBase):
0 commit comments