Re: [swift-dev] Glibc.swift: error: no such module 'SwiftGlibc'

2016-11-09 Thread Jordan Rose via swift-dev
Ah, that does help. The logic to build the Glibc module map comes from stdlib/public/Platform/CMakeLists.txt, and explicitly checks for “LINUX”, “FREEBSD”, “ANDROID”, and “CYGWIN”. Does the Steam-Runtime build use a different SDK name? Jordan > On Nov 8, 2016, at 23:40, Eric Wing via swift-de

Re: [swift-dev] Glibc.swift: error: no such module 'SwiftGlibc'

2016-11-09 Thread Eric Wing via swift-dev
On 11/9/16, Jordan Rose wrote: > Ah, that does help. The logic to build the Glibc module map comes from > stdlib/public/Platform/CMakeLists.txt, and explicitly checks for “LINUX”, > “FREEBSD”, “ANDROID”, and “CYGWIN”. Does the Steam-Runtime build use a > different SDK name? > > Jordan > How would

Re: [swift-dev] Glibc.swift: error: no such module 'SwiftGlibc'

2016-11-09 Thread Eric Wing via swift-dev
On 11/9/16, Eric Wing wrote: > On 11/9/16, Jordan Rose wrote: >> Ah, that does help. The logic to build the Glibc module map comes from >> stdlib/public/Platform/CMakeLists.txt, and explicitly checks for “LINUX”, >> “FREEBSD”, “ANDROID”, and “CYGWIN”. Does the Steam-Runtime build use a >> differe

Re: [swift-dev] Casting shadow protocols

2016-11-09 Thread Joe Groff via swift-dev
> On Nov 8, 2016, at 4:41 PM, Dave Abrahams via swift-dev > wrote: > > The msg send built in is worse than exploiting AnyObject magic. I'd rather > fall back to that As a builtin, we could probably constrain it to be type safe. The AnyObject magic implementation right now implies a bunch of

Re: [swift-dev] [Swift CI] Build Still Failing: 1. OSS - Swift (Tools Opt+Assert, Stdlib Opt+DebInfo+Assert, Resilience) - macOS (master) #11

2016-11-09 Thread Alexis via swift-dev
About 400 tests instantly crashing. I can reproduce that locally. This is however an improvement over the rest of the week, where the stdlib didn’t even get past SIL validation. I can’t see any obvious connection to Dictionary, so it might be something else that slipped in while this was untest

[swift-dev] Type Pun in Test Suite

2016-11-09 Thread Alexis via swift-dev
Just stumbled across this mock NSDictionary implementation in the test suite: https://github.com/apple/swift/blob/a1dbe066adf826b27dd8e71234ba7e8ce2b26b73/validation-test/stdlib/Dictionary.swift#L1260-L1306