[PATCH] D140510: [libc][obvious] fix bazel after removing vector

Michael Jones via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 21 15:24:24 PST 2022


michaelrj created this revision.
michaelrj added a reviewer: sivachandra.
Herald added subscribers: ecnelises, tschuett.
Herald added a project: All.
michaelrj requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

The vector class was removed from the source code and cmake but not from
the bazel which caused bazel issues. This patch fixes that.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D140510

Files:
  utils/bazel/llvm-project-overlay/libc/BUILD.bazel


Index: utils/bazel/llvm-project-overlay/libc/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/libc/BUILD.bazel
@@ -162,12 +162,6 @@
     ],
 )
 
-libc_support_library(
-    name = "__support_cpp_vector",
-    hdrs = ["src/__support/CPP/vector.h"],
-    deps = [":libc_root"],
-)
-
 libc_support_library(
     name = "__support_cpp_atomic",
     hdrs = ["src/__support/CPP/atomic.h"],


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D140510.484701.patch
Type: text/x-patch
Size: 506 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221221/77d0f41c/attachment.bin>


More information about the llvm-commits mailing list