Re: [swift-dev] test-repl-glibc failure

2016-04-21 Thread Greg Parker via swift-dev
> On Apr 21, 2016, at 9:20 PM, Daniel Dunbar via swift-dev > wrote: > > What is the status of the Ubuntu packages CI failure: > swift-package-tests :: repl/test-repl-glibc.py > > It has been failing for a while now and I would like to get back to being > able to use @swift-ci please test

[swift-dev] Including `FileCheck` in downloadable toolchains

2016-04-21 Thread Daniel Dunbar via swift-dev
Hi all, I would like to propose that we include `FileCheck` in the downloadable toolchains. The downloadable toolchains are quite useful for people who are wanting to work on Swift projects that use FileCheck (llbuild, swift-integration-tests), but don't want to build everything from scratch.

[swift-dev] test-repl-glibc failure

2016-04-21 Thread Daniel Dunbar via swift-dev
What is the status of the Ubuntu packages CI failure: swift-package-tests :: repl/test-repl-glibc.py It has been failing for a while now and I would like to get back to being able to use @swift-ci please test and merge. - Daniel ___ swift-dev ma

Re: [swift-dev] Swift port to Windows : Offering help!

2016-04-21 Thread Sangjin Han via swift-dev
Hi Joel, I list some URLs. Bug/Feature report in http://bugs.swift.org --- SR-34 Port Swift to Windows (https://bugs.swift.org/browse/SR-34) SR-612 In Cygwin port, print() crashed at hook ( https://bugs.swift.org/browse/SR-612) SR-1128 autolink extraction d

[swift-dev] Starter bug: SR-1286 Incorrect memory management in PotentialArchetype::getNestedType

2016-04-21 Thread Greg Parker via swift-dev
Starter bug: SR-1286 Incorrect memory management in PotentialArchetype::getNestedType https://bugs.swift.org/browse/SR-1286 I diagnosed a memory error that causes a compiler crash, but I didn't fix it. There are several possible changes with potentially different performance trade-offs. There a

Re: [swift-dev] Swift port to Windows : Offering help!

2016-04-21 Thread Joel Van Eenwyk via swift-dev
Hi Han, Thanks for the details! Do you have a custom fork or branch with these changes? I'd love to be able to test this out and contribute if you think that could help you out. I can get started on testing what you have now as soon as tomorrow. Cheers, --Joel On Thu, Apr 21, 2016 at 4:15 PM, S

Re: [swift-dev] Swift port to Windows : Offering help!

2016-04-21 Thread Sangjin Han via swift-dev
I'm writing code for Windows/Cygwin port on my free time. There is no well documented information about that. Instead I'll give you some information and several links for you. 1. Cygwin port Cygwin is a POSIX environment on Windows. Porting to Cygwin is relatively easer than Windows native. This

Re: [swift-dev] Swift port to Windows : Offering help!

2016-04-21 Thread Dmitri Gribenko via swift-dev
CC'ing Han, the maintainer of the Cygwin port. On Wed, Apr 20, 2016 at 10:59 PM, Joel Van Eenwyk via swift-dev wrote: > Hi all, > > I'm a very new user of Swift and interested in finding ways to contribute to > the project. I can happily work with the Linux port of the project, but I > have a lot

Re: [swift-dev] [Swift CI] Build Failure: 0. OSS - Swift Incremental RA - OS X (master) #3545

2016-04-21 Thread Jordan Rose via swift-dev
I'm confused as to why this wouldn't have failed the first time I ran the tests. Sorry, will fix promptly. Jordan > On Apr 21, 2016, at 11:10, no-re...@swift.org wrote: > > [FAILURE] oss-swift-incremental-RA-osx [#3545] > > Build URL:https://ci.swift.org/job/oss-swift-incremental-RA-osx/3

[swift-dev] Proposal for Swift and Ubuntu releases

2016-04-21 Thread Todd Fiala via swift-dev
Hi all, I wanted to propose how we can go about handling newer Ubuntu releases in a systematic way. This covers how we handle Ubuntu on our CI, but also reflects where we'll be focusing effort at any given point. The primary intent is to support the most recent Ubuntu Long Term Service release a

Re: [swift-dev] Lazy var and deinit

2016-04-21 Thread John McCall via swift-dev
> On Apr 21, 2016, at 2:29 AM, Alexandr.moq via swift-dev > wrote: > Should SWIFT initialize a variable in deinit method if it has not been > initialized? > > For example: > ```swift > class A { > lazy var b = B() > deinit { > b.clean() > } > } > var a = A() >

[swift-dev] Swift port to Windows : Offering help!

2016-04-21 Thread Joel Van Eenwyk via swift-dev
Hi all, I'm a very new user of Swift and interested in finding ways to contribute to the project. I can happily work with the Linux port of the project, but I have a lot of Windows development experience and would probably be most useful there. Where can I find information about the current status

Re: [swift-dev] [Swift CI] Build Still Failing: OSS - Swift Package - Ubuntu 14.04 (master) #1072

2016-04-21 Thread Joseph Bell via swift-dev
Indeed, and SR-1109 is still causing the Create installable package step to fail for 14.04 ( https://ci.swift.org/view/Packages/job/oss-swift-package-linux-ubuntu-14_04/1075/console#console-section-9). The failure was always there (cannot import Glibc into the REPL) but has now been exposed since p

[swift-dev] Lazy var and deinit

2016-04-21 Thread Alexandr.moq via swift-dev
Should SWIFT initialize a variable in deinit method if it has not been initialized? For example: ```swift class A { lazy var b = B() deinit { b.clean() } } var a = A() a.b.doSomething() //1: variable was created a = A() //2: "clean" method was called for