mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
9f7426ca16
- Build targeting 32-bit with travis - Code in `before_install`/`after_success` was moved to travis.sh since it provides greater flexibility for detecting the build matrix environment. This improves the build speed since we now install only what's necessary. - Now clint has a dedicated travis worker
6 lines
152 B
CMake
6 lines
152 B
CMake
set(CMAKE_SYSTEM_PROCESSOR i386)
|
|
set(CMAKE_SYSTEM_NAME Linux)
|
|
set(CMAKE_SYSTEM_VERSION gnu)
|
|
set(CMAKE_C_COMPILER gcc)
|
|
set(CMAKE_C_COMPILER_ARG1 "-m32")
|