OSDN Git Service

[gn] Include libcxx configuration file
authorPetr Hosek <phosek@chromium.org>
Thu, 2 May 2019 19:07:23 +0000 (19:07 +0000)
committerPetr Hosek <phosek@chromium.org>
Thu, 2 May 2019 19:07:23 +0000 (19:07 +0000)
This was omitted in r359806 but is already referenced in the GN build.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@359815 91177308-0d34-0410-b5e6-96231b3b80d8

utils/gn/secondary/libcxx/config.gni [new file with mode: 0644]

diff --git a/utils/gn/secondary/libcxx/config.gni b/utils/gn/secondary/libcxx/config.gni
new file mode 100644 (file)
index 0000000..b90263a
--- /dev/null
@@ -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
+}