mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 17:36:36 +00:00

This PR is in reference to porting LLDB on AIX. Link to discussions on llvm discourse and github: 1. https://discourse.llvm.org/t/port-lldb-to-ibm-aix/80640 2. https://github.com/llvm/llvm-project/issues/101657 The complete changes for porting are present in this draft PR: https://github.com/llvm/llvm-project/pull/102601 Added base files for NativeProcess Support for AIX. Will be adding further support in consequent incremental PR.
27 lines
819 B
CMake
27 lines
819 B
CMake
if (CMAKE_SYSTEM_NAME MATCHES "Linux|Android")
|
|
add_subdirectory(Linux)
|
|
add_subdirectory(POSIX)
|
|
elseif (CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
|
|
add_subdirectory(FreeBSD)
|
|
add_subdirectory(POSIX)
|
|
elseif (CMAKE_SYSTEM_NAME MATCHES "NetBSD")
|
|
add_subdirectory(NetBSD)
|
|
add_subdirectory(POSIX)
|
|
elseif (CMAKE_SYSTEM_NAME MATCHES "AIX")
|
|
add_subdirectory(AIX)
|
|
add_subdirectory(POSIX)
|
|
elseif (CMAKE_SYSTEM_NAME MATCHES "OpenBSD")
|
|
add_subdirectory(POSIX)
|
|
elseif (CMAKE_SYSTEM_NAME MATCHES "Windows")
|
|
add_subdirectory(Windows/Common)
|
|
elseif (CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
|
add_subdirectory(MacOSX-Kernel)
|
|
endif()
|
|
add_subdirectory(scripted)
|
|
add_subdirectory(gdb-remote)
|
|
add_subdirectory(Utility)
|
|
add_subdirectory(elf-core)
|
|
add_subdirectory(mach-core)
|
|
add_subdirectory(minidump)
|
|
add_subdirectory(FreeBSDKernel)
|