commit | 553499a9837cabe764f68e88faa8ee44200d1b04 | [log] [tgz] |
---|---|---|
author | Dave MacLachlan <dmaclach@google.com> | Fri Oct 16 18:43:43 2015 +0000 |
committer | Lukacs Berki <lberki@google.com> | Mon Oct 19 08:18:50 2015 +0000 |
tree | c8eb560e1ecc42d8c3d9e1b96b6d1cb3f0c7c52a | |
parent | ac9cf072b34c4d1761ef2bb433dd8e57ca6317a3 [diff] |
Fix for SIOCGIFINDEX undefined on Mac (https://github.com/bazelbuild/bazel/issues/510) This compiles with the assumption that all we were using SIOCGIFINDEX for was to verify that the name was valid. I think the code as written before was actually wrong as the index value, and the flags value for a ifreq structure actually shared memory, so we were potentially setting flags that we didn't want to set based on the actual index returned. -- MOS_MIGRATED_REVID=105619856
{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.