[Lldb-commits] [PATCH] D12925: [cmake] Build lldb-server on Darwin, set dep on FreeBSD.

2015-09-17 Thread Bruce Mitchener via lldb-commits
brucem created this revision. brucem added reviewers: labath, emaste, tfiala. brucem added a subscriber: lldb-commits. This switches the decision as to whether or not to lldb-server should be built to check the same flag that was added that controls whether or not it is added as a dependency to th

Re: [Lldb-commits] [PATCH] D12925: [cmake] Build lldb-server on Darwin, set dep on FreeBSD.

2015-09-17 Thread Bruce Mitchener via lldb-commits
brucem added a comment. This should also address https://llvm.org/bugs/show_bug.cgi?id=24843 as reported by tfiala. http://reviews.llvm.org/D12925 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listi

Re: [Lldb-commits] [PATCH] D12115: [LLDB-MI] Fix -data-info-line and -symbol-list-lines when Windows filenames are used.

2015-09-17 Thread Ilia K via lldb-commits
ki.stfu accepted this revision. ki.stfu added a comment. lgtm Repository: rL LLVM http://reviews.llvm.org/D12115 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Re: [Lldb-commits] [PATCH] D12925: [cmake] Build lldb-server on Darwin, set dep on FreeBSD.

2015-09-17 Thread Pavel Labath via lldb-commits
labath resigned from this revision. labath removed a reviewer: labath. labath added a comment. looks good to me, but i'll let others decide whether they want that http://reviews.llvm.org/D12925 ___ lldb-commits mailing list lldb-commits@lists.llvm.o

[Lldb-commits] [lldb] r247877 - Remove XTIMEOUT from TestAttachDenied on linux

2015-09-17 Thread Pavel Labath via lldb-commits
Author: labath Date: Thu Sep 17 04:24:44 2015 New Revision: 247877 URL: http://llvm.org/viewvc/llvm-project?rev=247877&view=rev Log: Remove XTIMEOUT from TestAttachDenied on linux Modified: lldb/trunk/test/dosep.py Modified: lldb/trunk/test/dosep.py URL: http://llvm.org/viewvc/llvm-project/

[Lldb-commits] [lldb] r247879 - XFAIL step after crash tests on android-aarch64 API 21

2015-09-17 Thread Tamas Berghammer via lldb-commits
Author: tberghammer Date: Thu Sep 17 05:05:21 2015 New Revision: 247879 URL: http://llvm.org/viewvc/llvm-project?rev=247879&view=rev Log: XFAIL step after crash tests on android-aarch64 API 21 Android-aarch64 for API21 uses sa_restore to return from a signal handler what have no eh_frame specifie

[Lldb-commits] [PATCH] D12930: DataFormatters: Rename clang_type to compiler_type.

2015-09-17 Thread Bruce Mitchener via lldb-commits
brucem created this revision. brucem added a reviewer: granata.enrico. brucem added a subscriber: lldb-commits. http://reviews.llvm.org/D12930 Files: include/lldb/DataFormatters/FormatManager.h include/lldb/DataFormatters/ValueObjectPrinter.h source/DataFormatters/FormatManager.cpp source

[Lldb-commits] [PATCH] D12929: Remove unused includes from clang in DataFormatters.

2015-09-17 Thread Bruce Mitchener via lldb-commits
brucem created this revision. brucem added a reviewer: granata.enrico. brucem added a subscriber: lldb-commits. http://reviews.llvm.org/D12929 Files: include/lldb/DataFormatters/FormattersContainer.h Index: include/lldb/DataFormatters/FormattersContainer.h =

Re: [Lldb-commits] [PATCH] D12757: Fix prologue end handling when code compiled by gcc

2015-09-17 Thread Tamas Berghammer via lldb-commits
tberghammer added a comment. I see. Thank you for the clarification Repository: rL LLVM http://reviews.llvm.org/D12757 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Re: [Lldb-commits] [Diffusion] rL245905: Final bit of type system cleanup that abstracts declaration contexts into…

2015-09-17 Thread Tamas Berghammer via lldb-commits
tberghammer added subscribers: lldb-commits, sivachandra. tberghammer added a comment. Hi Greg, This change introduced a regression in expression evaluation. When I try to evaluate any expression in some specific context then lldb prints out the following error: error: out-of-line definition

[Lldb-commits] [PATCH] D12936: Groundwork for better tracking of renderscript allocations and scripts.

