Why doesn't Swift support static libraries?
I saw this explanation, but I don't understand this reasoning.
The current runtime doesn't ship with the OS, so static libs would lead to multiple runtimes in the final executable. A statically linked runtime would be much more difficult to patch for compatibility with newer OS or Swift. . . . The runtime is in flux. We need to dynamically link it to be able to deal with future forward deployment issues. — Joe Groff
https://twitter.com/owensd/status/555060783407591424
Please explain.