2020-04-22 23:15:05 +08:00
|
|
|
cmake_minimum_required(VERSION 3.13.4)
|
2015-07-17 23:50:48 +08:00
|
|
|
|
2019-02-18 18:09:29 +08:00
|
|
|
if(POLICY CMP0075)
|
|
|
|
cmake_policy(SET CMP0075 NEW)
|
|
|
|
endif()
|
|
|
|
|
2020-10-17 14:02:50 +08:00
|
|
|
if(POLICY CMP0077)
|
|
|
|
cmake_policy(SET CMP0077 NEW)
|
|
|
|
endif()
|
|
|
|
|
2019-05-22 21:23:15 +08:00
|
|
|
# Add path for custom modules.
|
2017-04-28 00:04:26 +08:00
|
|
|
set(CMAKE_MODULE_PATH
|
|
|
|
${CMAKE_MODULE_PATH}
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake"
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules"
|
|
|
|
)
|
|
|
|
|
2019-07-18 00:47:02 +08:00
|
|
|
# If we are not building as part of LLVM, build LLDB as a standalone project,
|
|
|
|
# using LLVM as an external library.
|
|
|
|
if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
|
2019-07-30 07:09:31 +08:00
|
|
|
project(lldb)
|
2019-07-18 00:47:02 +08:00
|
|
|
include(LLDBStandalone)
|
2019-10-29 23:24:10 +08:00
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 14 CACHE STRING "C++ standard to conform to")
|
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED YES)
|
|
|
|
set(CMAKE_CXX_EXTENSIONS NO)
|
2019-07-18 00:47:02 +08:00
|
|
|
endif()
|
|
|
|
|
2017-04-28 00:04:26 +08:00
|
|
|
include(LLDBConfig)
|
|
|
|
include(AddLLDB)
|
2014-05-29 01:06:04 +08:00
|
|
|
|
2019-05-22 21:23:15 +08:00
|
|
|
# Define the LLDB_CONFIGURATION_xxx matching the build type.
|
2020-08-11 13:45:23 +08:00
|
|
|
if(uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" )
|
|
|
|
add_definitions(-DLLDB_CONFIGURATION_DEBUG)
|
2017-07-28 23:39:50 +08:00
|
|
|
endif()
|
|
|
|
|
2019-02-12 08:30:21 +08:00
|
|
|
if (WIN32)
|
|
|
|
add_definitions(-D_ENABLE_EXTENDED_ALIGNED_STORAGE)
|
|
|
|
endif()
|
|
|
|
|
2019-12-14 02:37:33 +08:00
|
|
|
if (LLDB_ENABLE_PYTHON)
|
2019-10-08 07:49:01 +08:00
|
|
|
execute_process(
|
2020-08-17 23:47:52 +08:00
|
|
|
COMMAND ${Python3_EXECUTABLE}
|
2019-10-16 03:24:37 +08:00
|
|
|
-c "import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(True, False, ''))"
|
2019-10-08 07:49:01 +08:00
|
|
|
OUTPUT_VARIABLE LLDB_PYTHON_DEFAULT_RELATIVE_PATH
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
|
|
|
|
|
|
file(TO_CMAKE_PATH ${LLDB_PYTHON_DEFAULT_RELATIVE_PATH} LLDB_PYTHON_DEFAULT_RELATIVE_PATH)
|
|
|
|
set(LLDB_PYTHON_RELATIVE_PATH ${LLDB_PYTHON_DEFAULT_RELATIVE_PATH}
|
|
|
|
CACHE STRING "Path where Python modules are installed, relative to install prefix")
|
2014-07-04 14:43:47 +08:00
|
|
|
endif ()
|
[lldb] Let table gen create command option initializers.
Summary:
We currently have man large arrays containing initializers for our command options.
These tables are tricky maintain as we don't have any good place to check them for consistency and
it's also hard to read (`nullptr, {}, 0` is not very descriptive).
This patch fixes this by letting table gen generate those tables. This way we can have a more readable
syntax for this (especially for all the default arguments) and we can let TableCheck check them
for consistency (e.g. an option with an optional argument can't have `eArgTypeNone`, naming of flags', etc.).
Also refactoring the related data structures can now be done without changing the hundred of option initializers.
For example, this line:
```
{LLDB_OPT_SET_ALL, false, "hide-aliases", 'a', OptionParser::eNoArgument, nullptr, {}, 0, eArgTypeNone, "Hide aliases in the command list."},
```
becomes this:
```
def hide_aliases : Option<"hide-aliases", "a">, Desc<"Hide aliases in the command list.">;
```
For now I just moved a few initializers to the new format to demonstrate the change. I'll slowly migrate the other
option initializers tables in separate patches.
Reviewers: JDevlieghere, davide, sgraenitz
Reviewed By: JDevlieghere
Subscribers: jingham, xiaobai, labath, mgorny, abidh, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D64365
llvm-svn: 365908
2019-07-12 23:30:55 +08:00
|
|
|
|
2019-12-22 16:01:09 +08:00
|
|
|
if (LLDB_ENABLE_PYTHON OR LLDB_ENABLE_LUA)
|
2020-01-09 23:57:59 +08:00
|
|
|
add_subdirectory(bindings)
|
2019-12-22 16:01:09 +08:00
|
|
|
endif ()
|
2019-12-09 07:32:57 +08:00
|
|
|
|
[lldb] Let LLDB depend on intrinsics_gen to fix non-deterministic module build failures
Summary:
When building with modules we currently fail randomly to build LLDB's modules and get error messages like below:
```
In file included from <module-includes>:1:
In file included from llvm-project/llvm/include/llvm/IR/Argument.h:18:
llvm-project/llvm/include/llvm/IR/Attributes.h:74:14: fatal error: 'llvm/IR/Attributes.inc' file not found
#include "llvm/IR/Attributes.inc"
^~~~~~~~~~~~~~~~~~~~~~~~
...
In file included from llvm-project/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp:9:
llvm-project/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h:12:10: fatal error: could not build module 'lldb_Wrapper'
```
The reason for this is that our source files can include Clang headers which in turn include files like Attributes.inc which
are generated by intrinsics_gen. However, it seems Clang can't express this dependency in its CMake code, so intrinsics_gen
is actually not guaranteed to be built before we start parsing LLDB source files and Clang headers. Clang worked around this
by letting all libraries depend on intrinsics_gen, which at least lets their builds pass.
As I haven't figured out how to solve these dependencies properly and I want to get the LLDB+Modules build green,
I suggest we copy Clang's hack until we figure out how to get Clang's dependencies right.
Reviewers: sgraenitz, aprantl, JDevlieghere
Reviewed By: JDevlieghere
Subscribers: mgorny, javed.absar, kristof.beyls, mgrang, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D66208
llvm-svn: 368975
2019-08-15 15:29:53 +08:00
|
|
|
# We need the headers generated by instrinsics_gen before we can compile
|
|
|
|
# any source file in LLDB as the imported Clang modules might include
|
|
|
|
# some of these generated headers. This approach is copied from Clang's main
|
|
|
|
# CMakeLists.txt, so it should kept in sync the code in Clang which was added
|
|
|
|
# in llvm-svn 308844.
|
2020-07-18 07:43:05 +08:00
|
|
|
if(LLVM_ENABLE_MODULES)
|
[lldb] Let LLDB depend on intrinsics_gen to fix non-deterministic module build failures
Summary:
When building with modules we currently fail randomly to build LLDB's modules and get error messages like below:
```
In file included from <module-includes>:1:
In file included from llvm-project/llvm/include/llvm/IR/Argument.h:18:
llvm-project/llvm/include/llvm/IR/Attributes.h:74:14: fatal error: 'llvm/IR/Attributes.inc' file not found
#include "llvm/IR/Attributes.inc"
^~~~~~~~~~~~~~~~~~~~~~~~
...
In file included from llvm-project/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp:9:
llvm-project/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h:12:10: fatal error: could not build module 'lldb_Wrapper'
```
The reason for this is that our source files can include Clang headers which in turn include files like Attributes.inc which
are generated by intrinsics_gen. However, it seems Clang can't express this dependency in its CMake code, so intrinsics_gen
is actually not guaranteed to be built before we start parsing LLDB source files and Clang headers. Clang worked around this
by letting all libraries depend on intrinsics_gen, which at least lets their builds pass.
As I haven't figured out how to solve these dependencies properly and I want to get the LLDB+Modules build green,
I suggest we copy Clang's hack until we figure out how to get Clang's dependencies right.
Reviewers: sgraenitz, aprantl, JDevlieghere
Reviewed By: JDevlieghere
Subscribers: mgorny, javed.absar, kristof.beyls, mgrang, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D66208
llvm-svn: 368975
2019-08-15 15:29:53 +08:00
|
|
|
list(APPEND LLVM_COMMON_DEPENDS intrinsics_gen)
|
|
|
|
endif()
|
|
|
|
|
2019-07-18 08:21:57 +08:00
|
|
|
if(CMAKE_CROSSCOMPILING AND LLDB_BUILT_STANDALONE)
|
|
|
|
set(LLVM_USE_HOST_TOOLS ON)
|
|
|
|
include(CrossCompile)
|
2019-07-19 07:40:23 +08:00
|
|
|
if (NOT NATIVE_LLVM_DIR OR NOT NATIVE_Clang_DIR)
|
2019-07-18 08:21:57 +08:00
|
|
|
message(FATAL_ERROR
|
2019-07-19 07:40:23 +08:00
|
|
|
"Crosscompiling standalone requires the variables NATIVE_{CLANG,LLVM}_DIR
|
2019-07-18 08:21:57 +08:00
|
|
|
for building the native lldb-tblgen used during the build process.")
|
|
|
|
endif()
|
|
|
|
llvm_create_cross_target(lldb NATIVE "" Release
|
2019-07-19 07:40:23 +08:00
|
|
|
-DLLVM_DIR=${NATIVE_LLVM_DIR}
|
|
|
|
-DClang_DIR=${NATIVE_Clang_DIR})
|
2019-07-18 08:21:57 +08:00
|
|
|
endif()
|
|
|
|
|
2019-07-27 02:14:04 +08:00
|
|
|
# TableGen
|
[lldb] Let table gen create command option initializers.
Summary:
We currently have man large arrays containing initializers for our command options.
These tables are tricky maintain as we don't have any good place to check them for consistency and
it's also hard to read (`nullptr, {}, 0` is not very descriptive).
This patch fixes this by letting table gen generate those tables. This way we can have a more readable
syntax for this (especially for all the default arguments) and we can let TableCheck check them
for consistency (e.g. an option with an optional argument can't have `eArgTypeNone`, naming of flags', etc.).
Also refactoring the related data structures can now be done without changing the hundred of option initializers.
For example, this line:
```
{LLDB_OPT_SET_ALL, false, "hide-aliases", 'a', OptionParser::eNoArgument, nullptr, {}, 0, eArgTypeNone, "Hide aliases in the command list."},
```
becomes this:
```
def hide_aliases : Option<"hide-aliases", "a">, Desc<"Hide aliases in the command list.">;
```
For now I just moved a few initializers to the new format to demonstrate the change. I'll slowly migrate the other
option initializers tables in separate patches.
Reviewers: JDevlieghere, davide, sgraenitz
Reviewed By: JDevlieghere
Subscribers: jingham, xiaobai, labath, mgorny, abidh, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D64365
llvm-svn: 365908
2019-07-12 23:30:55 +08:00
|
|
|
add_subdirectory(utils/TableGen)
|
2019-07-27 02:14:04 +08:00
|
|
|
|
2013-09-25 18:37:32 +08:00
|
|
|
add_subdirectory(source)
|
|
|
|
add_subdirectory(tools)
|
2019-04-30 00:29:10 +08:00
|
|
|
add_subdirectory(docs)
|
2017-10-07 06:21:36 +08:00
|
|
|
|
2020-08-11 23:43:44 +08:00
|
|
|
if (LLDB_ENABLE_PYTHON)
|
2020-07-30 08:56:38 +08:00
|
|
|
if(LLDB_BUILD_FRAMEWORK)
|
|
|
|
set(lldb_python_target_dir "${LLDB_FRAMEWORK_ABSOLUTE_BUILD_DIR}/LLDB.framework/Resources/Python/lldb")
|
|
|
|
else()
|
|
|
|
set(lldb_python_target_dir "${CMAKE_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${LLDB_PYTHON_RELATIVE_PATH}/lldb")
|
|
|
|
endif()
|
2020-08-11 23:43:44 +08:00
|
|
|
get_target_property(lldb_python_bindings_dir swig_wrapper_python BINARY_DIR)
|
2020-08-23 02:53:08 +08:00
|
|
|
finish_swig_python("lldb-python" "${lldb_python_bindings_dir}" "${lldb_python_target_dir}")
|
2020-07-30 08:56:38 +08:00
|
|
|
endif()
|
|
|
|
|
2019-01-12 02:11:04 +08:00
|
|
|
option(LLDB_INCLUDE_TESTS "Generate build targets for the LLDB unit tests." ${LLVM_INCLUDE_TESTS})
|
2017-10-07 06:21:36 +08:00
|
|
|
if(LLDB_INCLUDE_TESTS)
|
|
|
|
add_subdirectory(test)
|
|
|
|
add_subdirectory(unittests)
|
2020-01-17 14:30:03 +08:00
|
|
|
add_subdirectory(utils)
|
2017-10-07 06:21:36 +08:00
|
|
|
endif()
|
2015-02-18 06:20:29 +08:00
|
|
|
|
2019-07-19 00:44:45 +08:00
|
|
|
if(LLDB_BUILT_STANDALONE AND NOT LLVM_ENABLE_IDE)
|
2019-07-10 19:09:11 +08:00
|
|
|
llvm_distribution_add_targets()
|
|
|
|
endif()
|