1
Fork 0
hermetic_cc_toolchain/README.md

82 lines
2.1 KiB
Markdown
Raw Normal View History

# Bazel zig cc toolchain for Go
2021-04-10 01:05:01 +03:00
2021-06-07 23:23:21 +03:00
This is a prototype zig-cc toolchain that can compile cgo programs with these c
libraries:
2021-04-10 01:05:01 +03:00
- glibc 2.19
2021-06-07 23:23:21 +03:00
- musl
2021-04-10 01:05:01 +03:00
2021-06-08 06:56:37 +03:00
glibc 2.19 is the default. That means, glibc 2.19 toolchain is registered with
these basic constraints:
```
[
"@platforms//os:linux",
"@platforms//cpu:x86_64",
]
```
# Testing
2021-04-10 01:05:01 +03:00
2021-06-08 07:01:34 +03:00
## linux cgo + glibc 2.19
2021-04-10 01:05:01 +03:00
2021-06-08 06:56:37 +03:00
Using the default toolchain:
2021-04-10 01:05:01 +03:00
```
2021-06-08 06:56:37 +03:00
$ bazel build --toolchain_resolution_debug=true //test:gognu
...
$ ../bazel-bin/test/gognu_/gognu
hello, world
$ file ../bazel-bin/test/gognu_/gognu
../bazel-bin/test/gognu_/gognu: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 2.0.0, Go BuildID=redacted, with debug_info, not stripped
2021-04-10 01:05:01 +03:00
```
2021-06-08 07:01:34 +03:00
Explicitly the toolchain explicitly `-gnu`:
2021-06-08 06:56:37 +03:00
```
$ bazel run --platforms @com_github_ziglang_zig//:platform_x86_64-linux-gnu //test:gognu
```
2021-06-08 07:01:34 +03:00
## linux cgo + musl
2021-04-10 01:05:01 +03:00
```
2021-06-08 07:01:34 +03:00
$ bazel build --platforms @com_github_ziglang_zig//:platform_x86_64-linux-musl //test:gomusl
...
$ file ../bazel-out/k8-fastbuild-ST-d17813c235ce/bin/test/gomusl_/gomusl
../bazel-out/k8-fastbuild-ST-d17813c235ce/bin/test/gomusl_/gomusl: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked, Go BuildID=redacted, with debug_info, not stripped
$ ../bazel-out/k8-fastbuild-ST-d17813c235ce/bin/test/gomusl_/gomusl
hello, world
2021-04-10 01:05:01 +03:00
```
2021-04-10 02:58:05 +03:00
2021-06-08 07:01:34 +03:00
## macos cgo + gnu
Does not work?
```
$ bazel build --platforms @com_github_ziglang_zig//:platform_x86_64-macos-musl //test:gognu
...
```
2021-06-07 23:22:51 +03:00
## Transient docker environment
2021-04-10 02:58:05 +03:00
```
2021-06-07 23:22:51 +03:00
$ docker run -ti --rm -v $(pwd):/x -w /x debian:buster-slim
# apt update && apt install curl ca-certificates -y && curl -L https://github.com/bazelbuild/bazelisk/releases/download/v1.7.5/bazelisk-linux-amd64 > /usr/local/bin/bazel && chmod +x /usr/local/bin/bazel
2021-04-10 02:58:05 +03:00
# export CC=/usr/bin/false
```
2021-06-08 06:56:37 +03:00
And run the `bazel build` commands above. Take a look at `.build.yml` and see
how CI does it.
2021-06-08 08:00:53 +03:00
# Appendix: compiling manually
zcc
```
#!/bin/bash
exec zig cc -target x86_64-macos-gnu "$@"
```
Build:
``
GOOS=darwin GOARCH=amd64 CC=zcc go build -ldflags "-linkmode external -extldflags -static" hello.go
```