2015-09-17 Thread Aidan Dodds via lldb-commits
ADodds created this revision. ADodds added reviewers: clayborg, jingham. ADodds added a subscriber: lldb-commits. ADodds set the repository for this revision to rL LLVM. This patch adds some of the groundwork required for tracking the lifetime of scripts and allocations and collecting data associ

Re: [Lldb-commits] [PATCH] D12925: [cmake] Build lldb-server on Darwin, set dep on FreeBSD.

2015-09-17 Thread Ed Maste via lldb-commits
emaste accepted this revision. emaste added a comment. This revision is now accepted and ready to land. I'm happy with the FreeBSD change. Minor nit, perhaps put in alpha order? http://reviews.llvm.org/D12925 ___ lldb-commits mailing list lldb-commi

Re: [Lldb-commits] [PATCH] D12925: [cmake] Build lldb-server on Darwin, set dep on FreeBSD.

2015-09-17 Thread Bruce Mitchener via lldb-commits
brucem updated this revision to Diff 35002. brucem added a comment. Put in alpha order as emaste suggested. http://reviews.llvm.org/D12925 Files: cmake/modules/LLDBConfig.cmake tools/CMakeLists.txt Index: tools/CMakeLists.txt

Re: [Lldb-commits] [PATCH] D12925: [cmake] Build lldb-server on Darwin, set dep on FreeBSD.

2015-09-17 Thread Todd Fiala via lldb-commits
tfiala accepted this revision. tfiala added a comment. LGTM, thanks Bruce! http://reviews.llvm.org/D12925 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [PATCH] D12940: Add sync-source.py utility to support efficient multi-platform lldb development.

2015-09-17 Thread Todd Fiala via lldb-commits
tfiala created this revision. tfiala added reviewers: clayborg, emaste, spyffe. tfiala added a subscriber: lldb-commits. The sync-source.py utility transfers groups of files between computers. The primary use case is to enable developing LLVM project software on one machine, transfer it efficientl

[Lldb-commits] [lldb] r247899 - [lldb-mi] Fix the handling of files in -data-info-line and -symbol-list-lines.

2015-09-17 Thread Dawn Perchik via lldb-commits
Author: dperchik Date: Thu Sep 17 11:22:30 2015 New Revision: 247899 URL: http://llvm.org/viewvc/llvm-project?rev=247899&view=rev Log: [lldb-mi] Fix the handling of files in -data-info-line and -symbol-list-lines. This fixes -data-info-line and -symbol-list-lines to parse the filename and line co

Re: [Lldb-commits] [PATCH] D12115: [LLDB-MI] Fix -data-info-line and -symbol-list-lines when Windows filenames are used.

2015-09-17 Thread Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL247899: [lldb-mi] Fix the handling of files in -data-info-line and -symbol-list-lines. (authored by dperchik). Changed prior to commit: http://reviews.llvm.org/D12115?vs=34928&id=35010#toc Repository:

Re: [Lldb-commits] [PATCH] D12936: Groundwork for better tracking of renderscript allocations and scripts.

2015-09-17 Thread Greg Clayton via lldb-commits
clayborg accepted this revision. clayborg added a comment. This revision is now accepted and ready to land. A few suggestions to move things over into RenderScriptRuntime.cpp and to possibly use std::unique_ptr, but they are just suggestions. Comment at: source/Plugins/Languag

[Lldb-commits] [lldb] r247903 - Add sync-source.py utility.

2015-09-17 Thread Todd Fiala via lldb-commits
Author: tfiala Date: Thu Sep 17 12:14:31 2015 New Revision: 247903 URL: http://llvm.org/viewvc/llvm-project?rev=247903&view=rev Log: Add sync-source.py utility. See: http://reviews.llvm.org/D12940 for more details. See utils/sync-source/README.txt for documentation and a sample .sync-sourcerc

Re: [Lldb-commits] [PATCH] D12940: Add sync-source.py utility to support efficient multi-platform lldb development.

2015-09-17 Thread Todd Fiala via lldb-commits
tfiala closed this revision. tfiala added a comment. Committed here: Adding utils/sync-source Adding utils/sync-source/README.txt Adding utils/sync-source/lib Adding utils/sync-source/lib/transfer Adding utils/sync-source/lib/transfer/protocol.py

Re: [Lldb-commits] [PATCH] D12929: Remove unused includes from clang in DataFormatters.

2015-09-17 Thread Enrico Granata via lldb-commits
granata.enrico accepted this revision. granata.enrico added a comment. This revision is now accepted and ready to land. I am assuming you built this successfully. If so, then yes please commit, it's a good change! http://reviews.llvm.org/D12929 ___

