Re: [swift-dev] build-script -x freezing?

2016-05-25 Thread Jacob Bandes-Storch via swift-dev
Actually, I think this was a Python problem for me. I had installed Python via Homebrew — running "brew unlink python" before a build-script invocation made it work fine. Jacob On Wed, May 25, 2016 at 7:59 PM, Jacob Bandes-Storch wrote: > I've experienced this multiple times in the past, and I'

Re: [swift-dev] SwiftGlibc: Use VFS overlay instead of -fmodule-map-file

2016-05-25 Thread rintaro ishizaki via swift-dev
> That said, the VFS is a fairly, well, hacky piece of Clang, and I’m not sure we’d want to add a new dependency on it. Ben, Daniel, what do you think? Actually, VFS overlay seems to be relatively new feature and looks unstable. For instance, https://github.com/apple/swift/compare/master...rintaro

Re: [swift-dev] build-script -x freezing?

2016-05-25 Thread Jacob Bandes-Storch via swift-dev
I've experienced this multiple times in the past, and I'm seeing it today. Does anyone have thoughts on how this might be root-caused/fixed? On Fri, May 20, 2016 at 7:12 PM, Jordan Rose via swift-dev < swift-dev@swift.org> wrote: > Hypotheses: > - There are several executables that get linked ar

Re: [swift-dev] [Swift CI] Build Failure: 0. OSS - Swift Incremental RA - Ubuntu 14.04 - Long Test (master) #228

2016-05-25 Thread Daniel Dunbar via swift-dev
FATAL: no longer a configured node for Ubuntu-14.04 java.lang.IllegalStateException : no longer a configured node for Ubuntu-14.04 at hudson.model.AbstractBuild$AbstractBuildExecution.getCurrentNode(AbstractBu

Re: [swift-dev] [Swift CI] Build Failure: 0. OSS - Swift Incremental RA - Ubuntu 14.04 - Long Test (master) #228

2016-05-25 Thread Mishal Shah via swift-dev
Please ignore this error, it's due to changing the note name. Sent from my iPhone > On May 25, 2016, at 6:06 PM, Daniel Dunbar wrote: > > FATAL: no longer a configured node for Ubuntu-14.04 > java.lang.IllegalStateException: no longer a configured node for Ubuntu-14.04 > at > hudson.mode

Re: [swift-dev] [Swift CI] Build Still Failing: 0. OSS - Swift Incremental RA - Ubuntu 15.10 (master) #5285

2016-05-25 Thread Dmitri Gribenko via swift-dev
Fixed. On Wed, May 25, 2016 at 2:40 PM, Daniel Dunbar via swift-dev < swift-dev@swift.org> wrote: > cmark is failing to build: > > cmark: using gold linker > + mkdir -p > /home/buildnode/jenkins/workspace/oss-swift-incremental-RA-linux-ubuntu-15_10/Ninja-ReleaseAssert/cmark-linux-x86_64 > + [[ -

Re: [swift-dev] [Swift CI] Build Still Failing: 0. OSS - Swift Incremental RA - Ubuntu 15.10 (master) #5285

2016-05-25 Thread Daniel Dunbar via swift-dev
cmark is failing to build: cmark: using gold linker + mkdir -p /home/buildnode/jenkins/workspace/oss-swift-incremental-RA-linux-ubuntu-15_10/Ninja-ReleaseAssert/cmark-linux-x86_64 + [[ -n '' ]] + cd /home/buildnode/jenkins/workspace/oss-swift-incremental-RA-linux-ubuntu-15_10/Ninja-ReleaseAssert/

Re: [swift-dev] [swift-evolution] Possible bug with arithmetic optional comparison ?

2016-05-25 Thread Yaman JAIOUCH via swift-dev
I'd like to pitch it out to swift-evolution but I'm not sure to fully understand the proposed solution of "disabling implicit promotion from T to T?" Does it mean that the following code won't work anymore? let a: Int? = nil let b: Int = 25 a < b // does not compile anymore If so, I'm not sure it