mirror of
https://github.com/bensuperpc/dockcross.git
synced 2025-06-21 10:23:34 +02:00
linux-x86: Add toolchain file and install libc6 and stdc++6 32-bit libraries
This commit is contained in:
20
linux-x86/Toolchain.cmake
Normal file
20
linux-x86/Toolchain.cmake
Normal file
@ -0,0 +1,20 @@
|
||||
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})
|
||||
set(CMAKE_AR /usr/${cross_triple}/bin/${cross_triple}-ar)
|
||||
|
||||
# Prevent 64-bit libraries from being discovered
|
||||
set(CMAKE_IGNORE_PATH /usr/lib/x86_64-linux-gnu/ /usr/lib/x86_64-linux-gnu/lib/)
|
||||
|
||||
set(CMAKE_CROSSCOMPILING_EMULATOR sh -c)
|
Reference in New Issue
Block a user