File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
utils/bazel/llvm-project-overlay Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -320,6 +320,7 @@ cc_library(
320
320
deps = [
321
321
":config" ,
322
322
":Demangle" ,
323
+ "//third-party/siphash" ,
323
324
# We unconditionally depend on the custom LLVM zlib wrapper. This will
324
325
# be an empty library unless zlib is enabled, in which case it will
325
326
# both provide the necessary dependencies and configuration defines.
Original file line number Diff line number Diff line change
1
+ # This file is licensed under the Apache License v2.0 with LLVM Exceptions.
2
+ # See https://llvm.org/LICENSE.txt for license information.
3
+ # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4
+
5
+ package (default_visibility = ["//visibility:public" ])
6
+
7
+ licenses (["notice" ])
8
+
9
+ cc_library (
10
+ name = "siphash" ,
11
+ hdrs = ["include/siphash/SipHash.h" ],
12
+ strip_include_prefix = "include" ,
13
+ )
You can’t perform that action at this time.
0 commit comments