From 06aab8b41cc22d9f4a0e08cb646e7c8acdc59835 Mon Sep 17 00:00:00 2001 From: Yannic Date: Thu, 27 Feb 2025 21:42:05 +0100 Subject: [PATCH] [readme] Fix build instructions for `--config=goma` The build fails with linking errors without setting `--//:use_android_glibc=true` --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9309cfd..06a3f26 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ Target //:artifacts_tar up-to-date: To build a complete set of binaries for reclient with a goma deps scanner: ```shell -$ bazelisk build --config=goma //:artifacts_tar +$ bazelisk build --config=goma --//:use_android_glibc=true //:artifacts_tar [...] Target //:artifacts_tar up-to-date: bazel-bin/artifacts.tar @@ -81,7 +81,7 @@ Target //:artifacts_tar up-to-date: To install all binaries to a `$BINDIR` ```shell -$ bazelisk run --config=goma //:artifacts_install -- --destdir $BINDIR +$ bazelisk run --config=goma --//:use_android_glibc=true //:artifacts_install -- --destdir $BINDIR [...] INFO: Running command line: bazel-bin/artifacts_install --destdir $BINDIR ``` @@ -118,7 +118,7 @@ Reclient can be built to use Goma's input processor. Goma's input processor is follows: ```shell -bazelisk build //:artifacts_tar --config=goma +bazelisk build //:artifacts_tar --config=goma --//:use_android_glibc=true ```