I was wondering if its possible for platform-specific default Bazel build flags.
For example, we want to use --workspace_status_command
but this must be a shell script on Linux and must point towards a batch script for Windows.
Is there a way we can write in the tools/bazel.rc
file something like...
if platform=WINDOWS build: --workspace_status_command=status_command.bat
if platform=LINUX build: --workspace_status_command=status_command.sh
We could generate a .bazelrc file by having the users run a script before building, but it would be cleaner/nicer if this was not neccessary.
Thanks
Yes, kind of. You can specify config-specific bazelrc entries, which you can select by passing
--config=<configname>
.For example your bazelrc could look like:
And you'd build like so:
or:
You have to be careful not to mix semantically conflicting
--config
flags (Bazel doesn't prevent you from that). Though it will work, the results may be unpredictable when the configs tinker with the same flags.Passing --config to all commands is tricky, it depends on developers remembering to do this, or controlling the places where Bazel is called.
I think a better answer would be to teach the version control system how to produce the values, like by putting a
git-bazel-stamp
script on the$PATH
/%PATH%
so thatgit bazel-stamp
works.Then we need
workspace_status_command
to allow commands from the PATH rather than a path on disk.