Results 433 comments of Max Desiatov

Whoever is interested, the detailed plan for improvements is available in [this Swift Forums thread](https://forums.swift.org/t/gsoc2020-lto-support-for-swift/34397/6): > Phase 1 > > * swift driver changes for providing flags for LTO >...

The progress report is now posted [in this new Swift Forums thread](https://forums.swift.org/t/gsoc-lto-support-progress-report/37149).

I've posted an update about ICU here recently: https://github.com/swiftwasm/swift/issues/2411#issuecomment-1151415317. Basically, we should phrase this as "removal of Unicode tables" instead of "removal of ICU". Even though ICU was removed as...

One blocker that I know of for implementing a minimal standard library is https://github.com/apple/swift/issues/63603. There may be more of course to be found when this one is resolved.

If you pass a `-v` flag to your `swift build` invocation, it will print exact commands for the build. Would you be able to infer which one takes the most...

Additionally, do you see similar build times for other triples?

> I'd love to, but could you tell how to build for other triples? > > I tried to build the project with just `swift build -c debug --product Run...

With static linking there's no way to avoid relinking, as far as I'm aware. In the end you get a single self-contained binary with everything embedded in it, so every...

This is interesting, but I'm not sure why this takes much less time for non-Wasm builds, if I understand correctly what you posted above. We didn't make any changes to...

Formally, ICU dependency is removed from the standard library, but in terms of binary size this makes things even worse for people linking with Foundation, because the latter still depends...