Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .bazelrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
common --enable_bzlmod
# sv-lang 10.0.bcr.2 (slang at f04e8156 with the foreign_cc cmake -xc++
# fix) is pending upstream as a PR against bazelbuild/bazel-central-
# registry: https://github.com/bazelbuild/bazel-central-registry/pull/8987
# Remove this registry line once the version lands on BCR.
common --registry=https://raw.githubusercontent.com/oharboe/bazel-central-registry/1beaf797951046d93a2f656d4238c954a21833e5/
common --registry=https://bcr.bazel.build/
build --workspace_status_command=tools/workspace_status.sh

# Release builds embed real git version info; dev builds use cache-safe placeholders.
Expand Down
25 changes: 22 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ bazel_dep(name = "googletest", version = "1.17.0.bcr.2")
bazel_dep(name = "openmp", version = "21.1.5.bcr.1")
bazel_dep(name = "or-tools", version = "9.15")
bazel_dep(name = "spdlog", version = "1.15.1")
bazel_dep(name = "sv-lang", version = "10.0.bcr.2")
bazel_dep(name = "sv-lang", version = "10.0.1-20260316-f04e8156")
bazel_dep(name = "tcl_lang", version = "9.0.2.bcr.1")
bazel_dep(name = "tcmalloc", version = "0.0.0-20250927-12f2552")
bazel_dep(name = "yaml-cpp", version = "0.9.0")
Expand Down Expand Up @@ -105,7 +105,7 @@ bazel_dep(name = "rules_nodejs", version = "6.7.3", dev_dependency = True)
bazel_dep(name = "bazel-orfs", dev_dependency = True)
bazel_dep(name = "bazel-orfs-verilog", dev_dependency = True)

BAZEL_ORFS_COMMIT = "78f19f25cec73bdec3517a76465dec7ce17ce227"
BAZEL_ORFS_COMMIT = "6ebadeb4be5c9ada103081c9a5e668c014126616"

BAZEL_ORFS_REMOTE = "https://github.com/The-OpenROAD-Project/bazel-orfs.git"

Expand Down Expand Up @@ -143,7 +143,7 @@ archive_override(
urls = ["https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts/archive/" + ORFS_COMMIT + ".tar.gz"],
)

bazel_dep(name = "yosys", version = "0.62.bcr.2", dev_dependency = True)
bazel_dep(name = "yosys", version = "0.64", dev_dependency = True)

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@maliberty yosys bump

# yosys-slang is not on BCR. Pin to a commit on povik/yosys-slang master
# that has the upstream Bazel build (povik/yosys-slang#310) and the
Expand Down Expand Up @@ -252,3 +252,22 @@ single_version_override(
patches = ["//bazel:boost_context_disable_parse_headers.patch"],
version = BOOST_VERSION,
)

# scip 9.2.3's tinycthread uses bare C11 <threads.h> names. Backport
# scipopt/scip@cc917e07 (TNY_ prefix) until a fixed release lands in BCR.
single_version_override(
module_name = "scip",
patch_strip = 1,
patches = ["//bazel:scip_tinycthread_tny_prefix.patch"],
version = "9.2.3",
)

# sed 4.9 vendors gnulib polyfills whose `#undef <name>` is gated on
# _LIBC; glibc 2.43+'s _Generic <string.h> macros break the polyfill
# decls. Drop the gate locally; lift override when upstream gnulib does.
single_version_override(
module_name = "sed",
patch_strip = 1,
patches = ["//bazel:sed_gnulib_polyfill_undef.patch"],
version = "4.9.bcr.5",
)
Loading
Loading