Skip to content

Commit

Permalink
deps/icu: Fix Windows build w/ Bazel 7
Browse files Browse the repository at this point in the history
With Bazel 7, trying to compile icu:common resulted in
`cl : Command line error D8004 : '/I' requires an argument`
  • Loading branch information
robinlinden committed Dec 11, 2023
1 parent d1899f3 commit b11d5a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions third_party/icu.BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ cc_library(
copts = select({
"@platforms//os:windows": [
"/GR",
"-I source/common/",
"-I source/common/unicode/",
"-I source/stubdata/",
"-Isource/common/",
"-Isource/common/unicode/",
"-Isource/stubdata/",
],
"//conditions:default": [
"-frtti",
Expand Down

0 comments on commit b11d5a1

Please sign in to comment.