9
9
about zig-cc; the rest of the README will present how to use this toolchain
10
10
from Bazel.
11
11
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 .
17
17
18
18
While copy-pasting the code in your project, attempt to read and understand the
19
19
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"
58
58
zig_toolchains()
59
59
```
60
60
61
- And this to ` .bazelrc ` :
61
+ And this to ` .bazelrc ` on a Unix-y systems :
62
62
63
63
```
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
65
81
```
66
82
67
83
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.
74
92
75
93
### Use case: manually build a single target with a specific zig cc toolchain
76
94
@@ -315,6 +333,8 @@ Currently zig cache is stored in `/tmp/hermetic_cc_toolchain`, so `bazel clean
315
333
--expunge` will not clear the zig cache. Zig's cache should be stored somewhere
316
334
in the project's path. It is not clear how to do it.
317
335
336
+ See [ #83 ] [ pr-83 ] for more context.
337
+
318
338
### OSX: sysroot
319
339
320
340
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
323
343
long as the OSX sysroot must come through an ` http_archive ` .
324
344
325
345
In essence, OSX target support is not well tested with ` hermetic_cc_toolchain ` .
346
+ Also see [ #10 ] [ pr-10 ] .
326
347
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
331
349
332
- ### Number of libc stubs with Go 1.20+
350
+ Add to ` .bazelrc ` :
333
351
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
+ ```
339
355
340
356
## Host Environments
341
357
@@ -362,7 +378,6 @@ $ docker run -e CC=/usr/bin/false -ti --rm -v "$PWD:/x" -w /x debian:bookworm-sl
362
378
# ./ci/test
363
379
# ./ci/zig-wrapper
364
380
```
365
-
366
381
## Communication
367
382
368
383
We maintain two channels for comms:
@@ -424,3 +439,6 @@ On a more practical note:
424
439
[ subset ] : https://en.wikipedia.org/wiki/Subset
425
440
[ universal-headers ] : https://github.com/ziglang/universal-headers
426
441
[ 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
0 commit comments