diff options
author | Daniel Malea <daniel.malea@intel.com> | 2013-02-21 20:58:22 +0000 |
---|---|---|
committer | Daniel Malea <daniel.malea@intel.com> | 2013-02-21 20:58:22 +0000 |
commit | 23720cc66c3b639b2c4c1399e9f994dc14c5814b (patch) | |
tree | 904469f24f59c6d7f5a191cec2e5cf1dd3a0d24e /lldb/source/Plugins/ObjectFile/ELF/CMakeLists.txt | |
parent | f4be227dc66c412dc54342848b666ef0c376bd8d (diff) | |
download | bcm5719-llvm-23720cc66c3b639b2c4c1399e9f994dc14c5814b.tar.gz bcm5719-llvm-23720cc66c3b639b2c4c1399e9f994dc14c5814b.zip |
Adding CMake build system to LLDB. Some known issues remain:
- generate-vers.pl has to be called by cmake to generate the version number
- parallel builds not yet supported; dependency on clang must be explicitly specified
Tested on Linux.
- Building on Mac will require code-signing logic to be implemented.
- Building on Windows will require OS-detection logic and some selective directory inclusion
Thanks to Carlo Kok (who originally prepared these CMakefiles for Windows) and Ben Langmuir
who ported them to Linux!
llvm-svn: 175795
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/ELF/CMakeLists.txt')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/ELF/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/source/Plugins/ObjectFile/ELF/CMakeLists.txt b/lldb/source/Plugins/ObjectFile/ELF/CMakeLists.txt new file mode 100644 index 00000000000..073c47e1a8a --- /dev/null +++ b/lldb/source/Plugins/ObjectFile/ELF/CMakeLists.txt @@ -0,0 +1,6 @@ +set(LLVM_NO_RTTI 1)
+
+add_lldb_library(lldbPluginObjectFileELF
+ ELFHeader.cpp
+ ObjectFileELF.cpp
+ )
|