forked from p34709852/monkey
Hotpatch, don't check the host OS for bitness in island spec file but check python version.
This commit is contained in:
parent
05c5b856f0
commit
f767482513
|
@ -47,7 +47,7 @@ def is_windows():
|
||||||
|
|
||||||
|
|
||||||
def is_32_bit():
|
def is_32_bit():
|
||||||
return platform.architecture()[0] == "32bit"
|
return sys.maxsize <= 2**32
|
||||||
|
|
||||||
|
|
||||||
def process_datas(orig_datas):
|
def process_datas(orig_datas):
|
||||||
|
|
Loading…
Reference in New Issue