17 lines
394 B
Plaintext
17 lines
394 B
Plaintext
declare_args() {
|
|
# Whether to build with debug information.
|
|
is_debug = false
|
|
}
|
|
|
|
# args that depend on other args must live in a later declare_args() block.
|
|
declare_args() {
|
|
# Whether to build with optimizations.
|
|
is_optimized = !is_debug
|
|
|
|
# Whether to enable assertions.
|
|
llvm_enable_assertions = true
|
|
|
|
# Whether to enable expensive checks.
|
|
llvm_enable_expensive_checks = false
|
|
}
|