ladybird/Meta/gn/build/buildflags.gni
Sebastian Zaha a0fb1478bf Meta: Add options for lldb and gdb output to gn
This makes it possible to specify (instead of is_debug) a more
specialized is_debug_lldb or is_debug_gdb, so that clang outputs the
proper symbols. (For lldb this fixes issues with formatting by
setting -fstandalone-debug)
2023-08-19 20:09:26 -06:00

26 lines
779 B
Text

declare_args() {
# https://clang.llvm.org/docs/UsersManual.html#controlling-debugger-tuning
# Build with clang for debugging, tuned for a specific debugger.
# Both imply is_debug = true.
is_debug_lldb = false
is_debug_gdb = false
}
# args that depend on other args must live in a later declare_args() block.
declare_args() {
# Build for debugging. Equivalent to is_optimized=false symbol_level=2.
is_debug = is_debug_lldb || is_debug_gdb
}
declare_args() {
# Whether to build with optimizations.
is_optimized = !is_debug
if (is_debug) {
# Debug info symbol level. 0: No symbols; 1: Line numbers; 2: Full symbols.
symbol_level = 2
} else {
# Debug info symbol level. 0: No symbols; 1: Line numbers; 2: Full symbols.
symbol_level = 1
}
}