diff options
author | Filipe Cabecinhas <me@filcab.net> | 2013-01-30 00:28:58 +0000 |
---|---|---|
committer | Filipe Cabecinhas <me@filcab.net> | 2013-01-30 00:28:58 +0000 |
commit | 8bc65347010a6204b3cf169870a2ed2a4adbb166 (patch) | |
tree | 6143689630d33979b3d3af831f8530add890913f | |
parent | 4385564e975cdc7d49bd1d3f962b04f73616847a (diff) | |
download | bcm5719-llvm-8bc65347010a6204b3cf169870a2ed2a4adbb166.tar.gz bcm5719-llvm-8bc65347010a6204b3cf169870a2ed2a4adbb166.zip |
Continuing the fix for the r173732 fix. Now lldb gets built with Makefiles (Darwin).
llvm-svn: 173864
-rw-r--r-- | lldb/lib/Makefile | 1 | ||||
-rw-r--r-- | lldb/source/DataFormatters/Makefile | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lldb/lib/Makefile b/lldb/lib/Makefile index b6a9e71433d..be6af0a6780 100644 --- a/lldb/lib/Makefile +++ b/lldb/lib/Makefile @@ -24,6 +24,7 @@ USEDLIBS = lldbAPI.a \ lldbBreakpoint.a \ lldbCommands.a \ lldbCore.a \ + lldbDataFormatters.a \ lldbExpression.a \ lldbHostCommon.a \ lldbInitAndLog.a \ diff --git a/lldb/source/DataFormatters/Makefile b/lldb/source/DataFormatters/Makefile index a2e7a0d65c2..465f889f48e 100644 --- a/lldb/source/DataFormatters/Makefile +++ b/lldb/source/DataFormatters/Makefile @@ -8,7 +8,7 @@ ##===----------------------------------------------------------------------===## LLDB_LEVEL := ../.. -LIBRARYNAME := lldbCore +LIBRARYNAME := lldbDataFormatters BUILD_ARCHIVE = 1 # Enable RTTI on GCC builds because one source file in this directory |