mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-05-11 07:26:32 +03:00
- Replace jemalloc.h genrule with cross-platform cc_binary (jemalloc_hdr_gen) - Migrate all rules_cc imports from defs.bzl compat shim to granular paths - Add sh_binary targets for shell script genrules - Pin MODULE.bazel deps to minimum versions required by Bazel 8 - Add bazel_lib and rules_shell dependencies - Rename jemalloc_core to lib/jemalloc for conventional output naming
14 lines
554 B
Text
14 lines
554 B
Text
module(
|
|
name = "jemalloc",
|
|
version = "5.3.0-bcr.alpha.5",
|
|
bazel_compatibility = [">=7.4.0"], # need support for "overlay" directory and cxxopts in cc_binary
|
|
compatibility_level = 5,
|
|
)
|
|
|
|
bazel_dep(name = "bazel_lib", version = "3.2.2")
|
|
bazel_dep(name = "bazel_skylib", version = "1.8.1")
|
|
bazel_dep(name = "libunwind", version = "1.8.1")
|
|
bazel_dep(name = "platforms", version = "0.0.11")
|
|
bazel_dep(name = "rules_cc", version = "0.2.4")
|
|
bazel_dep(name = "rules_license", version = "1.0.0")
|
|
bazel_dep(name = "rules_shell", version = "0.4.1")
|