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