1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

[gn] Include libcxx configuration file

This was omitted in r359806 but is already referenced in the GN build.

llvm-svn: 359815
This commit is contained in:
Petr Hosek 2019-05-02 19:07:23 +00:00
parent fdc10c3a09
commit 52777ec83d

View File

@ -0,0 +1,10 @@
declare_args() {
# ABI version of libc++. Can be either 1 or 2, where 2 is currently not stable. Defaults to 1.
libcxx_abi_version = 1
# The inline ABI namespace used by libc++. It defaults to __n where `n` is the current ABI version.
libcxx_abi_namespace = ""
# Unstable ABI of libc++.
libcxx_abi_unstable = false
}