1
Fork 0
Go to file
Motiejus Jakštys 907f56a155 add onboarding instructions 2021-08-06 14:33:30 +03:00
bin wip: go repositories 2021-07-21 14:59:33 +03:00
test add some C dependencies 2021-07-21 15:02:04 +03:00
toolchain fix allowed toolchains 2021-08-06 12:19:11 +03:00
.bazelrc remove non-required options from .bazelrc 2021-06-30 16:00:42 +03:00
.bazelversion downgrade bazel to 3.7.0 2021-06-28 12:52:20 +03:00
.build.yml use newer arm64 glibc explicitly 2021-08-06 09:49:52 +03:00
.envrc fix .envrc 2021-07-21 16:28:33 +03:00
.gitignore downgrade bazel to 3.7.0 2021-06-28 12:52:20 +03:00
BUILD add gazelle:prefix 2021-06-07 22:40:51 +03:00
LICENSE add license 2021-06-11 06:16:23 +03:00
README.md add onboarding instructions 2021-08-06 14:33:30 +03:00
WORKSPACE fix flock 2021-08-06 11:23:39 +03:00
build-and-file move setup to .envrc 2021-06-28 14:00:47 +03:00
go.mod add some C dependencies 2021-07-21 15:02:04 +03:00
go.sum add some C dependencies 2021-07-21 15:02:04 +03:00
repositories.bzl add some C dependencies 2021-07-21 15:02:04 +03:00

README.md

builds.sr.ht status

Bazel zig cc toolchain for Go

This is an early stage zig-cc toolchain that can cross-compile cgo programs to these os/archs:

  • amd64-linux-gnu.2.19
  • amd64-linux-musl
  • arm64-linux-gnu.2.28
  • arm64-linux-musl
  • amd64-macos
  • arm64-macos

Usage

Add this to your WORKSPACE:

BAZEL_ZIG_CC_VERSION = "0.2"

http_archive(
    name = "bazel-zig-cc",
    sha256 = "0af0493e2d4822a94803e8a83703d25e0f9d8fe6ec4daf3b0ed3ca4cd6076650",
    strip_prefix = "bazel-zig-cc-{}".format(BAZEL_ZIG_CC_VERSION),
    urls = ["https://git.sr.ht/~motiejus/bazel-zig-cc/archive/{}.tar.gz".format(BAZEL_ZIG_CC_VERSION)],
)

load("@bazel-zig-cc//toolchain:defs.bzl", zig_register_toolchains = "register_toolchains")

zig_register_toolchains()

This will register the "default" toolchains. Look into register_toolchains on which parameters it accepts.

Testing

linux cgo + glibc 2.19

$ bazel build --platforms @io_bazel_rules_go//go/toolchain:linux_amd64_cgo //test:hello
$ file bazel-out/k8-fastbuild-ST-d17813c235ce/bin/test/hello_/hello
bazel-out/k8-fastbuild-ST-d17813c235ce/bin/test/hello_/hello: 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

linux cgo + musl

$ bazel build \
    --platforms @io_bazel_rules_go//go/toolchain:linux_amd64_cgo \
    --extra_toolchains @zig_sdk//:x86_64-linux-musl_toolchain //test:hello
...
$ file ../bazel-out/k8-fastbuild-ST-d17813c235ce/bin/test/hello_/hello
../bazel-out/k8-fastbuild-ST-d17813c235ce/bin/test/hello_/hello: 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/hello_/hello
hello, world

macos cgo

$ bazel build --platforms @io_bazel_rules_go//go/toolchain:darwin_amd64_cgo //test:gognu
...
$ file bazel-bin/test/gognu_/gognu
bazel-bin/test/gognu_/gognu: Mach-O 64-bit x86_64 executable, flags:<NOUNDEFS|DYLDLINK|TWOLEVEL|PIE>

Transient docker environment

$ docker run -ti --rm -v $(pwd):/x -w /x debian:buster-slim
# apt update && apt install curl -y && curl -L https://github.com/bazelbuild/bazelisk/releases/download/v1.9.0/bazelisk-linux-amd64 > /usr/local/bin/bazel && chmod +x /usr/local/bin/bazel
# export CC=/usr/bin/false

And run the bazel build commands above. Take a look at .build.yml and see how CI does it.

Known Issues

Closed issues: