[bazel][libc] Fix bazel build

Differential revision: https://reviews.llvm.org/D126028
This commit is contained in:
Alex Brachet 2022-05-19 22:57:59 +00:00
parent 774674ce9a
commit c3856cb739

View file

@ -766,16 +766,6 @@ no_sanitize_features = [
"-ubsan", "-ubsan",
] ]
cc_library(
name = "string_utils",
hdrs = ["src/string/string_utils.h"],
deps = [
":__support_common",
":__support_cpp_bitset",
":libc_root",
],
)
cc_library( cc_library(
name = "string_memory_utils", name = "string_memory_utils",
hdrs = [ hdrs = [
@ -797,6 +787,17 @@ cc_library(
], ],
) )
cc_library(
name = "string_utils",
hdrs = ["src/string/string_utils.h"],
deps = [
":__support_common",
":__support_cpp_bitset",
":libc_root",
":string_memory_utils"
],
)
libc_function( libc_function(
name = "memchr", name = "memchr",
srcs = ["src/string/memchr.cpp"], srcs = ["src/string/memchr.cpp"],