Re: [Lldb-commits] [PATCH] D12930: DataFormatters: Rename clang_type to compiler_type.

2015-09-17 Thread Enrico Granata via lldb-commits
granata.enrico accepted this revision. granata.enrico added a comment. This revision is now accepted and ready to land. Fine by me http://reviews.llvm.org/D12930 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin

Re: [Lldb-commits] [PATCH] D12115: [LLDB-MI] Fix -data-info-line and -symbol-list-lines when Windows filenames are used.

2015-09-17 Thread Chaoren Lin via lldb-commits
chaoren added a subscriber: chaoren. chaoren added a comment. Could you please take a look at these issues? TestMiSymbol started to fail on Linux with gcc-4.9: http://lab.llvm.org:8011/builders/lldb-x86_64-ubuntu-14.04-cmake/builds/6387 Comment at: lldb/trunk/tools/lldb-mi/MIUt

[Lldb-commits] [PATCH] D12942: Fix caching for clang::Decl in DWARFASTParserClang

2015-09-17 Thread Paul Herman via lldb-commits
paulherman created this revision. paulherman added reviewers: sivachandra, chaoren, tberghammer, clayborg. paulherman added a subscriber: lldb-commits. http://reviews.llvm.org/D12942 Files: source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp Index: source/Plugins/SymbolFile/DWARF/DWARFASTP

Re: [Lldb-commits] [lldb] r247899 - [lldb-mi] Fix the handling of files in -data-info-line and -symbol-list-lines.

2015-09-17 Thread Sean Callanan via lldb-commits
Dawn, this breaks the OS X Xcode build because it can’t find “../lib/Support/regex_impl.h”. I only see that header in llvm/lib, but so far lldb-mi hasn’t had any LLVM dependencies and it doesn’t even have the right header search paths in Xcode. Should we be adding the LLVM headers as search pa

Re: [Lldb-commits] [lldb] r247899 - [lldb-mi] Fix the handling of files in -data-info-line and -symbol-list-lines.

2015-09-17 Thread via lldb-commits
On Thu, Sep 17, 2015 at 10:43:53AM -0700, Sean Callanan wrote: > Dawn, > > this breaks the OS X Xcode build because it can???t find > ???../lib/Support/regex_impl.h???. > I only see that header in llvm/lib, but so far lldb-mi hasn???t had any LLVM > dependencies and it doesn???t even have the ri

Re: [Lldb-commits] [lldb] r247899 - [lldb-mi] Fix the handling of files in -data-info-line and -symbol-list-lines.

2015-09-17 Thread Sean Callanan via lldb-commits
Sure. What about the LLVM libraries – right now after fixing the header issues I’m getting link errors: Undefined symbols for architecture x86_64: "_llvm_regcomp", referenced from: MIUtilParse::CRegexParser::CRegexParser(char const*) in MIUtilParse.o "_llvm_regexec", referenced from:

Re: [Lldb-commits] [lldb] r247899 - [lldb-mi] Fix the handling of files in -data-info-line and -symbol-list-lines.

2015-09-17 Thread via lldb-commits
On Thu, Sep 17, 2015 at 10:49:22AM -0700, Sean Callanan wrote: > Sure. What about the LLVM libraries ??? right now after fixing the header > issues I???m getting link errors: > > Undefined symbols for architecture x86_64: > "_llvm_regcomp", referenced from: > MIUtilParse::CRegexParser::C

Re: [Lldb-commits] [PATCH] D12942: Fix caching for clang::Decl in DWARFASTParserClang

2015-09-17 Thread Paul Herman via lldb-commits
paulherman updated this revision to Diff 35017. paulherman added a comment. Fix caching for clang::Decl in DWARFASTParserClang http://reviews.llvm.org/D12942 Files: source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp Index: source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp

[Lldb-commits] [lldb] r247908 - Fix LLDB RSP client to decode '$O' packets incorrectly

2015-09-17 Thread Dawn Perchik via lldb-commits
Author: dperchik Date: Thu Sep 17 12:55:32 2015 New Revision: 247908 URL: http://llvm.org/viewvc/llvm-project?rev=247908&view=rev Log: Fix LLDB RSP client to decode '$O' packets incorrectly Character with ASCII code 0 is incorrectly treated by LLDB as the end of RSP packet. The left of the debugg

Re: [Lldb-commits] [PATCH] D12942: Fix caching for clang::Decl in DWARFASTParserClang

