Re: [swift-users] Swift 4.0 LLDBFrontend Crash

2017-10-12 Thread Michael Gottesman via swift-users
I just added a section to ./docs/DebuggingTheCompiler.rst on how to get enable logging from LLDB. Can you enable the logging there and add file an SR? Michael > On Oct 7, 2017, at 11:27 AM, Edward Connell wrote: > > Hi Michael, > No I am not evaluating an expression or anything. This all work

Re: [swift-users] file input

2017-10-12 Thread Alex Blewitt via swift-users
> On 12 Oct 2017, at 17:08, Madhava Paliyam via swift-users > wrote: > > Hi, > > I created a new file on swift playgrounds with data in it, the file type was > an empty file. How should I access the file through my playground? Questions regarding Playgrounds should really be directed to the

[swift-users] file input

2017-10-12 Thread Madhava Paliyam via swift-users
Hi, I created a new file on swift playgrounds with data in it, the file type was an empty file. How should I access the file through my playground? Thanks. Madhava ___ swift-users mailing list swift-users@swift.org https://lists.swift.org/mailman/lis

Re: [swift-users] Package Manager: Link to a static library.

2017-10-12 Thread Fred Appelman via swift-users
If it is just the library that cannot be found you may try to pass the directory where the library can be found to xcode. E.g.: swift build -Xlinker "-L/usr/local/lib" Regards, --  Fred  From: Evtim Papushev via swift-users Reply: Evtim Papushev Date: 11 October 2017 at 12:00:24 To: swift-use

Re: [swift-users] Why does the withUnsafeMutableBufferPointer closure take an inout parameter?

2017-10-12 Thread Guillaume Lessard via swift-users
It’s not a bug-fix and it is an API change, so it seems it would have to go through evolution. Guillaume Lessard ___ swift-users mailing list swift-users@swift.org https://lists.swift.org/mailman/listinfo/swift-users

Re: [swift-users] Why does the withUnsafeMutableBufferPointer closure take an inout parameter?

2017-10-12 Thread Geordie Jay via swift-users
Guillaume Lessard via swift-users schrieb am Mi. 11. Okt. 2017 um 23:49: > A lot of the MutableCollection implementation is in protocol extensions > (swapAt, for example.) > > Should an additional version be written just for the Unsafe*BufferPointer > types? Makes sense to me, given the example