This commit is contained in:
Vítor Santos Costa 2016-03-30 17:38:11 +01:00
parent 145ad73255
commit 636992781c
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
# toolchain file for building a 32bit version on a 64bit host
# use it like this:
# cmake -DCMAKE_TOOLCHAIN_FILE=osx.toolchain.cmake <sourcedir>
set(CMAKE_SYSTEM_NAME OSX)
set(CMAKE_SYSTEM_VERSION 1)
set(CMAKE_SYSTEM_PROCESSOR "i686")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -m32" CACHE STRING "c++ flags")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -m32" CACHE STRING "c flags")