Skip to content

Commit a0cec57

Browse files
author
Motiejus Jakštys
committed
upgrading to Bazel 7
- `.bazelrc`: `sandbox_add_mount_pair=/tmp/zig-cache` (if you can) or `/tmp` (if not) is now required everywhere. - `.bazelrc` and `README`: remove deprecated/now-default flags. - `README`: add links to #10 and #83. - `README`: mention bzlmod. - `examples/*/.bazelrc`: make them the same for a better recommendation. Fixes #134.
1 parent cb41f44 commit a0cec57

File tree

5 files changed

+55
-34
lines changed

5 files changed

+55
-34
lines changed

.bazelrc

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
common --enable_bzlmod
2-
31
test --sandbox_default_allow_network=false
42
test --test_output=errors
53

64
build --verbose_failures
75
build --worker_sandboxing
86

9-
build --experimental_reuse_sandbox_directories
10-
build --incompatible_enable_cc_toolchain_resolution
117
build --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1
128
build --experimental_output_directory_naming_scheme=diff_against_dynamic_baseline
9+
build --sandbox_add_mount_pair=/tmp

.bazelversion

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.4.0
1+
7.0.0

README.md

+42-24
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ Read
99
about zig-cc; the rest of the README will present how to use this toolchain
1010
from Bazel.
1111

12-
Configuring toolchains in Bazel is complex, under-documented, and fraught with
13-
peril. We, the team behind `hermetic_cc_toolchain`,are still confused on how
14-
this all works, and often wonder why it works at all. That aside, we made
15-
our best effort to make `hermetic_cc_toolchain` usable for your C/C++/CGo
16-
projects, with as many guardrails as we could install.
12+
Configuring toolchains in Bazel is complex and fraught with peril. We, the team
13+
behind `hermetic_cc_toolchain`, are still confused on how this all works, and
14+
often wonder why it works at all. That aside, we made our best effort to make
15+
`hermetic_cc_toolchain` usable for your C/C++/CGo projects, with as many
16+
guardrails can be installed.
1717

