1
Fork 0
hermetic_cc_toolchain/build-and-file

14 lines
374 B
Plaintext
Raw Normal View History

2021-06-19 16:45:33 +03:00
#!/bin/bash
# 'bazel' binary is stored in $HOME in builds.sr.ht.
export PATH=$PATH:$HOME
2021-06-20 14:37:28 +03:00
# -o pipefail fails `bazel aquery ...`: it errs if it can't output to stdout.
set -xeu
2021-06-19 16:45:33 +03:00
2021-06-19 16:48:26 +03:00
bazel build "$@"
2021-06-19 16:45:33 +03:00
execpath=$(bazel aquery "$@" 2>/dev/null | \
awk "/action 'GoLink/{f=1};/Outputs: / &&f{print;exit}" | \
awk -F'\\[|\\]' '{print $2}')
file "$execpath" | tee /dev/stderr