2015-09-17 Thread Paul Herman via lldb-commits
paulherman updated this revision to Diff 35019. paulherman added a comment. Fix caching for clang::Decl in DWARFASTParserClang Fixed small mistakes from previous commit. http://reviews.llvm.org/D12942 Files: source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp Index: source/Plugins/Symbo

[Lldb-commits] [lldb] r247909 - Updated the Xcode build to reflect lldb-mi's dependency on LLVM.

2015-09-17 Thread Sean Callanan via lldb-commits
Author: spyffe Date: Thu Sep 17 13:03:26 2015 New Revision: 247909 URL: http://llvm.org/viewvc/llvm-project?rev=247909&view=rev Log: Updated the Xcode build to reflect lldb-mi's dependency on LLVM. Modified: lldb/trunk/lldb.xcodeproj/project.pbxproj Modified: lldb/trunk/lldb.xcodeproj/projec

Re: [Lldb-commits] [lldb] r247899 - [lldb-mi] Fix the handling of files in -data-info-line and -symbol-list-lines.

2015-09-17 Thread Sean Callanan via lldb-commits
$ svn commit Sendinglldb.xcodeproj/project.pbxproj Transmitting file data . Committed revision 247909. > On Sep 17, 2015, at 10:53 AM, d...@burble.org wrote: > > On Thu, Sep 17, 2015 at 10:49:22AM -0700, Sean Callanan wrote: >> Sure. What about the LLVM libraries ??? right now after fixi

[Lldb-commits] [lldb] r247910 - Removed a needless cast to ClangExpressionVariable.

2015-09-17 Thread Sean Callanan via lldb-commits
Author: spyffe Date: Thu Sep 17 13:19:12 2015 New Revision: 247910 URL: http://llvm.org/viewvc/llvm-project?rev=247910&view=rev Log: Removed a needless cast to ClangExpressionVariable. Modified: lldb/trunk/source/Expression/Materializer.cpp Modified: lldb/trunk/source/Expression/Materializer

Re: [Lldb-commits] [PATCH] D12942: Fix caching for clang::Decl in DWARFASTParserClang

