Re: [Lldb-commits] [PATCH] D18228: Make File option flags consistent for Python API

2016-03-18 Thread Greg Clayton via lldb-commits
clayborg requested changes to this revision. This revision now requires changes to proceed. Comment at: source/Host/common/File.cpp:48 @@ -47,3 +47,3 @@ } -else if (options & File::eOpenOptionWrite) +else { This change isn't

Re: [Lldb-commits] [PATCH] D17107: [lldb] Unicode support on Win32

2016-03-18 Thread Cameron via lldb-commits
cameron314 updated this revision to Diff 50976. cameron314 added a comment. Here we go! Rebased to tip (http://reviews.llvm.org/rL263735). http://reviews.llvm.org/D17107 Files: lldb/trunk/cmake/modules/LLDBConfig.cmake lldb/trunk/include/lldb/Host/FileSystem.h

Re: [Lldb-commits] [PATCH] D17107: [lldb] Unicode support on Win32

2016-03-18 Thread Cameron via lldb-commits
cameron314 added a comment. Aha, I get the same error now: fatal error LNK1169: one or more multiply defined symbols found I'm looking into it! http://reviews.llvm.org/D17107 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

Re: [Lldb-commits] [PATCH] D17107: [lldb] Unicode support on Win32

2016-03-18 Thread Zachary Turner via lldb-commits
zturner added a comment. The reason I mentioned `UNICODE` is because it's one of the main differences between pre-patch and post-patch. It works for me pre-patch. What command line are you passing to CMake? Are you using MSVC 2015 Update 1 or initial release? The other difference is that

[Lldb-commits] [lldb] r263824 - Fixed a bug where DW_AT_start_scope would fall through to DW_AT_artificial in SymbolFileDWARF::ParseVariableDIE(). This was caught by the clang warning that catches una

2016-03-18 Thread Greg Clayton via lldb-commits
Author: gclayton Date: Fri Mar 18 15:33:49 2016 New Revision: 263824 URL: http://llvm.org/viewvc/llvm-project?rev=263824=rev Log: Fixed a bug where DW_AT_start_scope would fall through to DW_AT_artificial in SymbolFileDWARF::ParseVariableDIE(). This was caught by the clang warning that catches

Re: [Lldb-commits] [PATCH] D18228: Make File option flags consistent for Python API

2016-03-18 Thread Greg Clayton via lldb-commits
clayborg requested changes to this revision. clayborg added a comment. This revision now requires changes to proceed. Looks great, thanks for catching and fixing this. Can we add a test for this so we don't regress? http://reviews.llvm.org/D18228

Re: [Lldb-commits] [PATCH] D17107: [lldb] Unicode support on Win32

2016-03-18 Thread Cameron via lldb-commits
cameron314 added a comment. @zturner: Let me know when you're ready for this patch and I'll rebase it again, since there's been quite a few more commits. http://reviews.llvm.org/D17107 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

Re: [Lldb-commits] [PATCH] D18287: Don't try to redefine the signal() function on Windows

2016-03-18 Thread Adrian McCarthy via lldb-commits
amccarth added a comment. I like where this is going. Just a couple concerns. Comment at: tools/driver/Platform.h:15 @@ -14,4 +14,3 @@ // this will stop signal.h being included #include "lldb/Host/HostGetOpt.h" delete this comment

Re: [Lldb-commits] [PATCH] D18287: Don't try to redefine the signal() function on Windows

2016-03-18 Thread Zachary Turner via lldb-commits
zturner added inline comments. Comment at: tools/driver/Driver.cpp:1314 @@ -1313,1 +1313,3 @@ +signal(SIGINT, sigint_handler); +#ifndef _MSC_VER signal (SIGPIPE, SIG_IGN); I think `_MSC_VER` is the right check, because the builtin `signal`

Re: [Lldb-commits] [PATCH] D18287: Don't try to redefine the signal() function on Windows

2016-03-18 Thread Cameron via lldb-commits
cameron314 added a comment. Cool! I got pulled into something else at work and didn't have time to investigate the linker error that this led to, sorry. But the patch looks good to me (not that I know LLDB very well). Comment at: tools/driver/Driver.cpp:1314 @@ -1313,1

[Lldb-commits] [lldb] r263861 - Fix the project file for the removal of lldb-mi's Platform.cpp.

2016-03-18 Thread Jim Ingham via lldb-commits
Author: jingham Date: Fri Mar 18 19:21:21 2016 New Revision: 263861 URL: http://llvm.org/viewvc/llvm-project?rev=263861=rev Log: Fix the project file for the removal of lldb-mi's Platform.cpp. Modified: lldb/trunk/lldb.xcodeproj/project.pbxproj Modified:

Re: [Lldb-commits] [PATCH] D18287: Don't try to redefine the signal() function on Windows

2016-03-18 Thread Zachary Turner via lldb-commits
zturner updated this revision to Diff 51090. zturner added a comment. Update with context http://reviews.llvm.org/D18287 Files: tools/driver/Driver.cpp tools/driver/Platform.cpp tools/driver/Platform.h tools/lldb-mi/CMakeLists.txt tools/lldb-mi/Platform.cpp tools/lldb-mi/Platform.h

[Lldb-commits] [lldb] r263865 - Use Enrico's new CommandAlias to give better help to the "sif" command.

2016-03-18 Thread Jim Ingham via lldb-commits
Author: jingham Date: Fri Mar 18 19:53:20 2016 New Revision: 263865 URL: http://llvm.org/viewvc/llvm-project?rev=263865=rev Log: Use Enrico's new CommandAlias to give better help to the "sif" command. Modified: lldb/trunk/source/Interpreter/CommandInterpreter.cpp Modified:

Re: [Lldb-commits] [PATCH] D18059: Add IR fixups for RenderScript ABI mismatch between ARMV7 frontend and x86 backend

2016-03-18 Thread Muhammad Omair Javaid via lldb-commits
omjavaid added a reviewer: clayborg. omjavaid added a comment. I dont have a lot of background in this area of the code. Can you kindly take a look. http://reviews.llvm.org/D18059 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

Re: [Lldb-commits] [PATCH] D17107: [lldb] Unicode support on Win32

2016-03-18 Thread Cameron via lldb-commits
cameron314 added a comment. No worries. I removed the codepage stuff when I did the last rebase. Another one coming up shortly! http://reviews.llvm.org/D17107 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

Re: [Lldb-commits] [PATCH] D18228: Make File option flags consistent for Python API

2016-03-18 Thread Francis Ricci via lldb-commits
fjricci added a comment. That makes sense. Will do. http://reviews.llvm.org/D18228 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Re: [Lldb-commits] [PATCH] D18287: Don't try to redefine the signal() function on Windows

2016-03-18 Thread Zachary Turner via lldb-commits
zturner added inline comments. Comment at: tools/lldb-mi/Platform.h:73 @@ -74,4 +72,3 @@ // CODETAG_IOR_SIGNALS // signal.h #define SIGQUIT 3 // Terminal quit signal amccarth wrote: > As in the other file, now that we're including , I think

Re: [Lldb-commits] [PATCH] D18287: Don't try to redefine the signal() function on Windows

2016-03-18 Thread Adrian McCarthy via lldb-commits
amccarth accepted this revision. amccarth added a comment. This revision is now accepted and ready to land. looks good http://reviews.llvm.org/D18287 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

Re: [Lldb-commits] [lldb] r263520 - Add some test coverage for the changes in alias help

2016-03-18 Thread Enrico Granata via lldb-commits
> On Mar 18, 2016, at 2:45 PM, Zachary Turner wrote: > > Hi Enrico, > > These tests are failing on Windows. They're new tests so not really a > regression, but do you have any idea what might be wrong? Basically, when > the test runs, the help po is displaying the full