Swift is Open Source
91–100 of 458 posts
Re: Swift is Open Source
#92Since this has linux support i wonder if xcode or something similar will be ported to linux.
Re: Swift is Open Source
#93The Swift port for Linux seems to only support x86-64 for now. https://swift.org/blog/swift-linux-port/ I would like to see how swift could run on Linux ARM devices (Raspberry Pi 2/Beagleboard/etc) and other platforms; given that the runtime is already on iOS devices. Kudos to Apple for open-sourcing Swift.
Re: Swift is Open Source
#94Earlier quoted context omitted.
Oops. I did try to check his site, but it was coming up blank for me.
Your theory might still stand. He may know people at Apple, so this does not completely discard the scenario.
I had no idea myself until I went to interview at IBM. I haven't had the opportunity to work with Swift professionally though, so they went with someone else. Possibly the OP :P
https://www.apple.com/pr/library/2014/07/15Apple-and-IBM-For...
Re: Swift is Open Source
#95I wonder if Apple is positionning it as a competitor to Google's Go? They are hinting at a usage beyond just iOS and OS X.
Many webapps have a kind of "highlevelness" to them, and Swift nicely addresses that with it's features. Go is somehow on a kind of feature diet that's just not my cup of tea. And in terms of low-high-level-ness it I put it somewhere in between Swift and the obviously low-level Rust.
Re: Swift is Open Source
#96Testing the binaries on ubuntu decompressed to to $HOME/swift and trying to execute swift: Welcome to Swift version 2.2-dev (LLVM 46be9ff861, Clang 4deb154edc, Swift 778f82939c). Type :help for assistance. 1> help opening import file for module 'SwiftShims': No such file or directory 1> I could not find any mention to environment variables that could be used to override default locations, like SWIFT_LIBRARY_PATH or s…
Run Systrace on it and you'll see what it is looking for.
export SDKROOT=$HOME/swift/usr
or
export SDKROOT=$HOME/swift/usr/lib
or
export SDKROOT=$HOME/swift/usr/lib/swift
All the above do not work, maybe when github is up we can see how to do it.
Re: Swift is Open Source
#97Re: Swift is Open Source
#98Apache 2.0 License + Runtime Library Exception + copyright owned by the contributor (i.e. no assignment or CLA) + good community structure and documentation + code of conduct... well done, Apple!
I guess the "good side" is that the lawyers of other companies probably like when the code made by their programmers keeps being copyrighted by the company. But it is still an Apache license, so they can't demand too much from the users of the code.
Still, are there any negative aspects? Any imaginable danger?
Can the standard library have problems with (once in the future) having different copyright holders for its different parts?
Re: Swift is Open Source
#99https://github.com/apple/ This organization has no public repositories.
Re: Swift is Open Source
#100Linux support is hinted at in examples: #if os(Linux) import Glibc #else import Darwin.C #endif https://swift.org/package-manager/#example-usage