From: Petr Hosek Date: Thu, 2 May 2019 19:07:23 +0000 (+0000) Subject: [gn] Include libcxx configuration file X-Git-Tag: llvmorg-10-init~6420 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=40028046cdbf54bdf883d4c462f942649cf608fd;p=platform%2Fupstream%2Fllvm.git [gn] Include libcxx configuration file This was omitted in r359806 but is already referenced in the GN build. llvm-svn: 359815 --- diff --git a/llvm/utils/gn/secondary/libcxx/config.gni b/llvm/utils/gn/secondary/libcxx/config.gni new file mode 100644 index 0000000..b90263a --- /dev/null +++ b/llvm/utils/gn/secondary/libcxx/config.gni @@ -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 +}