2015-09-17 Thread Tamas Berghammer via lldb-commits
tberghammer accepted this revision. tberghammer added a comment. This revision is now accepted and ready to land. Looks good with minor comment inline Comment at: source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp:3228-3230 @@ -3227,3 +3227,5 @@ -if (die.GetReferenced

[Lldb-commits] [lldb] r247913 - [cmake] Build lldb-server on Darwin, set dep on FreeBSD.

2015-09-17 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Thu Sep 17 13:35:33 2015 New Revision: 247913 URL: http://llvm.org/viewvc/llvm-project?rev=247913&view=rev Log: [cmake] Build lldb-server on Darwin, set dep on FreeBSD. Summary: This switches the decision as to whether or not to lldb-server should be built to check the same f

Re: [Lldb-commits] [PATCH] D12925: [cmake] Build lldb-server on Darwin, set dep on FreeBSD.

2015-09-17 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL247913: [cmake] Build lldb-server on Darwin, set dep on FreeBSD. (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D12925?vs=35002&id=35021#toc Repository: rL LLVM http://review

[Lldb-commits] [lldb] r247914 - Fix TestMiSymbol for gcc-4.9 test.

2015-09-17 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Thu Sep 17 13:38:55 2015 New Revision: 247914 URL: http://llvm.org/viewvc/llvm-project?rev=247914&view=rev Log: Fix TestMiSymbol for gcc-4.9 test. Modified: lldb/trunk/test/tools/lldb-mi/symbol/TestMiSymbol.py Modified: lldb/trunk/test/tools/lldb-mi/symbol/TestMiSymbol.

[Lldb-commits] [lldb] r247915 - DataFormatters: Rename clang_type to compiler_type.

2015-09-17 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Thu Sep 17 13:43:40 2015 New Revision: 247915 URL: http://llvm.org/viewvc/llvm-project?rev=247915&view=rev Log: DataFormatters: Rename clang_type to compiler_type. Reviewers: granata.enrico Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D12930 Mod

Re: [Lldb-commits] [PATCH] D12930: DataFormatters: Rename clang_type to compiler_type.

2015-09-17 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL247915: DataFormatters: Rename clang_type to compiler_type. (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D12930?vs=34975&id=35023#toc Repository: rL LLVM http://reviews.llv

[Lldb-commits] [lldb] r247916 - Remove unused includes from clang in DataFormatters.

2015-09-17 Thread Bruce Mitchener via lldb-commits
Author: brucem Date: Thu Sep 17 13:46:22 2015 New Revision: 247916 URL: http://llvm.org/viewvc/llvm-project?rev=247916&view=rev Log: Remove unused includes from clang in DataFormatters. Reviewers: granata.enrico Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D12929 Mo

Re: [Lldb-commits] [PATCH] D12929: Remove unused includes from clang in DataFormatters.

2015-09-17 Thread Bruce Mitchener via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL247916: Remove unused includes from clang in DataFormatters. (authored by brucem). Changed prior to commit: http://reviews.llvm.org/D12929?vs=34974&id=35024#toc Repository: rL LLVM http://reviews.ll

[Lldb-commits] [lldb] r247922 - Adjustments to syncsource.py.

2015-09-17 Thread Todd Fiala via lldb-commits
Author: tfiala Date: Thu Sep 17 14:23:50 2015 New Revision: 247922 URL: http://llvm.org/viewvc/llvm-project?rev=247922&view=rev Log: Adjustments to syncsource.py. - renamed sync-source.py to syncsource.py to appease pylint. - added missing lib/transfer/__init__.py file. Fumble from git to svn.

Re: [Lldb-commits] [PATCH] D12942: Fix caching for clang::Decl in DWARFASTParserClang

2015-09-17 Thread Paul Herman via lldb-commits
paulherman updated this revision to Diff 35026. paulherman added a comment. Fix caching for clang::Decl in DWARFASTParserClang Changed from std::set to switch. Rebased the patch. http://reviews.llvm.org/D12942 Files: source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp Index: source/Plug

[Lldb-commits] [lldb] r247923 - Fix caching for clang::Decl in DWARFASTParserClang

2015-09-17 Thread Paul Herman via lldb-commits
Author: paulherman Date: Thu Sep 17 14:32:02 2015 New Revision: 247923 URL: http://llvm.org/viewvc/llvm-project?rev=247923&view=rev Log: Fix caching for clang::Decl in DWARFASTParserClang Reviewers: sivachandra, chaoren, clayborg, tberghammer Subscribers: lldb-commits Differential Revision: htt

[Lldb-commits] [lldb] r247929 - Fix a race condition when terminating inferiors on Windows.

2015-09-17 Thread Zachary Turner via lldb-commits
Author: zturner Date: Thu Sep 17 15:18:50 2015 New Revision: 247929 URL: http://llvm.org/viewvc/llvm-project?rev=247929&view=rev Log: Fix a race condition when terminating inferiors on Windows. If a breakpoint was hit in the inferior after shutdown had started but before it was complete, it would

[Lldb-commits] [lldb] r247939 - Get the process ID from a minidump.

2015-09-17 Thread Adrian McCarthy via lldb-commits
Author: amccarth Date: Thu Sep 17 15:52:29 2015 New Revision: 247939 URL: http://llvm.org/viewvc/llvm-project?rev=247939&view=rev Log: Get the process ID from a minidump. Modified: lldb/trunk/source/Plugins/Process/Windows/MiniDump/ProcessWinMiniDump.cpp lldb/trunk/source/Plugins/Process/

[Lldb-commits] LLVM buildmaster will be restarted tonight

2015-09-17 Thread Galina Kistanova via lldb-commits
Hello everyone, LLVM buildmaster will be restarted after 6 PM Pacific time today. Thanks Galina ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] r247953 - TypeSystem is now a plugin interface and removed any "ClangASTContext &Class::GetClangASTContext()" functions.

2015-09-17 Thread Greg Clayton via lldb-commits
Author: gclayton Date: Thu Sep 17 17:23:34 2015 New Revision: 247953 URL: http://llvm.org/viewvc/llvm-project?rev=247953&view=rev Log: TypeSystem is now a plugin interface and removed any "ClangASTContext &Class::GetClangASTContext()" functions. This cleans up type systems to be more pluggable.

[Lldb-commits] [lldb] r247957 - Make LanguageRuntime::GetDynamicTypeAndAddress return a ValueType

2015-09-17 Thread Enrico Granata via lldb-commits
Author: enrico Date: Thu Sep 17 17:56:38 2015 New Revision: 247957 URL: http://llvm.org/viewvc/llvm-project?rev=247957&view=rev Log: Make LanguageRuntime::GetDynamicTypeAndAddress return a ValueType For C++ and ObjC, dynamic values are always (at least somewhat) pointer-like in nature, so a Valu

Re: [Lldb-commits] [PATCH] D12750: Link NetBSD with execinfo (CMAKE build)

2015-09-17 Thread Stephane Sezer via lldb-commits
sas accepted this revision. sas added a comment. I'm fine with this patch the way it is. Unless @brucem refuses, I'll submit it. Improving cmake checks can be dealt with later on. Repository: rL LLVM http://reviews.llvm.org/D12750 ___ lldb-commi

Re: [Lldb-commits] [PATCH] D12750: Link NetBSD with execinfo (CMAKE build)

2015-09-17 Thread Kamil Rytarowski via lldb-commits
krytarowski added a comment. In http://reviews.llvm.org/D12750#244435, @sas wrote: > @brucem, not sure exactly what way forward you are suggesting. LLDB build > system supports cmake 2.8.12 and up, so we can't use FindBacktrace unless we > bump that to 3.0. Are we recommending we do that? Can

Re: [Lldb-commits] [PATCH] D12750: Link NetBSD with execinfo (CMAKE build)

2015-09-17 Thread Bruce Mitchener via lldb-commits
brucem accepted this revision. brucem added a comment. This revision is now accepted and ready to land. We can do that other part later ... we don't have to require newer cmake to do it, just provide our own file that does something similar until we update to newer cmake. Repository: rL LLVM

[Lldb-commits] [lldb] r247962 - Fixed test runner output for Jenkins xUnit publish

2015-09-17 Thread Todd Fiala via lldb-commits
Author: tfiala Date: Thu Sep 17 20:43:08 2015 New Revision: 247962 URL: http://llvm.org/viewvc/llvm-project?rev=247962&view=rev Log: Fixed test runner output for Jenkins xUnit publish The Jenkins JUnit publisher handled our output, but the Jenkins xUnit plugin's JUnit support did not like that we

[Lldb-commits] [PATCH] D12953: Remove some clang references from API.

2015-09-17 Thread Bruce Mitchener via lldb-commits
brucem created this revision. brucem added a reviewer: clayborg. brucem added a subscriber: lldb-commits. Remove an unused include and 'using namespace clang' declarations. Also, rename a CompilerType variable to not have 'clang' in the name. http://reviews.llvm.org/D12953 Files: source/API/S

[Lldb-commits] [PATCH] D12954: Reduce inclusion of clang headers.

2015-09-17 Thread Bruce Mitchener via lldb-commits
brucem created this revision. brucem added a reviewer: clayborg. brucem added a subscriber: lldb-commits. With the recent changes to separate clang from the core structures of LLDB, many inclusions of clang headers can be removed. http://reviews.llvm.org/D12954 Files: include/lldb/Core/Value.h

Re: [Lldb-commits] [PATCH] D12953: Remove some clang references from API.

2015-09-17 Thread Bruce Mitchener via lldb-commits
brucem abandoned this revision. brucem added a comment. Abandoning this one as I'd rather do a lot more of the clang inclusion reduction separately. http://reviews.llvm.org/D12953 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lis

Re: [Lldb-commits] [PATCH] D12079: [MIPS] microMIPS breakpoints, disassembly and compressed addresses

2015-09-17 Thread Jaydeep Patil via lldb-commits
jaydeep updated this revision to Diff 35059. jaydeep added a comment. Addressed review comments. Repository: rL LLVM http://reviews.llvm.org/D12079 Files: source/Core/Address.cpp source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp so

[Lldb-commits] [lldb] r247968 - [LLDB][MIPS] Debug bare-iron targets lacking support for qC /qfThreadInfo

2015-09-17 Thread Jaydeep Patil via lldb-commits
Author: jaydeep Date: Fri Sep 18 00:32:54 2015 New Revision: 247968 URL: http://llvm.org/viewvc/llvm-project?rev=247968&view=rev Log: [LLDB][MIPS] Debug bare-iron targets lacking support for qC /qfThreadInfo SUMMARY: Using response.IsUnsupportedResponse instead of !response.IsNormalRespon

Re: [Lldb-commits] [PATCH] D12876: [MIPS] Debug bare-iron targets lacking support for qC /qfThreadInfo

2015-09-17 Thread Jaydeep Patil via lldb-commits
jaydeep added a comment. Changed "!response.IsNormalResponse()" to "response.IsUnsupportedResponse()" by commit http://reviews.llvm.org/rL247968 Repository: rL LLVM http://reviews.llvm.org/D12876 ___ lldb-commits mailing list lldb-commits@lists.