Skip to content

Commit f1d87ae

Browse files
committed
Revert "Change cross host from i686-w64-mingw32 to x86_64-w64-mingw32"
This reverts commit 7ccac01. Silly me, I just installed the wrong tools. x86_64 can't yet be used for cross compiling, see rake-compiler/rake-compiler#95.
1 parent 72aade3 commit f1d87ae

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ext/win.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
SET(CMAKE_SYSTEM_NAME Windows)
22

3-
SET(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc)
4-
SET(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++)
5-
SET(CMAKE_RC_COMPILER x86_64-w64-mingw32-windres)
3+
SET(CMAKE_C_COMPILER i686-w64-mingw32-gcc)
4+
SET(CMAKE_CXX_COMPILER i686-w64-mingw32-g++)
5+
SET(CMAKE_RC_COMPILER i686-w64-mingw32-windres)

tasks/ext.rake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Extension tasks and cross-compiling
22

3-
host = 'x86_64-w64-mingw32'
3+
host = 'i686-w64-mingw32'
44
plat = 'x86-mingw32'
55

66
tmp = "#{Dir.pwd}/tmp/#{plat}"

0 commit comments

Comments
 (0)