[Lldb-commits] [lldb] r331082 - Fix build bots after r331049 broke them.

2018-04-27 Thread Greg Clayton via lldb-commits
Author: gclayton Date: Fri Apr 27 14:10:07 2018 New Revision: 331082 URL: http://llvm.org/viewvc/llvm-project?rev=331082&view=rev Log: Fix build bots after r331049 broke them. Modified: lldb/trunk/source/Utility/FileSpec.cpp Modified: lldb/trunk/source/Utility/FileSpec.cpp URL: http://llvm

Re: [Lldb-commits] [lldb] r331082 - Fix build bots after r331049 broke them.

2018-05-03 Thread Davide Italiano via lldb-commits
On Fri, Apr 27, 2018 at 2:10 PM, Greg Clayton via lldb-commits wrote: > Author: gclayton > Date: Fri Apr 27 14:10:07 2018 > New Revision: 331082 > > URL: http://llvm.org/viewvc/llvm-project?rev=331082&view=rev > Log: > Fix build bots after r331049 broke them. > I would like to apologize for commu

Re: [Lldb-commits] [lldb] r331082 - Fix build bots after r331049 broke them.

2018-05-03 Thread Davide Italiano via lldb-commits
I would like to apologize for communicating this so late (mainly because I worked on the swift bits which are a little behind and I didn't update my checkout) but this commit completely broke debugging in some cases (on MacOS). Testcase: #import int main() { id keys[1] = { @"abc" }; id valu

Re: [Lldb-commits] [lldb] r331082 - Fix build bots after r331049 broke them.

2018-05-04 Thread Davide Italiano via lldb-commits
ping. On Thu, May 3, 2018 at 3:08 PM, Davide Italiano wrote: > I would like to apologize for communicating this so late (mainly > because I worked on the swift bits which are a little behind and I > didn't update my checkout) but this commit completely broke debugging > in some cases (on MacOS).

Re: [Lldb-commits] [lldb] r331082 - Fix build bots after r331049 broke them.

2018-05-04 Thread Greg Clayton via lldb-commits
So it seems that if specify "./blah" as your program then this fails, but if you specify just "blah" then this succeeds. Looks like we need to resolve the path when creating a target with a local copy of the file. I will look into this. Greg > On May 3, 2018, at 3:08 PM, Davide Italiano wrot

Re: [Lldb-commits] [lldb] r331082 - Fix build bots after r331049 broke them.

2018-05-04 Thread Davide Italiano via lldb-commits
On Fri, May 4, 2018 at 10:54 AM, Greg Clayton wrote: > So it seems that if specify "./blah" as your program then this fails, but if > you specify just "blah" then this succeeds. Looks like we need to resolve the > path when creating a target with a local copy of the file. I will look into > thi

Re: [Lldb-commits] [lldb] r331082 - Fix build bots after r331049 broke them.

2018-05-07 Thread Greg Clayton via lldb-commits
Fixed with: svn commit source/Target/TargetList.cpp Sendingsource/Target/TargetList.cpp Transmitting file data .done Committing transaction... Committed revision 331637. Test coming soon. > On May 4, 2018, at 10:55 AM, Davide Italiano wrote: > > On Fri, May 4, 2018 at 10:54 AM, Greg Cl