Re: [swift-dev] SR-34

2016-03-28 Thread Xuejun Yang via swift-dev
Yes, many times during the porting I have to resort to Windows native implementations. Just to name a few: posix_memalign, UUID, dlopen. -Xuejun On Mon, Mar 28, 2016 at 11:23 AM, Shawn Erickson wrote: > Note I have some changes inflight to better isolate use of aspects of > pthreads in the runt

Re: [swift-dev] SR-34

2016-03-28 Thread Shawn Erickson via swift-dev
Note I have some changes inflight to better isolate use of aspects of pthreads in the runtime behind a mutex, etc. abstraction (about to open another pull request). I was thinking about looking into Windows native implementations. -Shawn On Mon, Mar 28, 2016 at 11:18 AM Xuejun Yang via swift-de

[swift-dev] SR-34

2016-03-28 Thread Xuejun Yang via swift-dev
Hi all, I wonder if anybody is working on SR-34: porting Swift to Windows, and if so, whether we could join the efforts. On my side, I have ported most of the Swift code to Windows so that I am able to create Visual Studio projects with cmake and build/debug swiftc inside VS. The major missing pie