mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-10 05:07:26 +01:00
dc871beb50
This will fix issue where emulator is used doing: COMMAND ${CMAKE_CROSSCOMPILING_EMULATOR} /path/to/prog arg1 arg2 Prior to this commit, it wasn't working because the following command was used: /bin/sh -c /path/to/prog arg1 arg2
21 lines
759 B
CMake
21 lines
759 B
CMake
set(CMAKE_SYSTEM_NAME Linux)
|
|
set(CMAKE_SYSTEM_VERSION 1)
|
|
set(CMAKE_SYSTEM_PROCESSOR i686)
|
|
|
|
# Setting these is not needed because the -m32 flag is already
|
|
# associated with the ${cross_triple}-gcc wrapper script.
|
|
#set(CMAKE_CXX_COMPILER_ARG1 "-m32")
|
|
#set(CMAKE_C_COMPILER_ARG1 "-m32")
|
|
|
|
set(cross_triple "i686-linux-gnu")
|
|
|
|
set(CMAKE_C_COMPILER /usr/${cross_triple}/bin/${cross_triple}-gcc)
|
|
set(CMAKE_CXX_COMPILER /usr/${cross_triple}/bin/${cross_triple}-g++)
|
|
set(CMAKE_ASM_COMPILER ${CMAKE_C_COMPILER})
|
|
|
|
# Discard path returned by pkg-config and associated with HINTS in module
|
|
# like FindOpenSSL.
|
|
set(CMAKE_IGNORE_PATH /usr/lib/x86_64-linux-gnu/ /usr/lib/x86_64-linux-gnu/lib/)
|
|
|
|
set(CMAKE_CROSSCOMPILING_EMULATOR /usr/${cross_triple}/bin/${cross_triple}-noop)
|