summaryrefslogtreecommitdiffstats
path: root/llvm/utils/gn/build/buildflags.gni
blob: 4dcdc962b7d1164bd212b3ecea94061163747225 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
}
OpenPOWER on IntegriCloud