[PATCH] D126028: [bazel][libc] Fix bazel build
Alex Brachet via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 19 15:59:14 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rGc3856cb7398e: [bazel][libc] Fix bazel build (authored by abrachet).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D126028/new/
https://reviews.llvm.org/D126028
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
@@ -766,16 +766,6 @@
"-ubsan",
]
-cc_library(
- name = "string_utils",
- hdrs = ["src/string/string_utils.h"],
- deps = [
- ":__support_common",
- ":__support_cpp_bitset",
- ":libc_root",
- ],
-)
-
cc_library(
name = "string_memory_utils",
hdrs = [
@@ -797,6 +787,17 @@
],
)
+cc_library(
+ name = "string_utils",
+ hdrs = ["src/string/string_utils.h"],
+ deps = [
+ ":__support_common",
+ ":__support_cpp_bitset",
+ ":libc_root",
+ ":string_memory_utils"
+ ],
+)
+
libc_function(
name = "memchr",
srcs = ["src/string/memchr.cpp"],
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D126028.430836.patch
Type: text/x-patch
Size: 875 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220519/507e5ad2/attachment.bin>
More information about the llvm-commits
mailing list