diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2015-08-05 12:46:53 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2015-08-05 12:46:53 +0000 |
commit | ec3af0f94e5eb47d8cc902939d2a7d033581c3d0 (patch) | |
tree | ae90ff4869f49b2d0dddca71f3cf60b21961c29d /lldb/lib/Makefile | |
parent | 43f5c84cfc0b88d2943bdd15a6e508826d923fe6 (diff) | |
download | bcm5719-llvm-ec3af0f94e5eb47d8cc902939d2a7d033581c3d0.tar.gz bcm5719-llvm-ec3af0f94e5eb47d8cc902939d2a7d033581c3d0.zip |
Bug 24332 - Fix the build of lldb under GNU/Linux when using autotools
Reviewers: loladiro, jingham, emaste, zturner, brucem
Subscribers: tberghammer, danalbert, srhines, zturner, lldb-commits
Differential Revision: http://reviews.llvm.org/D11717
llvm-svn: 244039
Diffstat (limited to 'lldb/lib/Makefile')
-rw-r--r-- | lldb/lib/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/lib/Makefile b/lldb/lib/Makefile index f5c343e99cf..26c98c8f440 100644 --- a/lldb/lib/Makefile +++ b/lldb/lib/Makefile @@ -96,7 +96,9 @@ USEDLIBS = lldbAPI.a \ lldbPluginPlatformFreeBSD.a \ lldbPluginPlatformPOSIX.a \ lldbPluginPlatformKalimba.a \ - lldbPluginPlatformAndroid.a + lldbPluginPlatformAndroid.a \ + lldbPluginScriptInterpreterNone.a \ + lldbPluginScriptInterpreterPython.a # Because GCC requires RTTI enabled for lldbCore (see source/Core/Makefile) it is # necessary to also link the clang rewriter libraries so vtable references can |