uraimo
uraimo
Natively and in my case it should be using the llvm toolchain included with swift, another thing that could be happening is some wrongly sized field imported by some obscure...
Thanks for the heads up... I've been kinda MIA lately but will be back.
Sorry to drop in like this now guys, @KittyMac do you plan to open a PR to merge it (optional)? I'll spin up a build for armv6l but I expect...
Thanks @KittyMac , I'm importing everything in a swift-5.4 branch and doing some test. The legendary [a92236](https://github.com/uraimo/buildSwiftOnARM/blob/master/llvm-project.diffs/aarch32/a922364e5bb45a8db448121e4e57d00524bc98a3.diff) that has been there since 2015 for an llvm and a few other...
Yep, I still have to build the full set with my docker setup, it takes approximately 60 hours now, I will do a proper 5.4 [release](https://github.com/uraimo/buildSwiftOnARM/releases) when I get around...
Not yet, but it could just be the result of an armv6 patch not being applied ,see #69 for the links (need time).
Skipping SPM and specifying a "minimal" set of build options similar to `buildbot_linux,no_test` the toolchain has everything we expect (minus SPM obviously). Considering that we kept the build command more...
Note to self: Even the silly workaround of building without SPM using the command above, over an `install` dir already populated with an SPM generated the usual way doesn't work....
Yes, that `let r = String(t.reversed())` in particular is extremely slow. That reversed() is the generic reversal defined on Collections [here](https://github.com/apple/swift/blob/master/stdlib/public/core/SequenceAlgorithms.swift#L709), and appears to be executed lazily (has an internal...
Hmm, the resulting string should be the same, but you are now creating 25 chars strings instead of using the 1million characters string you had before. The main issue here...