Re: [swift-dev] Marking a function as __attribute__((weak))

2017-03-08 Thread Joe Groff via swift-dev
> On Mar 6, 2017, at 7:10 PM, Philippe Hausler via swift-dev > wrote: > > > > On Mar 6, 2017, at 5:59 PM, Greg Parker > wrote: > >> >>> On Mar 6, 2017, at 5:48 PM, Philippe Hausler via swift-dev >>> mailto:swift-dev@swift.org>> wrote: >>> >>> Is there a way to m

[swift-dev] CI outage tomorrow for upgrade

2017-03-08 Thread Nicole Jacque via swift-dev
Hi All- We will have a CI outage for a couple of hours tomorrow starting at 11 Pacific, in order to upgrade the CI machines to the latest Xcode beta and SDKs. We’ll send out a message when the upgrade is complete. As mentioned in the Swift 3.1 Release Process blog post, we have begun posting

Re: [swift-dev] Debugging with Xcode/LLDB

2017-03-08 Thread Jordan Rose via swift-dev
Hi, Pawel. Unfortunately, this is what happens to inlinable code in debug builds (not just for LLDB, Xcode, or the Swift compiler). The debugger doesn’t have the body of inlinable functions, and the binary doesn’t have a copy of the code (since it was always inlined away). You have a handful of

[swift-dev] Debugging with Xcode/LLDB

2017-03-08 Thread Pawel Szot (PGS Software) via swift-dev
Hi, I’m using LLDB when debugging in Xcode. `p x->dump()` works fine, but what about vectors? For example `SmallVectorImpl` doesn’t offer `dump()`, and I can’t even get it’s size: ``` error: Couldn't lookup symbols: __ZNK4llvm25SmallVectorTemplateCommonIN5swift11constraints8SolutionEE4sizeEv ``