diff options
author | Anders Waldenborg <anders@0x63.nu> | 2013-10-15 12:08:59 +0000 |
---|---|---|
committer | Anders Waldenborg <anders@0x63.nu> | 2013-10-15 12:08:59 +0000 |
commit | 1d9cb434b3ff6942ab9d1e1992f65481346e16ab (patch) | |
tree | f2ba11edbaceddf1ce15a052ea997c2dc0863ae0 /llvm/lib/Target/CMakeLists.txt | |
parent | 14b9924c7bfa23a3cbe3b5fc33b7f28bba3f4822 (diff) | |
download | bcm5719-llvm-1d9cb434b3ff6942ab9d1e1992f65481346e16ab.tar.gz bcm5719-llvm-1d9cb434b3ff6942ab9d1e1992f65481346e16ab.zip |
Add AllTargetsBindings sublibrary instead of having static inlines in the llvm-c headers.
This new library will be linked in when using the "all-targets"
component and contains the LLVMInitializeAll* functions.
This means that those functions will exist as real symbols in
the shared library, and can therefore can be called from
bindings that are using ffi the shared library.
llvm-svn: 192690
Diffstat (limited to 'llvm/lib/Target/CMakeLists.txt')
-rw-r--r-- | llvm/lib/Target/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/CMakeLists.txt b/llvm/lib/Target/CMakeLists.txt index 02ac493b421..861c999c6bb 100644 --- a/llvm/lib/Target/CMakeLists.txt +++ b/llvm/lib/Target/CMakeLists.txt @@ -14,3 +14,5 @@ foreach(t ${LLVM_TARGETS_TO_BUILD}) message(STATUS "Targeting ${t}") add_subdirectory(${t}) endforeach() + +add_subdirectory("AllTargetsBindings") |