Slide 23
Slide 23 text
toolset.json: 細かいフラグをまとめて渡せる
$ swift build --toolset toolset.json
{
"schemaVersion": "1.0",
"swiftCompiler": {
"extraCLIOptions": [
"-Xfrontend", "-disable-stack-protector",
"-use-ld=lld",
"-nostartfiles",
"-Xlinker", "-nostdlib",
"-Xclang-linker", "-nostdlib",
"-Xlinker", "-static",
"-wmo",
"-Osize",
"-Xlinker", "-e", "-Xlinker", "_start"
]
},
"linker": {
"extraCLIOptions": [
"-T", "linker/esp32c3.ld",
"--gc-sections"
]
}
}