From owner-svn-src-projects@FreeBSD.ORG Tue Feb 18 19:58:02 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4385817; Tue, 18 Feb 2014 19:58:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BE7D91D63; Tue, 18 Feb 2014 19:58:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1IJw2jQ019677; Tue, 18 Feb 2014 19:58:02 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1IJw1Gu019670; Tue, 18 Feb 2014 19:58:01 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <201402181958.s1IJw1Gu019670@svn.freebsd.org> From: Ed Maste Date: Tue, 18 Feb 2014 19:58:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r262189 - in projects/lldb-r201577/lib/clang: liblldbAPI liblldbCommands liblldbCore liblldbHostCommon liblldbTarget X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 19:58:03 -0000 Author: emaste Date: Tue Feb 18 19:58:01 2014 New Revision: 262189 URL: http://svnweb.freebsd.org/changeset/base/262189 Log: Update LLDB bmake build for r262187 Sponsored by: DARPA, AFRL Modified: projects/lldb-r201577/lib/clang/liblldbAPI/Makefile projects/lldb-r201577/lib/clang/liblldbCommands/Makefile projects/lldb-r201577/lib/clang/liblldbCore/Makefile projects/lldb-r201577/lib/clang/liblldbHostCommon/Makefile projects/lldb-r201577/lib/clang/liblldbTarget/Makefile Modified: projects/lldb-r201577/lib/clang/liblldbAPI/Makefile ============================================================================== --- projects/lldb-r201577/lib/clang/liblldbAPI/Makefile Tue Feb 18 19:57:00 2014 (r262188) +++ projects/lldb-r201577/lib/clang/liblldbAPI/Makefile Tue Feb 18 19:58:01 2014 (r262189) @@ -25,7 +25,6 @@ SRCS= SBAddress.cpp \ SBFrame.cpp \ SBFunction.cpp \ SBHostOS.cpp \ - SBInputReader.cpp \ SBInstruction.cpp \ SBInstructionList.cpp \ SBLineEntry.cpp \ @@ -34,6 +33,8 @@ SRCS= SBAddress.cpp \ SBModuleSpec.cpp \ SBPlatform.cpp \ SBProcess.cpp \ + SBQueue.cpp \ + SBQueueItem.cpp \ SBSection.cpp \ SBSourceManager.cpp \ SBStream.cpp \ Modified: projects/lldb-r201577/lib/clang/liblldbCommands/Makefile ============================================================================== --- projects/lldb-r201577/lib/clang/liblldbCommands/Makefile Tue Feb 18 19:57:00 2014 (r262188) +++ projects/lldb-r201577/lib/clang/liblldbCommands/Makefile Tue Feb 18 19:58:01 2014 (r262189) @@ -14,6 +14,7 @@ SRCS= CommandCompletions.cpp \ CommandObjectDisassemble.cpp \ CommandObjectExpression.cpp \ CommandObjectFrame.cpp \ + CommandObjectGUI.cpp \ CommandObjectHelp.cpp \ CommandObjectLog.cpp \ CommandObjectMemory.cpp \ Modified: projects/lldb-r201577/lib/clang/liblldbCore/Makefile ============================================================================== --- projects/lldb-r201577/lib/clang/liblldbCore/Makefile Tue Feb 18 19:57:00 2014 (r262188) +++ projects/lldb-r201577/lib/clang/liblldbCore/Makefile Tue Feb 18 19:58:01 2014 (r262189) @@ -32,9 +32,7 @@ SRCS= Address.cpp \ FileLineResolver.cpp \ FileSpecList.cpp \ History.cpp \ - InputReader.cpp \ - InputReaderEZ.cpp \ - InputReaderStack.cpp \ + IOHandler.cpp \ Language.cpp \ Listener.cpp \ Log.cpp \ Modified: projects/lldb-r201577/lib/clang/liblldbHostCommon/Makefile ============================================================================== --- projects/lldb-r201577/lib/clang/liblldbHostCommon/Makefile Tue Feb 18 19:57:00 2014 (r262188) +++ projects/lldb-r201577/lib/clang/liblldbHostCommon/Makefile Tue Feb 18 19:58:01 2014 (r262189) @@ -7,6 +7,7 @@ LIB= lldbHostCommon SRCDIR= tools/lldb/source/Host/common SRCS= Condition.cpp \ DynamicLibrary.cpp \ + Editline.cpp \ File.cpp \ FileSpec.cpp \ Host.cpp \ Modified: projects/lldb-r201577/lib/clang/liblldbTarget/Makefile ============================================================================== --- projects/lldb-r201577/lib/clang/liblldbTarget/Makefile Tue Feb 18 19:57:00 2014 (r262188) +++ projects/lldb-r201577/lib/clang/liblldbTarget/Makefile Tue Feb 18 19:58:01 2014 (r262189) @@ -17,7 +17,11 @@ SRCS= ABI.cpp \ PathMappingList.cpp \ Platform.cpp \ Process.cpp \ + Queue.cpp \ + QueueItem.cpp \ + QueueList.cpp \ RegisterContext.cpp \ + SectionLoadHistory.cpp \ SectionLoadList.cpp \ StackFrame.cpp \ StackFrameList.cpp \