Releases: joomcode/bazel_pkg_config
Releases · joomcode/bazel_pkg_config
v0.4
Usage:
bazel_dep(name = "bzlmod")
archive_override(
module_name = "bazel_pkg_config",
commit = "459414b3f8ac86ddfbc4f2da3e43c60779c7df89",
remote = "https://github.com/joomcode/bazel_pkg_config.git",
)
bazel_pkg_config = use_extension("@bazel_pkg_config//:extensions.bzl", "bazel_pkg_config")
bazel_pkg_config.pkg_config(
name = "jemalloc_host",
dynamic = True,
pkg_name = "jemalloc",
)
use_repo(bazel_pkg_config, "jemalloc_host")
Changes:
- Added Bzlmod support.
Full Changelog: v0.3...v0.4
v0.3
Usage:
http_archive(
name = "bazel_pkg_config",
sha256 = "dddeb86b6c2edeb1b53df01898e9ace337848669a8bf518bf1826a0f6597121c",
strip_prefix = "bazel_pkg_config-0.3",
urls = ["https://github.com/joomcode/bazel_pkg_config/archive/refs/tags/v0.3.zip"],
)
load("@bazel_pkg_config//:pkg_config.bzl", "pkg_config")
pkg_config(
name = "vips",
dynamic = True,
)
Changes:
- Added
ignore_includes
andsystem_includes
options (#1)
v0.2
Usage:
http_archive(
name = "bazel_pkg_config",
sha256 = "5f63651c99d98e07997ba1e0e9196f42f3e793764dd7493ec7de1fccbc71b5ed",
strip_prefix = "bazel_pkg_config-0.2",
urls = ["https://github.com/joomcode/bazel_pkg_config/archive/refs/tags/v0.2.zip"],
)
load("@bazel_pkg_config//:pkg_config.bzl", "pkg_config")
pkg_config(
name = "vips",
dynamic = True,
)
Changes:
- added dynamic linking support on remote build farm.
v0.1
Usage:
http_archive(
name = "bazel_pkg_config",
sha256 = "913842a056129d3030fe48502c27fc1700af0b3340f7b652f157f751f3157754",
strip_prefix = "bazel_pkg_config-0.1",
urls = ["https://github.com/joomcode/bazel_pkg_config/archive/refs/tags/v0.1.zip"],
)
load("@bazel_pkg_config//:pkg_config.bzl", "pkg_config")
pkg_config(
name = "vips",
dynamic = True,
)
Changes:
- added dynamic linking support.