This commit is contained in:
Ethan Mahintorabi 2026-02-15 20:18:36 +08:00 committed by GitHub
commit 5a55206e59
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",