xref: /llvm-project/llvm/utils/gn/secondary/libcxx/config.gni (revision 8f675d1a26b1e0acf9b007f6ca8af18964a70594)
1declare_args() {
2  # libc++ ABI version. Either 1 (default) or 2 (unstable).
3  libcxx_abi_version = 1
4
5  # libc++ inline ABI namespace. Defaults to __n, where n is the ABI version.
6  libcxx_abi_namespace = ""
7
8  # Build timezone database as part of libc++experimental.
9  libcxx_enable_time_zone_database = target_os == "linux"
10}
11