diff options
Diffstat (limited to 'llvm/utils/gn/build/buildflags.gni')
-rw-r--r-- | llvm/utils/gn/build/buildflags.gni | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/llvm/utils/gn/build/buildflags.gni b/llvm/utils/gn/build/buildflags.gni new file mode 100644 index 00000000000..a28b788418d --- /dev/null +++ b/llvm/utils/gn/build/buildflags.gni @@ -0,0 +1,10 @@ +declare_args() { + # Whether to build with debug information and without optimizations. + is_debug = false +} + +# args that depend on other args must live in a later declare_args() block. +declare_args() { + # Whether to enable assertions. + llvm_enable_assertions = true +} |