Skip to content

Commit b0d7717

Browse files
committed
test
1 parent 3a0ed33 commit b0d7717

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

third_party/cuda/BUILD

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,12 @@ cc_library(
4646
":windows": [
4747
"bin/*.dll",
4848
],
49-
"//conditions:default": glob([
50-
"lib64/**/lib*.so",
51-
]),
49+
"//conditions:default": glob(
50+
[
51+
"lib64/**/lib*.so",
52+
],
53+
allow_empty = True,
54+
),
5255
}),
5356
hdrs = glob([
5457
"include/**/*.h",
@@ -66,9 +69,12 @@ cc_library(
6669
":windows": [
6770
"lib/x64/cublas.lib",
6871
],
69-
"//conditions:default": glob([
70-
"lib64/**/*libcublas.so",
71-
]),
72+
"//conditions:default": glob(
73+
[
74+
"lib64/**/*libcublas.so",
75+
],
76+
allow_empty = True,
77+
),
7278
}),
7379
hdrs = glob([
7480
"include/**/*cublas*.h",

0 commit comments

Comments
 (0)