File tree 4 files changed +13
-0
lines changed
4 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ bazel_dep(name = "rules_bison", version = "0.3")
18
18
# abseil-cpp and googletest can not be updated beyond the following currently,
19
19
# as newer googletest is not compatible with bazel 6 anymore, and abseil-cpp
20
20
# depends on it :( -- to support all active bazel's, we're stuck till EOL bazel6
21
+ # See https://github.com/chipsalliance/verible/issues/2336
21
22
bazel_dep (name = "googletest" , version = "1.14.0.bcr.1" , dev_dependency = True )
22
23
23
24
bazel_dep (name = "abseil-cpp" , version = "20240116.2" )
Original file line number Diff line number Diff line change @@ -133,6 +133,9 @@ cc_library(
133
133
"layout-optimizer-internal.h" ,
134
134
],
135
135
hdrs = ["layout-optimizer.h" ],
136
+ # Can only add @abseil-cpp//absl/log:vlog_is_on after > absl 20240116
137
+ # https://github.com/chipsalliance/verible/issues/2336
138
+ features = ["-layering_check" ],
136
139
deps = [
137
140
":basic-format-style" ,
138
141
":format-token" ,
Original file line number Diff line number Diff line change @@ -164,6 +164,9 @@ cc_library(
164
164
"verilog-analyzer.h" ,
165
165
"verilog-excerpt-parse.h" ,
166
166
],
167
+ # Can only add @abseil-cpp//absl/log:vlog_is_on after > absl 20240116
168
+ # https://github.com/chipsalliance/verible/issues/2336
169
+ features = ["-layering_check" ],
167
170
deps = [
168
171
"//verible/common/analysis:file-analyzer" ,
169
172
"//verible/common/lexer:token-stream-adapter" ,
@@ -241,6 +244,9 @@ cc_library(
241
244
name = "verilog-linter" ,
242
245
srcs = ["verilog-linter.cc" ],
243
246
hdrs = ["verilog-linter.h" ],
247
+ # Can only add @abseil-cpp//absl/log:vlog_is_on after > absl 20240116
248
+ # https://github.com/chipsalliance/verible/issues/2336
249
+ features = ["-layering_check" ],
244
250
deps = [
245
251
":default-rules" ,
246
252
":lint-rule-registry" ,
Original file line number Diff line number Diff line change @@ -167,6 +167,9 @@ cc_library(
167
167
name = "symbol-table-handler" ,
168
168
srcs = ["symbol-table-handler.cc" ],
169
169
hdrs = ["symbol-table-handler.h" ],
170
+ # Can only add @abseil-cpp//absl/log:vlog_is_on after > absl 20240116
171
+ # https://github.com/chipsalliance/verible/issues/2336
172
+ features = ["-layering_check" ],
170
173
deps = [
171
174
":lsp-conversion" ,
172
175
":lsp-parse-buffer" ,
You can’t perform that action at this time.
0 commit comments