FreeBSD amd64
This commit is contained in:
parent
b996fe1761
commit
c0a5bf9803
2
setup.py
2
setup.py
|
@ -21,7 +21,7 @@ print "Attempting to detect your system information"
|
||||||
if platform.machine() == "i386" or platform.machine() == "i686":
|
if platform.machine() == "i386" or platform.machine() == "i686":
|
||||||
print "32bit x86 system detected"
|
print "32bit x86 system detected"
|
||||||
ARCH = "x86"
|
ARCH = "x86"
|
||||||
elif platform.machine() == "x86_64":
|
elif platform.machine() == "x86_64" or platform.machine() == "amd64":
|
||||||
print "64bit x86_64 system detected"
|
print "64bit x86_64 system detected"
|
||||||
ARCH = "x64"
|
ARCH = "x64"
|
||||||
elif platform.processor() == "powerpc":
|
elif platform.processor() == "powerpc":
|
||||||
|
|
Loading…
Reference in New Issue