Commit 6b4ed0fa authored by Alexandre Julliard's avatar Alexandre Julliard

configure: Don't force a 32-bit build when cross-compiling.

parent 8cf8e2c6
......@@ -3804,7 +3804,7 @@ fi
case $host in
x86_64*)
if test "x$enable_win64" != "xyes"
if test "x$enable_win64" != "xyes" -a "$cross_compiling" != "yes"
then
CC="$CC -m32"
CXX="$CXX -m32"
......
......@@ -101,7 +101,7 @@ AC_CHECK_TOOL(CPPBIN,cpp,cpp)
case $host in
x86_64*)
if test "x$enable_win64" != "xyes"
if test "x$enable_win64" != "xyes" -a "$cross_compiling" != "yes"
then
CC="$CC -m32"
CXX="$CXX -m32"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment