Skip to content

Commit 6e9cfee

Browse files
committed
[gn] Include the missing BUILD.gn file for libcxxabi includes
This was omitted in r359805. Differential Revision: https://reviews.llvm.org/D61462 llvm-svn: 359828
1 parent b574e11 commit 6e9cfee

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

llvm/utils/gn/secondary/libcxx/include/BUILD.gn

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -264,13 +264,3 @@ copy("include") {
264264
"$clang_resource_dir/include/c++/v1/{{source_target_relative}}",
265265
]
266266
}
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-
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)