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 02e3790 commit 1271d88Copy full SHA for 1271d88
platform.py
@@ -23,6 +23,7 @@
23
import logging
24
from typing import Optional, Dict, List, Any
25
26
+from platformio.compat import IS_WINDOWS
27
from platformio.public import PlatformBase, to_unix_path
28
from platformio.proc import get_pythonexe_path
29
from platformio.project.config import ProjectConfig
@@ -71,10 +72,8 @@
71
72
]
73
74
# System-specific configuration
-IS_WINDOWS = sys.platform.startswith("win")
75
# Set Platformio env var to use windows_amd64 for all windows architectures
76
# only windows_amd64 native espressif toolchains are available
77
-# needs platformio/pioarduino core >= 6.1.17
78
if IS_WINDOWS:
79
os.environ["PLATFORMIO_SYSTEM_TYPE"] = "windows_amd64"
80
0 commit comments