FreeBSD amd64

This commit is contained in:
Zach Tibbitts 2007-03-28 22:45:25 +00:00
parent b996fe1761
commit c0a5bf9803
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ print "Attempting to detect your system information"
if platform.machine() == "i386" or platform.machine() == "i686":
print "32bit x86 system detected"
ARCH = "x86"
elif platform.machine() == "x86_64":
elif platform.machine() == "x86_64" or platform.machine() == "amd64":
print "64bit x86_64 system detected"
ARCH = "x64"
elif platform.processor() == "powerpc":