v2.0.0-rc2
WORKSPACE snippet
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
HERMETIC_CC_TOOLCHAIN_VERSION = "v2.0.0-rc2"
http_archive(
name = "hermetic_cc_toolchain",
sha256 = "40dff82816735e631e8bd51ede3af1c4ed1ad4646928ffb6a0e53e228e55738c",
urls = [
"https://mirror.bazel.build/github.com/uber/hermetic_cc_toolchain/releases/download/{0}/hermetic_cc_toolchain-{0}.tar.gz".format(HERMETIC_CC_TOOLCHAIN_VERSION),
"https://github.com/uber/hermetic_cc_toolchain/releases/download/{0}/hermetic_cc_toolchain-{0}.tar.gz".format(HERMETIC_CC_TOOLCHAIN_VERSION),
],
)
load("@hermetic_cc_toolchain//toolchain:defs.bzl", zig_toolchains = "toolchains")
# Plain zig_toolchains() will pick reasonable defaults. See
# toolchain/defs.bzl:toolchains on how to change the Zig SDK version and
# download URL.
zig_toolchains()
What's Changed
- remove rules/rules_go by @motiejus in #42
- bump zig sdk to 0.11.0-dev.2619+bd3e248c7 by @motiejus in #44
- remaining linker_version_scripts cleanup by @motiejus in #43
- Re-add linkopts and set -Wl,-headerpad_max_install_names on macos by @jvolkman in #33
- update mailing list archive by @motiejus in #45
- releaser: add MODULE.bazel by @motiejus in #46
- Move -Wl,-S to a separate strip_debug_symbols feature by @jvolkman in #48
- Merge v2.0.0-rc1 by @motiejus in #47
- README updates by @jonathanbaker7 in #49
- remove PUBLICITY.md by @motiejus in #51
- zig cache dir: move to
/tmp/zig-cache
by @motiejus in #52 - maintainers: update the section by @motiejus in #53
- disable dynamic linker for Windows targets by @FabianHahn in #60
- Add FabianHahn to maintainers by @motiejus in #61
- Basic isolated example for rules_cc. by @laurynaslubys in #59
- update releaser boilerplate + encourage v2.0.0-rc1 by @motiejus in #62
- gofmt + fix some shellcheck issues by @motiejus in #63
- releaser: use git-archive again by @motiejus in #64
New Contributors
- @jvolkman made their first contribution in #33
- @FabianHahn made their first contribution in #60
- @laurynaslubys made their first contribution in #59
Full Changelog: v2.0.0-rc1...v2.0.0-rc2