1818
While copy-pasting the code in your project, attempt to read and understand the
1919
text surrounding the code snippets. This will save you hours of head
@@ -58,19 +58,37 @@ load("@hermetic_cc_toolchain//toolchain:defs.bzl", zig_toolchains = "toolchains"
5858
zig_toolchains()
5959
```
6060

61-
And this to `.bazelrc`:
61+
And this to `.bazelrc` on a Unix-y systems:
6262

6363
```
64-
build --incompatible_enable_cc_toolchain_resolution
64+
build --sandbox_add_mount_pair=/tmp
65+
```
66+
67+
Windows:
68+
69+
```
70+
build --sandbox_add_mount_pair=C:\Temp
71+
```
72+
73+
The directories can be narrowed down to `/tmp/zig-cache` and
74+
`C:\Temp\hermetic_cc_toolchain` respectively if it can be ensured they will be
75+
created before the invocation of `bazel build`. See [#83][pr-83] for more
76+
context. If a different place is prefferred for zig cache, set:
77+
78+
```
79+
build --repo_env=HERMETIC_CC_TOOLCHAIN_CACHE_PREFIX=/path/to/cache
80+
build --sandbox_add_mount_pair=/path/to/cache
6581
```
6682

6783
The snippets above will download the zig toolchain and make the bazel
68-
toolchains available for registration and usage. If you do nothing else, this
69-
may work. The `.bazelrc` snippet instructs Bazel to use the registered "new
70-
kinds of toolchains". All above are required regardless of how wants to use it.
71-
The next steps depend on how one wants to use `hermetic_cc_toolchain`. The
72-
descriptions below is a gentle introduction to C++ toolchains from "user's
73-
perspective" too.
84+
toolchains available for registration and usage. If nothing else is done, this
85+
will work for some minimal use cases. The `.bazelrc` snippet instructs Bazel to
86+
use the registered "new kinds of toolchains". The next steps depend on how one
87+
wants to use `hermetic_cc_toolchain`. The descriptions below is a gentle
88+
introduction to C++ toolchains from "user's perspective" too.
89+
90+
See [examples][examples] for some other recommended `.bazelrc` flags, as well
91+
as how to use `hermetic_cc_toolchain` with bzlmod.
7492

7593
### Use case: manually build a single target with a specific zig cc toolchain
7694

@@ -315,6 +333,8 @@ Currently zig cache is stored in `/tmp/hermetic_cc_toolchain`, so `bazel clean
315333
--expunge` will not clear the zig cache. Zig's cache should be stored somewhere
316334
in the project's path. It is not clear how to do it.
317335

336+
See [#83][pr-83] for more context.
337+
318338
### OSX: sysroot
319339

320340
For non-trivial programs (and for all darwin/arm64 cgo programs) MacOS SDK may
@@ -323,19 +343,15 @@ is currently not implemented, but patches implementing it will be accepted, as
323343
long as the OSX sysroot must come through an `http_archive`.
324344

325345
In essence, OSX target support is not well tested with `hermetic_cc_toolchain`.
346+
Also see [#10][pr-10].
326347

327-
## Known Issues In Upstream
328-
329-
This section lists issues that we have stumbled into when using `zig cc`, and
330-
is outside of `hermetic_cc_toolchain`'s control.
348+
### Bazel 6 or earlier
331349

332-
### Number of libc stubs with Go 1.20+
350+
Add to `.bazelrc`:
333351

334-
Until Go 1.19 the number of glibc stubs that needed to be compiled was strictly
335-
controlled. Go 1.20 no longer ships with pre-compiled archive files for the
336-
standard library, and it generates them on the fly, causing many extraneous
337-
libc stubs. Therefore, the initial compilation will take longer until those
338-
stubs are pre-cached.
352+
```
353+
build --incompatible_enable_cc_toolchain_resolution
354+
```
339355

340356
## Host Environments
341357

@@ -362,7 +378,6 @@ $ docker run -e CC=/usr/bin/false -ti --rm -v "$PWD:/x" -w /x debian:bookworm-sl
362378
# ./ci/test
363379
# ./ci/zig-wrapper
364380
```
365-
366381
## Communication
367382

368383
We maintain two channels for comms:
@@ -424,3 +439,6 @@ On a more practical note:
424439
[subset]: https://en.wikipedia.org/wiki/Subset
425440
[universal-headers]: https://github.com/ziglang/universal-headers
426441
[go-monorepo]: https://www.uber.com/blog/go-monorepo-bazel/
442+
[pr-83]: https://github.com/uber/hermetic_cc_toolchain/issues/83
443+
[pr-10]: https://github.com/uber/hermetic_cc_toolchain/issues/10
444+
[examples]: https://github.com/uber/hermetic_cc_toolchain/tree/main/examples

examples/bzlmod/.bazelrc

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
common --enable_bzlmod
1+
# Copyright 2023 Uber Technologies, Inc.
2+
# Licensed under the MIT License
23
test --sandbox_default_allow_network=false
34
test --test_output=errors
45

56
build --verbose_failures
67
build --worker_sandboxing
78

8-
build --experimental_reuse_sandbox_directories
9-
build --incompatible_enable_cc_toolchain_resolution
109
build --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1
11-
build --experimental_output_directory_naming_scheme=diff_against_baseline
10+
build --sandbox_add_mount_pair=/tmp
11+
build --experimental_output_directory_naming_scheme=diff_against_dynamic_baseline

examples/rules_cc/.bazelrc

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Copyright 2023 Uber Technologies, Inc.
22
# Licensed under the MIT License
3+
test --sandbox_default_allow_network=false
4+
test --test_output=errors
5+
6+
build --verbose_failures
7+
build --worker_sandboxing
38

4-
build --incompatible_enable_cc_toolchain_resolution
59
build --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1
10+
build --sandbox_add_mount_pair=/tmp
11+
build --experimental_output_directory_naming_scheme=diff_against_dynamic_baseline

0 commit comments

Comments
 (0)