blob: e5bdf545da4fb41deeb39e0a95b01e255245f185 (
plain)
1
2
3
4
5
6
7
8
9
10
|
declare_args() {
# libc++ ABI version. Either 1 (default) or 2 (unstable).
libcxx_abi_version = 1
# libc++ inline ABI namespace. Defaults to __n, where n is the ABI version.
libcxx_abi_namespace = ""
# Build timezone database as part of libc++experimental.
libcxx_enable_time_zone_database = target_os == "linux"
}
|