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
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
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
___
swift-users mailing list
swift-users@swift.org
https://lists.swift.org/mailman/listinfo/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
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
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