Skip to content

Commit 9e05e46

Browse files
Earle F. Philhower, IIIEarle F. Philhower, III
Earle F. Philhower, III
authored and
Earle F. Philhower, III
committed
Use 64bit Windows compiler on 64bit Windows
1 parent bdc3d60 commit 9e05e46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/get.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def identify_platform():
9797
arduino_platform_names = {'Darwin' : {32 : 'i386-apple-darwin', 64 : 'x86_64-apple-darwin'},
9898
'Linux' : {32 : 'i686-pc-linux-gnu', 64 : 'x86_64-pc-linux-gnu'},
9999
'LinuxARM': {32 : 'arm-linux-gnueabihf', 64 : 'aarch64-linux-gnu'},
100-
'Windows' : {32 : 'i686-mingw32', 64 : 'i686-mingw32'}}
100+
'Windows' : {32 : 'i686-mingw32', 64 : 'x86_64-mingw32'}}
101101
bits = 32
102102
if sys.maxsize > 2**32:
103103
bits = 64

0 commit comments

Comments
 (0)