Re: [swift-users] Swift 3 on centos 7

2016-10-21 Thread Ron Olson via swift-users
I built an RPM with Swift 3-RELEASE; the RPM build info is at https://github.com/tachoknight/swift-rpm. I don't use CentOS myself but it'd be interesting to know if it works or not. Suffice to say, my repo is very unofficial. :) Ron On 21 Oct 2016, at 7:54, Leonid Orsulic via swift-users wr

[swift-users] Mutex/queue access in Swift 3

2016-09-23 Thread Ron Olson via swift-users
Hey all- I used Erica's queue example (http://ericasadun.com/2016/03/08/swift-queue-fun/) to implement a queue in a multi-threaded Swift app (quick aside, is it 'correct' to say multithreaded when using DispatchQueue?). I spawn a number of objects on a .concurrent DispatchQueue and they all t

Re: [swift-users] Status of building Swift 3.0 on RHEL variants

2016-09-22 Thread Ron Olson via swift-users
Yes, I have the 3.0-RELEASE version, from source, running perfectly on a Fedora 24 instance. I started with https://github.com/corinnekrych/swift-rpm, but it's a bit out of date and I had to clone it and update the script and spec with some changes; there are still a couple of manual steps but

Re: [swift-users] Ubuntu 16.04 support?

2016-09-20 Thread Ron Olson via swift-users
___ swift-users mailing list swift-users@swift.org https://lists.swift.org/mailman/listinfo/swift-users

Re: [swift-users] Ubuntu 16.04 support?

2016-09-20 Thread Ron Olson via swift-users
I downloaded the Ubuntu 15 release. On 20 Sep 2016, at 11:26, Lane Schwartz wrote: > Thanks, Ron. Which binary release did you download? The ubuntu 15 release? > Or the 14 release? > > On Tue, Sep 20, 2016 at 11:12 AM, Ron Olson via swift-users < > swift-users@swift.org> wro

Re: [swift-users] Ubuntu 16.04 support?

2016-09-20 Thread Ron Olson via swift-users
I can verify that the 3.0 Release works under 16; I downloaded it this morning and it works fine. On 20 Sep 2016, at 11:10, Lane Schwartz via swift-users wrote: I see that there are swift packages for Ubuntu 14 and 15, but not 16. Is Swift 3.0 known to work with Ubuntu 16? Can either of the a

[swift-users] Working with const char** with Swift 3

2016-09-19 Thread Ron Olson via swift-users
Hi all- So I've been working on this for hours and I'm just stuck. In C I'd write something like: const char* a_string_array[] = {"aloha", "world", "from beautiful Waikiki Beach"}; haveFun(a_string_array); and haveFun is: void haveFun(const char** data) { printf("%s\n", data[0]); p