serenity/Meta/gn/build/toolchain/compiler.gni
2023-08-19 21:05:06 -06:00

12 lines
385 B
Plaintext

declare_args() {
# Set to true when host compiler is clang so that clang flags will be passed to it
is_clang = current_os == "mac"
# Enable setting -fuse-ld and other flags for using the lld linker.
# Should not be set on macOS when using the default system compiler.
use_lld = false
# Use ccache as a compiler launcher for compile and link jobs
enable_ccache = true
}