Releases: storypku/bazel_iwyu
Releases · storypku/bazel_iwyu
bazel-iwyu 0.20 is out
bazel_iwyu 0.19.2
- Support for AArch64 restored
- IWYU issue #1162 fixed
To use, add the following to your WORKSPACE file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "com_github_storypku_bazel_iwyu",
sha256 = "aa78c331a2cb139f73f7d74eeb4d5ab29794af82023ef5d6d5194f76b7d37449",
strip_prefix = "bazel_iwyu-0.19.2",
urls = [
"https://github.com/storypku/bazel_iwyu/archive/0.19.2.tar.gz",
],
)
load("@com_github_storypku_bazel_iwyu//bazel:dependencies.bzl", "bazel_iwyu_dependencies")
bazel_iwyu_dependencies()
bazel_iwyu 0.19
Bump Include-What-You-Use to 0.19 with angle-bracket-curse dirty fixed.
0.0.7: Toward remote execution support
[IWYU]: support for remote execution
bazel_iwyu 0.0.5
What's New since 0.0.4
- Prebuilt IWYU 0.18.0 binaries for both x86_64 and aarch64 Linux.
bazel_iwyu 0.0.4
What's New Compared to 0.0.3
- Support for custom IWYU options
bazel_iwyu 0.0.3
This release added support for custom IWYU mapping files.
Prebuilt IWYU 0.18.0 Binaries for Linux x86_64 and aarch64
Host prebuilt IWYU 0.18.0 binaries for Linux x86_64 and aarch64.
bazel_iwyu 0.0.2
Features:
- Prebuilt IWYU binary shipped for Linux x86_64.
- Instructions on use bazel_iwyu as an external dependency
Prebuilt IWYU 0.18.0 Binaries
- The prebuilt iwyu 0.18.0 binary was built with clang/llvm 14.0.0 for x86_64 Linux. Tested on Ubuntu 18.04.6.
- To workaround IWYU Issue #100, clang headers from the
lib/clang/14.0.0/include
directory of clang/llvm binary release were bundled. - Changed
#!/usr/bin/env python
to#!/usr/bin/env python3
iniwyu_tool.py
andfix_includes.py
. - Please refer to IWYU GitHub on how to build IWYU yourself.