commit | 26e5a47ef355fd7eb10d7dcb803e662784ea0e21 | [log] [tgz] |
---|---|---|
author | hlopko <hlopko@google.com> | Wed Jul 05 14:06:39 2017 -0400 |
committer | John Cater <jcater@google.com> | Thu Jul 06 07:13:14 2017 -0400 |
tree | 7f0f10d96c686d3012518644e5c6474f17d79fa8 | |
parent | 5ba5144e58365e4ec4c316f1438047346d933df3 [diff] |
Assume crosstools that don't have 'no_legacy_features' feature need patching Right now there are 2 ways how to control crosstool patches. If there is 'no_legacy_features' feature defined, no patching will be performed. If there is not, then depending on whether any c++ action_config is defined one set of patches is applied, or other set of patches is applied. It's a mess, and in the most cases, crosstools that do not define 'no_legacy_features' need the full patching. This cl fixes the crosstools that need the partial patching. RELNOTES: Crosstool patches are only applied if the toolchain doesn't define 'no_legacy_features' feature. PiperOrigin-RevId: 160979463
{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.