Re: [swift-dev] [Swift CI] Build Failure: OSS - Swift Package - OS X (master) #3802

2017-07-19 Thread Simon Evans via swift-dev
This looks like a bug in one of my tests for linker arguments, i’ll send a PR to disable it on OS X simon > On 19 Jul 2017, at 23:46, no-reply--- via swift-dev > wrote: > > [FAILURE] oss-swift-package-osx [#3802] > > Build URL:https://ci.swift.org/job/oss-swift-package-osx/3802/ >

Re: [swift-dev] Call for help: Linux (and others) build configurations, including static libraries, with ICU.

2017-05-25 Thread Simon Evans via swift-dev
For building ICU (on Linux at least) you just need the icu directory at the same level as the other swift source directories and then the `—libicu` option should build it and the `—install-libicu` option should install the libs in usr/lib/swift/linux/ and usr/lib/swift_static/linux/ Static stdl

Re: [swift-dev] Swift kernel hacking, compiler options and target triples

2016-03-29 Thread Simon Evans via swift-dev
> On 28 Mar 2016, at 22:20, Greg Parker wrote: > > swiftc has a hidden -Xllvm flag that passes options to the LLVM code > generator. That might work for low-level options like instruction selection > and maybe the red zone. It's not the right answer for production use, but it > might be good

[swift-dev] Swift kernel hacking, compiler options and target triples

2016-03-28 Thread Simon Evans via swift-dev
Hi I’ve been experimenting with kernel programming in Swift and this required disabling the use of the red zone. Currently Im compiling to ELF on Linux and linking in my own minimal libc/libcpp with libswiftCore.a so its not using any Linux libraries. I did a PR for adding a '-disable-red-zone' o