forked from rebolsource/r3
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support cross-compiling for windows using cmake
When building with TCC, it needs to be a cross-compiler, and present as ${CMAKE_CURRENT_BINARY_DIR}/cross-tcc To compile for 64-bit windows: $mkdir build $cd build $cmake ../make -DR3_OS_ID=0.3.40 -DCMAKE_TOOLCHAIN_FILE=../make/Toolchain-cross-mingw64-linux.cmake
- Loading branch information
Showing
5 changed files
with
118 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule libffi
updated
from d6aad9 to 0a2287
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# the name of the target operating system | ||
SET(CMAKE_SYSTEM_NAME Windows) | ||
SET(CMAKE_SYSTEM_PROCESSOR "X86") | ||
|
||
# Choose an appropriate compiler prefix | ||
|
||
# for classical mingw32 | ||
# see http://www.mingw.org/ | ||
#set(COMPILER_PREFIX "i586-mingw32msvc") | ||
|
||
# for 32 or 64 bits mingw-w64 | ||
# see http://mingw-w64.sourceforge.net/ | ||
set(COMPILER_PREFIX "i686-w64-mingw32") | ||
|
||
# which compilers to use for C and C++ | ||
find_program(CMAKE_RC_COMPILER NAMES ${COMPILER_PREFIX}-windres) | ||
find_program(CMAKE_C_COMPILER NAMES ${COMPILER_PREFIX}-gcc) | ||
find_program(CMAKE_CXX_COMPILER NAMES ${COMPILER_PREFIX}-g++) | ||
|
||
|
||
# here is the target environment located | ||
SET(CMAKE_FIND_ROOT_PATH /usr/${COMPILER_PREFIX} ${USER_ROOT_PATH}) | ||
|
||
# adjust the default behaviour of the FIND_XXX() commands: | ||
# search headers and libraries in the target environment, search | ||
# programs in the host environment | ||
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) | ||
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) | ||
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# the name of the target operating system | ||
SET(CMAKE_SYSTEM_NAME Windows) | ||
SET(CMAKE_SYSTEM_PROCESSOR "x86_64") | ||
|
||
# Choose an appropriate compiler prefix | ||
|
||
# for classical mingw32 | ||
# see http://www.mingw.org/ | ||
#set(COMPILER_PREFIX "i586-mingw32msvc") | ||
|
||
# for 32 or 64 bits mingw-w64 | ||
# see http://mingw-w64.sourceforge.net/ | ||
set(COMPILER_PREFIX "x86_64-w64-mingw32") | ||
|
||
# which compilers to use for C and C++ | ||
find_program(CMAKE_RC_COMPILER NAMES ${COMPILER_PREFIX}-windres) | ||
find_program(CMAKE_C_COMPILER NAMES ${COMPILER_PREFIX}-gcc) | ||
find_program(CMAKE_CXX_COMPILER NAMES ${COMPILER_PREFIX}-g++) | ||
|
||
SET(CMAKE_FIND_ROOT_PATH /usr/${COMPILER_PREFIX} ${USER_ROOT_PATH}) | ||
|
||
# adjust the default behaviour of the FIND_XXX() commands: | ||
# search headers and libraries in the target environment, search | ||
# programs in the host environment | ||
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) | ||
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) | ||
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) |