Re: [swift-dev] Change of requirements to build swift?

2017-02-01 Thread Jordan Rose via swift-dev
Hi, Guillaume. The master branch always builds with the latest publicly released Xcode beta; building with older Xcodes is not officially supported. However, the primary dependency here is building the overlays (in stdlib/public/SDK), which are closely coupled with the Apple SDKs; if you’re see

Re: [swift-dev] Change of requirements to build swift?

2017-02-01 Thread mishal_shah via swift-dev
Hi Guillaume, You will need Xcode 8.3 beta 1to build swift, and Xcode requires macOS 10.12. From: http://adcdownload.apple.com/Developer_Tools/Xcode_8.3_beta/Release_Notes_for_Xcode_8.3_beta.pdf Xcode 8.3 beta requires a Mac running macOS 10.12 beta 3 or later. Thanks, Mishal Shah > On Feb 1

Re: [swift-dev] Change of requirements to build swift?

2017-02-01 Thread Slava Pestov via swift-dev
I think it should still build with 10.11, however you need Xcode 8.3 beta 1 now. Slava > On Feb 1, 2017, at 2:48 PM, Guillaume Lessard via swift-dev > wrote: > > Hello, > > Is master supposed to have dropped support for building on 10.11.x? > The previous snapshot I’d built was January 24th,

Re: [swift-dev] Change of requirements to build swift?

2017-02-01 Thread Guillaume Lessard via swift-dev
> On 1 févr. 2017, at 15:51, Slava Pestov wrote: > > I think it should still build with 10.11, however you need Xcode 8.3 beta 1 > now. That’s probably it. I hadn’t thought of the Xcode beta! Thanks, Guillaume Lessard ___ swift-dev mailing list swi

[swift-dev] Change of requirements to build swift?

2017-02-01 Thread Guillaume Lessard via swift-dev
Hello, Is master supposed to have dropped support for building on 10.11.x? The previous snapshot I’d built was January 24th, and it was still fine. Thanks, Guillaume Lessard ___ swift-dev mailing list swift-dev@swift.org https://lists.swift.org/mailman

Re: [swift-dev] Breaking brain

2017-02-01 Thread Joe Groff via swift-dev
> On Feb 1, 2017, at 2:33 AM, Chris Eidhof via swift-dev > wrote: > > The error tells you it's not a function, but a String. In other words, it's a > property of filemgr. Try calling it without the parentheses :). This is the kind of thing it'd be a good idea to have a fixit for. If either of

Re: [swift-dev] [Swift CI] Build Failure: 0. OSS - LLDB Incremental - OS X (swift 3.1) #190

2017-02-01 Thread Jason Molenda via swift-dev
C'est moi. > On Jan 31, 2017, at 9:26 PM, no-re...@swift.org wrote: > > [FAILURE] oss-lldb-swift-3.1-incremental-osx [#190] > > Build URL:https://ci.swift.org/job/oss-lldb-swift-3.1-incremental-osx/190/ > Project: oss-lldb-swift-3.1-incremental-osx > Date of build:Tue, 31 Jan 20

Re: [swift-dev] Performance issues in automatic reference counting (ARC)?

2017-02-01 Thread Mikio Takeuchi via swift-dev
Hi Roman and Michael, Thanks for your interest ! In order not to bother anyone else with a giant mail, I will send you my preliminary results in a separate mail. My prototype uses slightly old code base (last December), so some problems may have already resolved. It already has the second run of

Re: [swift-dev] Breaking brain

2017-02-01 Thread Chris Eidhof via swift-dev
The error tells you it's not a function, but a String. In other words, it's a property of filemgr. Try calling it without the parentheses :). On Wed, Feb 1, 2017 at 10:34 AM, Roman Pastushkov via swift-dev < swift-dev@swift.org> wrote: > Hello everyone! > > I iam trying compile 4 lines prog on li

[swift-dev] Breaking brain

2017-02-01 Thread Roman Pastushkov via swift-dev
Hello everyone! I iam trying compile 4 lines prog on linux: import Foundation let filemgr = FileManager.default let path = filemgr.currentDirectoryPath() print(path) and get erorr /main.swift:3:40: error: cannot call value of non-function type 'String' let path = filemgr.currentDirectoryPath()