Merge pull request #293 from fredowski/bazel-macos

bazel/macos: Changed bazel BUILD file to have MachineApple.cc for Macos build
This commit is contained in:
Matt Liberty 2026-02-25 19:15:42 +00:00 committed by GitHub
commit 6737553991
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

5
BUILD
View File

@ -390,7 +390,10 @@ cc_library(
"util",
"verilog",
],
textual_hdrs = ["util/MachineLinux.cc"],
textual_hdrs = select({
"@platforms//os:osx": ["util/MachineApple.cc"],
"//conditions:default": ["util/MachineLinux.cc"],
}),
visibility = ["//:__subpackages__"],
deps = [
"@cudd",