fileprivate 和open的作用,参考:
http://www.jianshu.com/p/604305a61e57
module的创建和访问, 参考 :
https://www.oschina.net/translate/how-to-create-a-pure-swift-module
三个命令:
xcrun swiftc -emit-library -emit-object Logger.swift -sdk $(xcrun --show-sdk-path --sdk macosx) -module-name Logger
ar rcs libLogger.a Logger.o
xcrun swiftc -emit-module Logger.swift -sdk $(xcrun --show-sdk-path --sdk macosx) -module-name Logger
其中, --sdk 选用了 macosx, 因此导出的模块只能用于 macOS project.