On Tue, Jan 31, 2017 at 8:13 AM, Philippe Hausler via swift-corelibs-dev <
swift-corelibs-dev@swift.org> wrote:
> So there are a few issues that would be a bit tricky to deal with:
>
> SwiftPM uses Foundation so you would have to devise some way to build
> SwiftPM either without Foundation (which
So there are a few issues that would be a bit tricky to deal with:
SwiftPM uses Foundation so you would have to devise some way to build SwiftPM
either without Foundation (which seems sub-optimal or replication of
effort/code), directly importing parts of Foundation into the code-base for
Swift
When we were first bringing up the project we had a hack that forced the
compiler to do incremental builds of the Swift files. However, it turned out
that it wasn’t really safe or supported.
If there is some way to actually turn that on now in a way that allows quick
turnaround (probably sacrif
This has probably been discussed in the past, but wanted to revisit the
idea of using native Swift tools to build Foundation. I brought this up in
the Slack group, and it seemed to be warmly received- although probably
still not simple because of some cyclical dependency issues in the build
proce
Does anyone know how to compile Foundation (with Ninja) on Ubuntu Linux
16.04 with Incremental builds enabled? It currently takes over 4 min on my
8 core, 16 GB machine because it rebuilds the project from the beginning
each time. Any way to make the development to test cycle faster would be
appr
I see what this problem is. I’ll have a PR up shortly to fix it.
- Tony
> On Jan 30, 2017, at 2:33 PM, Tony Parker via swift-corelibs-dev
> wrote:
>
> Hi Peter,
>
>> On Jan 29, 2017, at 11:05 AM, Peter Tomaselli via swift-corelibs-dev
>> mailto:swift-corelibs-dev@swift.org>> wrote:
>>
>> Hi
Hi Peter,
> On Jan 29, 2017, at 11:05 AM, Peter Tomaselli via swift-corelibs-dev
> wrote:
>
> Hi all, another new person here.
Perfect, the more the merrier.
> This sounded like a lot of fun so I figured I would try and pitch in!
> However, I’m unable to get off the ground getting the curren
Hi Philippe,
thanks a lot for your reply. Does this mean that i always need the swift
runtime on the target linux machine?
We tried a code without Foundation and get stuck with libi18n.so.55 that is not
available in that version on our target.
Can you mention some resources to get deeper into