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 bdc3d60 commit 9e05e46Copy full SHA for 9e05e46
tools/get.py
@@ -97,7 +97,7 @@ def identify_platform():
97
arduino_platform_names = {'Darwin' : {32 : 'i386-apple-darwin', 64 : 'x86_64-apple-darwin'},
98
'Linux' : {32 : 'i686-pc-linux-gnu', 64 : 'x86_64-pc-linux-gnu'},
99
'LinuxARM': {32 : 'arm-linux-gnueabihf', 64 : 'aarch64-linux-gnu'},
100
- 'Windows' : {32 : 'i686-mingw32', 64 : 'i686-mingw32'}}
+ 'Windows' : {32 : 'i686-mingw32', 64 : 'x86_64-mingw32'}}
101
bits = 32
102
if sys.maxsize > 2**32:
103
bits = 64
0 commit comments