This commit is contained in:
Ethan Mahintorabi 2025-12-09 18:39:32 -08:00 committed by GitHub
commit 36e076996e
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:linux": ["util/MachineLinux.cc"],
"@platforms//os:macos": ["util/MachineApple.cc"],
}),
visibility = ["//:__subpackages__"],
deps = [
"@cudd",