4

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

4

1 回答 1

7

您可以使用以下命令构建发布配置: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

其中列出了此选项。

有关更多信息,请参阅包管理器参考

于 2016-09-29T17:49:46.247 回答