diff options
author | Armando Montanez <amontanez@google.com> | 2018-12-03 19:30:52 +0000 |
---|---|---|
committer | Armando Montanez <amontanez@google.com> | 2018-12-03 19:30:52 +0000 |
commit | 1e4b3709bb7d8a67a3382bf1e72364b0a9bd7429 (patch) | |
tree | f7b20de517b562360b7669b670e156d1dbc7875d /llvm/lib/CMakeLists.txt | |
parent | 00f1d76738a50374019a47d30d09ee1829fe4a65 (diff) | |
download | bcm5719-llvm-1e4b3709bb7d8a67a3382bf1e72364b0a9bd7429.tar.gz bcm5719-llvm-1e4b3709bb7d8a67a3382bf1e72364b0a9bd7429.zip |
[llvm-tapi] initial commit, supports ELF text stubs
http://lists.llvm.org/pipermail/llvm-dev/2018-September/126472.html
TextAPI is a library and accompanying tool that allows conversion between binary shared object stubs and textual counterparts. The motivations and uses cases for this are explained thoroughly in the llvm-dev proposal [1]. This initial commit proposes a potential structure for the TAPI library, also including support for reading/writing text-based ELF stubs (.tbe) in addition to preliminary support for reading binary ELF files. The goal for this patch is to ensure the project architecture appropriately welcomes integration of Mach-O stubbing from Apple's TAPI [2].
Added:
- TextAPI library
- .tbe read support
- .tbe write (to raw_ostream) support
[1] http://lists.llvm.org/pipermail/llvm-dev/2018-September/126472.html
[2] https://github.com/ributzka/tapi
Differential Revision: https://reviews.llvm.org/D53051
llvm-svn: 348170
Diffstat (limited to 'llvm/lib/CMakeLists.txt')
-rw-r--r-- | llvm/lib/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CMakeLists.txt b/llvm/lib/CMakeLists.txt index 1f54c611bad..d45dc7c4008 100644 --- a/llvm/lib/CMakeLists.txt +++ b/llvm/lib/CMakeLists.txt @@ -23,6 +23,7 @@ add_subdirectory(AsmParser) add_subdirectory(LineEditor) add_subdirectory(ProfileData) add_subdirectory(Passes) +add_subdirectory(TextAPI) add_subdirectory(ToolDrivers) add_subdirectory(XRay) add_subdirectory(Testing) |