
A CMake change included in CMake 4.0 makes `AIX` into a variable
(similar to `APPLE`, etc.)
ff03db6657
However, `${CMAKE_SYSTEM_NAME}` unfortunately also expands exactly to
`AIX` and `if` auto-expands variable names in CMake. That means you get
a double expansion if you write:
`if (${CMAKE_SYSTEM_NAME} MATCHES "AIX")`
which becomes:
`if (AIX MATCHES "AIX")`
which is as if you wrote:
`if (ON MATCHES "AIX")`
You can prevent this by quoting the expansion of "${CMAKE_SYSTEM_NAME}",
due to policy
[CMP0054](https://cmake.org/cmake/help/latest/policy/CMP0054.html#policy:CMP0054)
which is on by default in 4.0+. Most of the LLVM CMake already does
this, but this PR fixes the remaining cases where we do not.
28 lines
634 B
CMake
28 lines
634 B
CMake
set(FBSDKERNEL_LIBS)
|
|
if(FBSDVMCore_FOUND)
|
|
list(APPEND FBSDKERNEL_LIBS fbsdvmcore)
|
|
endif()
|
|
if("${CMAKE_SYSTEM_NAME}" MATCHES "FreeBSD")
|
|
list(APPEND FBSDKERNEL_LIBS kvm)
|
|
endif()
|
|
|
|
if (NOT FBSDKERNEL_LIBS)
|
|
message(STATUS "Skipping FreeBSDKernel plugin due to missing libfbsdvmcore")
|
|
return()
|
|
endif()
|
|
|
|
add_lldb_library(lldbPluginProcessFreeBSDKernel PLUGIN
|
|
ProcessFreeBSDKernel.cpp
|
|
RegisterContextFreeBSDKernel_arm64.cpp
|
|
RegisterContextFreeBSDKernel_i386.cpp
|
|
RegisterContextFreeBSDKernel_x86_64.cpp
|
|
ThreadFreeBSDKernel.cpp
|
|
|
|
LINK_COMPONENTS
|
|
Support
|
|
LINK_LIBS
|
|
lldbCore
|
|
lldbTarget
|
|
${FBSDKERNEL_LIBS}
|
|
)
|