diff options
| author | Todd Fiala <todd.fiala@gmail.com> | 2016-10-29 00:29:15 +0000 |
|---|---|---|
| committer | Todd Fiala <todd.fiala@gmail.com> | 2016-10-29 00:29:15 +0000 |
| commit | fe68f0997517dd930fc496a58b0d3452cb57b094 (patch) | |
| tree | f9ca921d73a372d71af1e91e6c263791fb4fd5fc /lldb/source/API/liblldb-private.exports | |
| parent | 5b2243e8840b5cac1a9b0068b1cfbef15067af3a (diff) | |
| download | bcm5719-llvm-fe68f0997517dd930fc496a58b0d3452cb57b094.tar.gz bcm5719-llvm-fe68f0997517dd930fc496a58b0d3452cb57b094.zip | |
Limit LLDB_EXPORT_ALL_SYMBOLS to lldb symbols
LLDB_EXPORT_ALL_SYMBOLS used to instruct the build to export all
the symbols in liblldb on CMake builds. This change limits the
CMake define to only add in the lldb_private namespace to the
symbols that normally get exported, such that we export all the
symbols in the public lldb namespace and the lldb_private namespace.
This is a fix for:
https://llvm.org/bugs/show_bug.cgi?id=30822
Reviewers: labath, beanz
Subscribers: lldb-commits
Differential Revision: https://reviews.llvm.org/D26093
llvm-svn: 285484
Diffstat (limited to 'lldb/source/API/liblldb-private.exports')
| -rw-r--r-- | lldb/source/API/liblldb-private.exports | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/source/API/liblldb-private.exports b/lldb/source/API/liblldb-private.exports new file mode 100644 index 00000000000..9b3d86dfc89 --- /dev/null +++ b/lldb/source/API/liblldb-private.exports @@ -0,0 +1,6 @@ +_ZN4lldb* +_ZNK4lldb* +_ZN12lldb_private* +_ZNK12lldb_private* +init_lld* +PyInit__lldb* |

