From 0cc6ce2a5bb336cddab072c2b473263b3bdc3a93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Sat, 5 Feb 2022 11:48:54 +0200 Subject: [PATCH] [readme] toolchain grep and qemu-static ... so it matches what's in the CI. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 89d4639..148f7c9 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ For example, the toolchain `linux_amd64_gnu.2.28` is aliased to used, run: ``` -$ bazel query @zig_sdk//... | sed -En '/.*_toolchain$/ s/.*:(.*)_toolchain$/\1/p' +$ bazel query @zig_sdk//... | grep _toolchain$ ``` ## Specifying non-default toolchains (and not registering at all) @@ -179,7 +179,7 @@ hello, world ``` $ bazel test \ - --run_under=qemu-aarch64 \ + --run_under=qemu-aarch64-static \ --platforms @zig_sdk//:linux_arm64_platform \ --extra_toolchains @zig_sdk//:linux_arm64_musl_toolchain //test/... ...