mirror of
https://github.com/RGBCube/serenity
synced 2025-07-13 19:17:36 +00:00
8 lines
294 B
Text
8 lines
294 B
Text
declare_args() {
|
|
# Set to true when host compiler is clang so that clang flags will be passed to it
|
|
is_clang = host_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
|
|
}
|