Skip to content

Commit e397bc9

Browse files
committed
detect incorrect Python word size (e.g. #377)
1 parent cc00c47 commit e397bc9

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

deps/build.jl

+8
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,14 @@ const python = try
151151
error("Python version $vers < 2.7 is not supported")
152152
end
153153
end
154+
155+
# check word size of Python via sys.maxsize, since a common error
156+
# on Windows is to link a 64-bit Julia to a 32-bit Python.
157+
pywordsize = parse(UInt64, pysys(py, "maxsize")) > (UInt64(1)<<32) ? 64 : 32
158+
if pywordsize != Sys.WORD_SIZE
159+
error("$py is $(pywordsize)-bit, but Julia is $(Sys.WORD_SIZE)-bit")
160+
end
161+
154162
py
155163
end
156164
catch e1

0 commit comments

Comments
 (0)