如何使用Swift Package Manager`swift build`命令构建Swift Package的优化版本

时间:2016-09-29 16:52:08

标签: swift optimization swift-package-manager

我想将以新的Swift Package Manager格式编写的swift代码编译成高度优化的二进制代码。目前使用swiftc -O somefile.swift是可能的,但由于swift包是使用swift build命令构建的,因此我无法通过-O选项,因为它不接受它。那么有没有办法指定在编译过程中优化代码?

1 个答案:

答案 0 :(得分:3)

您可以使用以下内容构建版本配置:swift build --configuration release

您还可以通过以下方式查看工具使用情况:

$ swift build --help
OVERVIEW: Build sources into binary products

USAGE: swift build [mode] [options]

MODES:
  -c, --configuration <value>   Build with configuration (debug|release) [default: debug]
  --clean [<mode>]              Delete artifacts (build|dist) [default: build]

OPTIONS:
      -C, --chdir <path>       Change working directory before any other operation
  --build-path <path>      Specify build/cache directory [default: ./.build]
  --color <mode>           Specify color mode (auto|always|never) [default: auto]
  -v, --verbose            Increase verbosity of informational output
  -Xcc <flag>              Pass flag through to all C compiler invocations
  -Xlinker <flag>          Pass flag through to all linker invocations
  -Xswiftc <flag>          Pass flag through to all Swift compiler invocations

NOTE: Use `swift package` to perform other functions on packages

列出了此选项。

有关详细信息,请参阅包管理器reference