mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
[CMAKE] Fix compiling i386 targets via x64 clang-cl
This commit is contained in:
parent
97ea95c80c
commit
7215e542b1
1 changed files with 3 additions and 0 deletions
|
@ -39,6 +39,9 @@ if(USE_CLANG_CL)
|
|||
set(CMAKE_C_COMPILER_TARGET "arm64-pc-windows-msvc")
|
||||
set(CMAKE_CXX_COMPILER_TARGET "arm64-pc-windows-msvc")
|
||||
else()
|
||||
# -m32 is required for x64 clang-cl to operate in x86 Native Tools environment
|
||||
set(CMAKE_C_FLAGS "-m32")
|
||||
set(CMAKE_CXX_FLAGS "-m32")
|
||||
set(CMAKE_C_COMPILER_TARGET "i686-pc-windows-msvc")
|
||||
set(CMAKE_CXX_COMPILER_TARGET "i686-pc-windows-msvc")
|
||||
endif()
|
||||
|
|
Loading…
Reference in a new issue