| commit | bb984fd26f0fc9b519eb11fe330852f8d1b708a7 | [log] [tgz] |
|---|---|---|
| author | Marcel Hlopko <hlopko@google.com> | Fri Dec 16 16:45:54 2016 +0000 |
| committer | John Cater <jcater@google.com> | Fri Dec 16 17:08:00 2016 +0000 |
| tree | d3bc6fa6999b48a2f24083f7cfb43ce7f73b4b8e | |
| parent | d2997290078e9e5114d604a6cedefda0f0c6dec4 [diff] |
Rollback of commit 52b34308428cfd117470c966d8df329f686fb9ed. *** Reason for rollback *** Rolling forward, cl fixing underlying issue is uploaded, will land this one as soon as I get lgtm to the fix from emscripten crosstool owners. *** Original change description *** Automated [] rollback of commit 2d87bf1937c81ef84358fd5f6a372875f6c6fabf. *** Reason for rollback *** We have to roll back unknown commit, on which this one depends. Will resubmit after I fix the underlying issue. *** Original change description *** Support versioned shared library targets for cc_binary linkshared=1 This change allows versioned shared libraries (e.g. "libfoo.so.1.2") to be built and linked. -- PiperOrigin-RevId: 142263653 MOS_MIGRATED_REVID=142263653
{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.