Skip to content

Commit 96e4b50

Browse files
committed
[llvm][bazel] Port 7f3afab
1 parent a709621 commit 96e4b50

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

utils/bazel/llvm-project-overlay/llvm/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,7 @@ cc_library(
320320
deps = [
321321
":config",
322322
":Demangle",
323+
"//third-party/siphash",
323324
# We unconditionally depend on the custom LLVM zlib wrapper. This will
324325
# be an empty library unless zlib is enabled, in which case it will
325326
# both provide the necessary dependencies and configuration defines.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
)

0 commit comments

Comments
 (0)