mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-03 07:02:28 +03:00
Recognize MSYS(MINGW) as Windows for toolchain get (#7358)
Add the ID string reported by MSYS's latest tools under Windows with the string "MINGW..." as "Windows" for toolchain selection in get.py
This commit is contained in:
parent
45feadcb4a
commit
e70092ca3e
@ -113,6 +113,8 @@ def identify_platform():
|
||||
sys_name = 'Windows'
|
||||
if 'MSYS_NT' in sys_name:
|
||||
sys_name = 'Windows'
|
||||
if 'MINGW' in sys_name:
|
||||
sys_name = 'Windows'
|
||||
return arduino_platform_names[sys_name][bits]
|
||||
|
||||
def main():
|
||||
|
Loading…
x
Reference in New Issue
Block a user