TheBrokenRail
35e1157df9
Some checks failed
ScriptCraft/pipeline/head There was a failure building this commit
12 lines
271 B
CMake
12 lines
271 B
CMake
set(CMAKE_SYSTEM_NAME Linux)
|
|
set(CMAKE_SYSTEM_PROCESSOR i686)
|
|
|
|
set(BUILD_TARGET "i686-linux-gnu")
|
|
|
|
set(CMAKE_SYSROOT "/usr/${BUILD_TARGET}")
|
|
|
|
set(CMAKE_C_COMPILER clang)
|
|
|
|
add_compile_options(-target ${BUILD_TARGET})
|
|
|
|
add_link_options(-fuse-ld=lld -target ${BUILD_TARGET}) |