commit | f8479bfba14c4add2e7064a91405b300c66ed9ad | [log] [tgz] |
---|---|---|
author | Yun Peng <pcloudy@google.com> | Thu Jan 26 16:20:40 2017 +0000 |
committer | Laszlo Csomor <laszlocsomor@google.com> | Thu Jan 26 23:01:33 2017 +0000 |
tree | a9e103f9ae6d1769b50c38a8f0277109b1b6dafb | |
parent | cb8f3e566b43e06b10e6f422197f608b520bb518 [diff] |
msvc_tools.py.tpl: Suppress all warning messages if /w is specified Fixed #2433 Working towards #1897 -- Change-Id: I62ed4eabac5c788f90b10e9dfe4c9ffee6883097 Reviewed-on: https://cr.bazel.build/8492 PiperOrigin-RevId: 145675987 MOS_MIGRATED_REVID=145675987
{Fast, Correct} - Choose two
Bazel is a build tool that builds code quickly and reliably. It is used to build the majority of Google‘s software, and thus it has been designed to handle build problems present in Google’s development environment, including:
A massive, shared code repository, in which all software is built from source. Bazel has been built for speed, using both caching and parallelism to achieve this. Bazel is critical to Google's ability to continue to scale its software development practices as the company grows.
An emphasis on automated testing and releases. Bazel has been built for correctness and reproducibility, meaning that a build performed on a continuous build machine or in a release pipeline will generate bitwise-identical outputs to those generated on a developer's machine.
Language and platform diversity. Bazel's architecture is general enough to support many different programming languages within Google, and can be used to build both client and server software targeting multiple architectures from the same underlying codebase.
Find more background about Bazel in our FAQ.