Skip to content
Open
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
2 changes: 1 addition & 1 deletion .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ common --incompatible_disallow_empty_glob
common --action_env=BAZEL_CXXOPTS=-std=c++17
common --cxxopt='-std=c++17'

build --macos_sdk_version=15.0 --host_macos_minimum_os=11.0 --repo_env=CC=clang --repo_env=CXX=clang++ --cxxopt=--std=c++17 --cxxopt=-Wno-return-type --cxxopt=-Wno-trigraphs --cxxopt=-Wno-implicit-const-int-float-conversion --cxxopt=-Wno-c++11-narrowing --@llvm_zlib//:llvm_enable_zlib=false
build --macos_sdk_version=15.0 --host_macos_minimum_os=11.0 --repo_env=CC=clang --repo_env=CXX=clang++ --cxxopt=--std=c++17 --cxxopt=-Wno-return-type --cxxopt=-Wno-trigraphs --cxxopt=-Wno-implicit-const-int-float-conversion --cxxopt=-Wno-c++11-narrowing --@llvm-project//third-party:llvm_enable_zlib=false
12 changes: 10 additions & 2 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ bazel_dep(name = "platforms", version = "1.1.0")
# https://registry.bazel.build/modules/rules_cc
bazel_dep(name = "rules_cc", version = "0.2.0")

# https://registry.bazel.build/modules/rules_shell
# Required by llvm-project's BUILD files.
bazel_dep(name = "rules_shell", version = "0.8.0")

# https://registry.bazel.build/modules/zlib-ng
# https://registry.bazel.build/modules/zstd
# Required by llvm-project as optional compression dependencies.
bazel_dep(name = "zlib-ng", version = "2.3.3", repo_name = "llvm_zlib")
bazel_dep(name = "zstd", version = "1.5.7.bcr.1", repo_name = "llvm_zstd")

# https://registry.bazel.build/modules/rules_python
bazel_dep(name = "rules_python", version = "1.0.0")

Expand Down Expand Up @@ -49,8 +59,6 @@ llvm_extensions = use_extension("//bazel:extensions.bzl", "llvm_deps")
use_repo(
llvm_extensions,
"llvm-raw",
"llvm_zlib",
"llvm_zstd",
"quickjs",
)

Expand Down
Loading
Loading