We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b574e11 commit 6e9cfeeCopy full SHA for 6e9cfee
llvm/utils/gn/secondary/libcxx/include/BUILD.gn
@@ -264,13 +264,3 @@ copy("include") {
264
"$clang_resource_dir/include/c++/v1/{{source_target_relative}}",
265
]
266
}
267
-
268
-copy("cxxabi_include") {
269
- sources = [
270
- "//libcxxabi/include/__cxxabi_config.h", # ignore for sync script
271
- "//libcxxabi/include/cxxabi.h", # ignore for sync script
272
- ]
273
- outputs = [
274
- "$clang_resource_dir/include/c++/v1/{{source_target_relative}}",
275
276
-}
llvm/utils/gn/secondary/libcxxabi/include/BUILD.gn
@@ -0,0 +1,11 @@
1
+import("//clang/resource_dir.gni")
2
+
3
+copy("include") {
4
+ sources = [
5
+ "__cxxabi_config.h",
6
+ "cxxabi.h",
7
+ ]
8
+ outputs = [
9
+ "$clang_resource_dir/include/c++/v1/{{source_target_relative}}",
10
11
+}
0 commit comments