Re: [swift-dev] Debian/Ubuntu Package

2016-09-16 Thread Kevin Choi via swift-dev
Huh. Surprised there is no trademark issues. aha, I see why. http://tmsearch.uspto.gov/bin/showfield?f=doc&state=4801:djnmx6.2.40 http://tmsearch.uspto.gov/bin/showfield?f=doc&state=4801:djnmx6.2.41 I guess apple-swift would be following the trademark. Not sure what the OpenSrc community thinks.

Re: [swift-dev] Debian/Ubuntu Package

2016-09-16 Thread Kevin Choi via swift-dev
Oops nvm. they are both meaning this swift On Fri, Sep 16, 2016 at 11:08 AM, Kevin Choi wrote: > Huh. Surprised there is no trademark issues. > > aha, I see why. > http://tmsearch.uspto.gov/bin/showfield?f=doc&state=4801:djnmx6.2.40 > http://tmsearch.uspto.gov/bin/showfield?f=doc&state=4801:djnm

[swift-dev] Needs better error msg?

2016-09-20 Thread Kevin Choi via swift-dev
b.sw: func findIndex(array: [T], _ valueToFind: T) -> Int? { for (index, value) in array.enumerated() { if value == valueToFind { return index } } return nil } let foundAtIndex = findIndex([1, 2, 3, 4], 3) print(foundAtIndex == 2) // true ==

Re: [swift-dev] ccache and/or distcc for swift

2016-09-27 Thread Kevin Choi via swift-dev
Just curious, are there scenarios other than simple local build that you wish to speed up? I don't know if ccache offers much more than incremental build by existing build systems. -Kevin On Tue, Sep 27, 2016 at 11:09 AM, Oscar Bonilla via swift-dev < swift-dev@swift.org> wrote: > Hello swift dev

Re: [swift-dev] Validating ABI consistency between runtime C++ and standard library Swift code

2016-10-12 Thread Kevin Choi via swift-dev
> getting the ABI slightly wrong Does this call for something like a validation pass? It would seem appropriate to apply it to SIL and not LLVM IR since it's inter-language ABI specific to Swift frontend. On Tue, Oct 11, 2016 at 8:17 PM, Daniel Dunbar via swift-dev < swift-dev@swift.org> wrote: