blob: ff9939ae9636c38f38f003f94e55787f3529fc67 [file] [log] [blame] [view]
Kristina Chodorow974b2082015-03-31 14:49:30 +00001---
2layout: default
Googlera0d555f2015-04-22 08:32:33 +00003title: FAQ
Googler3fb27ca2015-04-30 21:38:04 +00004nav: faq
Kristina Chodorow974b2082015-03-31 14:49:30 +00005---
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01006
7What is Bazel?
Googlera1a53032015-08-31 20:07:23 +00008--------------
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01009
Googlera1a53032015-08-31 20:07:23 +000010Bazel is a tool that automates software builds and tests. Supported build tasks
11include running compilers and linkers to produce executable programs and
12libraries, and assembling deployable packages for Android, iOS and other target
13environments. Bazel is similar to other tools like Make, Ant, Gradle, Buck,
14Pants and Maven.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010015
16What is special about Bazel?
Googlera1a53032015-08-31 20:07:23 +000017----------------------------
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010018
19Bazel was designed to fit the way software is developed at Google. It
20has the following features:
21
Googler28711af2016-06-24 16:41:23 +000022* Multi-language support: Bazel supports Java, Objective-C and C++ out
23 of the box, and can be extended to support arbitrary programming
24 languages.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010025
Googler28711af2016-06-24 16:41:23 +000026* High-level build language: Projects are described in the BUILD
27 language, a concise text format that describes a project as sets of
28 small interconnected libraries, binaries and tests. In contrast, with
29 tools like Make, you have to describe individual files and compiler
30 invocations.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010031
Googler28711af2016-06-24 16:41:23 +000032* Multi-platform support: The same tool and the same BUILD files can
33 be used to build software for different architectures, and even
34 different platforms. At Google, we use Bazel to build everything from
35 server applications running on systems in our data centers to client apps
36 running on mobile phones.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010037
Googler28711af2016-06-24 16:41:23 +000038* Reproducibility: In BUILD files, each library, test and binary must
39 specify its direct dependencies completely. Bazel uses this
40 dependency information to know what must be rebuilt when you make
41 changes to a source file, and which tasks can run in parallel. This
42 means that all builds are incremental and will always produce the
43 same result.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010044
Googler28711af2016-06-24 16:41:23 +000045* Scalable: Bazel can handle large builds; at Google, it is common for
46 a server binary to have 100k source files, and builds where no files
47 were changed take about ~200ms.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010048
49
Laszlo Csomor9f62c0b2015-03-12 14:31:58 +000050Why doesn't Google use ...?
Googlera1a53032015-08-31 20:07:23 +000051---------------------------
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010052
Googler28711af2016-06-24 16:41:23 +000053* Make, Ninja: These tools give very exact control over what commands
54 get invoked to build files, but it's up to the user to write rules
55 that are correct.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010056
Googler28711af2016-06-24 16:41:23 +000057 Users interact with Bazel on a higher level. For example, Bazel has
58 built-in rules for "Java test", "C++ binary", and notions such as
59 "target platform" and "host platform". These rules have been battle
60 tested to be foolproof.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010061
Googler28711af2016-06-24 16:41:23 +000062* Ant and Maven: Ant and Maven are primarily geared toward Java, while
63 Bazel handles multiple languages. Bazel encourages subdividing
64 codebases in smaller reusable units, and can rebuild only ones that
65 need rebuilding. This speeds up development when working with larger
66 codebases.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010067
Googler28711af2016-06-24 16:41:23 +000068* Gradle: Bazel configuration files are much more structured than
69 Gradle's, letting Bazel understand exactly what each action does.
70 This allows for more parallelism and better reproducibility.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010071
Googler28711af2016-06-24 16:41:23 +000072* Pants, Buck: Both tools were created and developed by ex-Googlers at
73 Twitter and Foursquare, and Facebook respectively. They have been modeled
74 after Bazel, but their feature sets are different, so they aren't viable
75 alternatives for us.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010076
77
Googlera1a53032015-08-31 20:07:23 +000078Where did Bazel come from?
79--------------------------
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010080
81Bazel is a flavor of the tool that Google uses to build its server
Googlera1a53032015-08-31 20:07:23 +000082software internally. It has expanded to build other software as well,
83like mobile apps (iOS, Android) that connect to our servers.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010084
85Did you rewrite your internal tool as open-source? Is it a fork?
86----------------------------------------------------------------
87
Googlera1a53032015-08-31 20:07:23 +000088Bazel shares most of its code with the internal tool and its rules
Han-Wen Nienhuys03549332015-02-20 13:21:24 +000089are used for millions of builds every day.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010090
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010091Why did Google build Bazel?
92---------------------------
93
94A long time ago, Google built its software using large, generated
95Makefiles. These led to slow and unreliable builds, which began to
96interfere with our developers' productivity and the company's
Googlera1a53032015-08-31 20:07:23 +000097agility. Bazel was a way to solve these problems.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010098
99Does Bazel require a build cluster?
100-----------------------------------
101
102Google's in-house flavor of Bazel does use [build
103clusters](http://google-engtools.blogspot.com/2011/09/build-in-cloud-distributing-build-steps.html),
Han-Wen Nienhuys03549332015-02-20 13:21:24 +0000104so Bazel does have hooks in the code base to plug in a remote build
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100105cache or a remote execution system.
106
Googlera1a53032015-08-31 20:07:23 +0000107The open source Bazel code runs build operations locally. We believe
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100108that this is fast enough for most of our users.
109
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100110How does the Google development process work?
111----------------------------------------------
112
Han-Wen Nienhuys361af112015-03-17 13:00:09 +0000113For our server code base, we use the following development workflow:
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100114
Googler28711af2016-06-24 16:41:23 +0000115* All our server code is in a single, gigantic version control
116 system.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100117
Googler28711af2016-06-24 16:41:23 +0000118* Everybody builds their software with Bazel.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100119
Googler28711af2016-06-24 16:41:23 +0000120* Different teams own different parts of the source tree, and make
121 their components available as BUILD targets.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100122
Googler28711af2016-06-24 16:41:23 +0000123* Branching is primarily used for managing releases, so everybody
124 develops their software at the head revision.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100125
Han-Wen Nienhuys361af112015-03-17 13:00:09 +0000126Bazel is a cornerstone of this philosophy: since Bazel requires all
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100127dependencies to be fully specified, we can predict which programs and
128tests are affected by a change, and vet them before submission.
129
130More background on the development process at Google can be found on
131the [eng tools blog](http://google-engtools.blogspot.com/).
132
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100133Why are you opening up Bazel?
134-----------------------------
135
Googlera1a53032015-08-31 20:07:23 +0000136Building software should be fun and easy. Slow and unpredictable
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100137builds take the fun out of programming.
138
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100139Why would I want to use Bazel?
140------------------------------
141
Googler28711af2016-06-24 16:41:23 +0000142* Bazel may give you faster build times because it can recompile only
143 the files that need to be recompiled. Similarly, it can skip
144 re-running tests that it knows haven't changed.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100145
Googler28711af2016-06-24 16:41:23 +0000146* Bazel produces deterministic results. This eliminates skew
147 between incremental and clean builds, laptop and CI system, etc.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100148
Googler28711af2016-06-24 16:41:23 +0000149* Bazel can build different client and server apps with the same tool
150 from the same workspace. For example, you can change a client/server
151 protocol in a single commit, and test that the updated mobile app
152 works with the updated server, building both with the same tool,
153 reaping all the aforementioned benefits of Bazel.
Han-Wen Nienhuys03549332015-02-20 13:21:24 +0000154
Han-Wen Nienhuys03549332015-02-20 13:21:24 +0000155Can I see examples?
156-------------------
157
Googlera1a53032015-08-31 20:07:23 +0000158Yes. For a simple example, see:
Han-Wen Nienhuys03549332015-02-20 13:21:24 +0000159
Kristina Chodorow2b1763a2015-09-01 09:15:54 +0000160 <https://github.com/bazelbuild/bazel/blob/master/examples/cpp/BUILD>
Han-Wen Nienhuys03549332015-02-20 13:21:24 +0000161
Neil374888c2015-11-20 19:04:45 +0000162The Bazel source code itself provides a more complex example:
Han-Wen Nienhuys03549332015-02-20 13:21:24 +0000163
Neil374888c2015-11-20 19:04:45 +0000164 <https://github.com/bazelbuild/bazel/blob/master/src/BUILD>
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100165
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100166What is Bazel best at?
167----------------------
168
169Bazel shines at building and testing projects with the following properties:
170
Googler28711af2016-06-24 16:41:23 +0000171* Projects with a large codebase
172* Projects written in (multiple) compiled languages
173* Projects that deploy on multiple platforms
174* Projects that have extensive tests
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100175
Googlera1a53032015-08-31 20:07:23 +0000176Where can I run Bazel?
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100177---------------------------------
178
Googlera1a53032015-08-31 20:07:23 +0000179Currently, Linux and Mac OS X. Porting to other UNIX platforms should be
180straightforward, as long as a JDK is available for the platform.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100181
182What about Windows?
183-------------------
184
Googlera1a53032015-08-31 20:07:23 +0000185Due to its UNIX heritage, porting Bazel to Windows is significant work. For
Han-Wen Nienhuysff37d9b2015-08-19 12:44:35 +0000186example, Bazel uses symlinks extensively, which has varying levels of support
187across Windows versions.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100188
Han-Wen Nienhuysff37d9b2015-08-19 12:44:35 +0000189We are currently actively working on improving Windows support, but it's still
190ways from being usable.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100191
192What should I not use Bazel for?
193--------------------------------
194
Googler28711af2016-06-24 16:41:23 +0000195* Bazel tries to be smart about caching. This means that it is not good
196 for running build operations whose outputs should not be cached. For example,
197 the following steps should not be run from Bazel:
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100198
Googler28711af2016-06-24 16:41:23 +0000199 * A compilation step that fetches data from the internet.
200 * A test step that connects to the QA instance of your site.
201 * A deployment step that changes your site's cloud configuration.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100202
Googler28711af2016-06-24 16:41:23 +0000203* Bazel tries to minimize expensive compilation steps. If you are only
204 using interpreted languages directly, such as JavaScript or Python,
205 Bazel will likely not interest you.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100206
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100207How stable is Bazel's feature set?
Googlera1a53032015-08-31 20:07:23 +0000208----------------------------------
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100209
210The core features (C++, Java, and shell rules) have extensive use
211inside Google, so they are thoroughly tested and have very little
Han-Wen Nienhuys03549332015-02-20 13:21:24 +0000212churn. Similarly, we test new versions of Bazel across hundreds of
213thousands of targets every day to find regressions, and we release new
214versions multiple times every month.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100215
Googlera1a53032015-08-31 20:07:23 +0000216In short, except for features marked as experimental, Bazel should Just Work.
217Changes to non-experimental rules will be backward compatible. A more detailed
218list of feature support statuses can be found in our
219[support document](support.html).
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100220
221How stable is Bazel as a binary?
Googlera1a53032015-08-31 20:07:23 +0000222--------------------------------
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100223
224Inside Google, we make sure that Bazel crashes are very rare. This
Googlera1a53032015-08-31 20:07:23 +0000225should also hold for our open source codebase.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100226
227How can I start using Bazel?
228----------------------------
229
Kristina Chodorow974b2082015-03-31 14:49:30 +0000230See our [getting started document](docs/getting-started.html).
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100231
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100232Doesn't Docker solve the reproducibility problems?
233--------------------------------------------------
234
235With Docker you can easily create sandboxes with fixed OS releases,
Googlera1a53032015-08-31 20:07:23 +0000236for example, Ubuntu 12.04, Fedora 21. This solves the problem of
237reproducibility for the system environment -- that is, "which version of
238/usr/bin/c++ do I need?"
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100239
Googlera1a53032015-08-31 20:07:23 +0000240Docker does not address reproducibility with regard to changes in the
Daniel Wagner-Hall50a11942015-02-06 18:25:18 +0000241source code. Running Make with an imperfectly written Makefile inside a
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100242Docker container can still yield unpredictable results.
243
Han-Wen Nienhuys361af112015-03-17 13:00:09 +0000244Inside Google, we check tools into source control for reproducibility.
245In this way, we can vet changes to tools ("upgrade GCC to 4.6.1") with
246the same mechanism as changes to base libraries ("fix bounds check in
247OpenSSL").
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100248
Han-Wen Nienhuys29ca2422015-03-19 16:53:35 +0000249Can I build binaries for deployment on Docker?
250----------------------------------------------
251
252With Bazel, you can build standalone, statically linked binaries in
Googlera1a53032015-08-31 20:07:23 +0000253C/C++, and self-contained jar files for Java. These run with few
254dependencies on normal UNIX systems, and as such should be simple to
Han-Wen Nienhuys29ca2422015-03-19 16:53:35 +0000255install inside a Docker container.
256
Googlera1a53032015-08-31 20:07:23 +0000257Bazel has conventions for structuring more complex programs, for example, a
Han-Wen Nienhuys29ca2422015-03-19 16:53:35 +0000258Java program that consumes a set of data files, or runs another
259program as subprocess. It is possible to package up such environments
260as standalone archives, so they can be deployed on different systems,
Damien Martin-Guillerez8f565582015-07-27 19:39:07 +0000261including Docker images.
Han-Wen Nienhuys29ca2422015-03-19 16:53:35 +0000262
Han-Wen Nienhuys29ca2422015-03-19 16:53:35 +0000263Can I build Docker images with Bazel?
264-------------------------------------
265
Googlera1a53032015-08-31 20:07:23 +0000266Yes, you can use our
Jeff Hodges74531752016-05-19 17:53:01 +0000267[Docker rules](http://bazel.io/docs/be/docker.html)
Googlera1a53032015-08-31 20:07:23 +0000268to build reproducible Docker images.
Han-Wen Nienhuys29ca2422015-03-19 16:53:35 +0000269
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100270Will Bazel make my builds reproducible automatically?
271-----------------------------------------------------
272
273For Java and C++ binaries, yes, assuming you do not change the
274toolchain. If you have build steps that involve custom recipes
Googlera1a53032015-08-31 20:07:23 +0000275(for example, executing binaries through a shell script inside a rule), you
Han-Wen Nienhuys03549332015-02-20 13:21:24 +0000276will need to take some extra care:
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100277
Googler28711af2016-06-24 16:41:23 +0000278 * Do not use dependencies that were not declared. Sandboxed
279 execution (--spawn_strategy=sandboxed, only on Linux) can
280 help find undeclared dependencies.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100281
Googler28711af2016-06-24 16:41:23 +0000282 * Avoid storing timestamps and user-IDs in generated files. ZIP files and
283 other archives are especially prone to this.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100284
Googler28711af2016-06-24 16:41:23 +0000285 * Avoid connecting to the network. Sandboxed execution can help here
286 too.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100287
Googler28711af2016-06-24 16:41:23 +0000288 * Avoid processes that use random numbers, in particular, dictionary
289 traversal is randomized in many programming languages.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100290
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100291Do you have binary releases?
292----------------------------
293
Damien Martin-Guillerezb91b9942015-09-21 10:01:26 +0000294Yes, you can find the latest release binaries
295[here](https://github.com/bazelbuild/bazel/releases/latest). Our release
296policy is documented [here](http://bazel.io/support.html).
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100297
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100298I use Eclipse/IntelliJ. How does Bazel interoperate with IDEs?
299--------------------------------------------------------------
300
Googlera1a53032015-08-31 20:07:23 +0000301We currently have no IDE integration API as such but the iOS rules generate
302Xcode projects based on Bazel BUILD targets (see below).
Googler1deaf232015-03-26 17:35:46 +0000303
304How does Bazel interact with Xcode?
305-----------------------------------
306
307Bazel generates Xcode projects that you can use to work with any inputs and
Googlera1a53032015-08-31 20:07:23 +0000308dependencies for the target, to build apps from Xcode directly and to deploy to
309an iOS simulator and devices. Simply open the project file whose path is printed
Googler1deaf232015-03-26 17:35:46 +0000310by Bazel after building any iOS target. There is no support to invoke Bazel from
Googlera1a53032015-08-31 20:07:23 +0000311Xcode (for example to re-generate generated sources such as Objective-C files
312based on protos), nor to open Xcode from Bazel directly.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100313
314I use Jenkins/CircleCI/TravisCI. How does Bazel interoperate with CI systems?
315-----------------------------------------------------------------------------
316
Han-Wen Nienhuys03549332015-02-20 13:21:24 +0000317Bazel returns a non-zero exit code if the build or test invocation
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100318fails, and this should be enough for basic CI integration. Since
Googlera1a53032015-08-31 20:07:23 +0000319Bazel does not need clean builds for correctness, the CI system should not
320be configured to clean before starting a build/test run.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100321
Kristina Chodorow974b2082015-03-31 14:49:30 +0000322Further details on exit codes are in the [User Manual](docs/bazel-user-manual.html).
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100323
324What future features can we expect in Bazel?
325--------------------------------------------
326
Han-Wen Nienhuys03549332015-02-20 13:21:24 +0000327Our initial goal is to work on Google's internal use-cases. This
328includes Google's principal languages (C++, Java, Go) and major
329platforms (Linux, Android, iOS). For practical reasons, not all of
Damien Martin-Guillerez48627562015-03-13 17:07:11 +0000330these are currently open-sourced. For more details see our
Kristina Chodorow974b2082015-03-31 14:49:30 +0000331[roadmap](roadmap.html).
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100332
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100333What about Python?
334------------------
335
Han-Wen Nienhuys03549332015-02-20 13:21:24 +0000336It is possible to write Python rules as extensions (see below). See
337the following files for an example of generating self-contained zip
338files for python:
Han-Wen Nienhuys89ab4a12015-02-06 18:49:56 +0000339
Kristina Chodorow2b1763a2015-09-01 09:15:54 +0000340 <https://github.com/bazelbuild/bazel/blob/master/tools/build_rules/py_rules.bzl>\\
341 <https://github.com/bazelbuild/bazel/tree/master/examples/py>
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100342
Damien Martin-Guillerez9cfa90f2015-09-30 13:26:34 +0000343We have opened up a subset of our internal Python rules, so they
344can be used as helper scripts as part of a build.
Han-Wen Nienhuys361af112015-03-17 13:00:09 +0000345
Han-Wen Nienhuysff37d9b2015-08-19 12:44:35 +0000346Simplistic support for PEX-style binaries is at
Kristina Chodorow2b1763a2015-09-01 09:15:54 +0000347[here](https://github.com/bazelbuild/bazel/blob/master/tools/build_rules/py_rules.bzl).
Han-Wen Nienhuys03549332015-02-20 13:21:24 +0000348
349
Han-Wen Nienhuysd35ebee2015-03-24 20:00:01 +0000350What about Go?
351--------------
352
Han-Wen Nienhuysd35ebee2015-03-24 20:00:01 +0000353If your codebase is 100% Go, the `go` tool has excellent support for
354building and testing, and Bazel will not bring you much benefit.
355
Han-Wen Nienhuysff37d9b2015-08-19 12:44:35 +0000356The server code written in Go at Google is built with Bazel. However, the rules
357that accomplish this are rather complex due to their interactions with our C++
358libraries, and are incompatible with the conventions of the `go` tool. We are
359working on improving this situation.
Han-Wen Nienhuysd35ebee2015-03-24 20:00:01 +0000360
Damien Martin-Guillerez9cfa90f2015-09-30 13:26:34 +0000361Can I use Bazel for my [INSERT LANGUAGE HERE] project?
362------------------------------------------------------
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100363
Damien Martin-Guillerez9cfa90f2015-09-30 13:26:34 +0000364We have an extension mechanism called Skylark that allows you to add new rules
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100365without recompiling Bazel.
366
David Chenc23d6612015-11-02 22:56:13 +0000367For documentation: see [here](/docs/skylark/index.html). We have support for
Damien Martin-Guillerez9cfa90f2015-09-30 13:26:34 +0000368several languages that use that extension mechanism, see our
David Chenc23d6612015-11-02 22:56:13 +0000369[build encyclopedia](/docs/be/overview.html) for the full
Damien Martin-Guillerez9cfa90f2015-09-30 13:26:34 +0000370list of supported languages.
Han-Wen Nienhuysff37d9b2015-08-19 12:44:35 +0000371
Googlera1a53032015-08-31 20:07:23 +0000372I need more functionality. Can I add rules that are compiled into Bazel?
373------------------------------------------------------------------------
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100374
375If our extension mechanism is insufficient for your use case, email
Laszlo Csomord9b2b862015-03-25 12:01:43 +0000376the mailing list for advice: <bazel-discuss@googlegroups.com>.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100377
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100378Can I contribute to the Bazel code base?
379----------------------------------------
380
Kristina Chodorow974b2082015-03-31 14:49:30 +0000381See our [contribution guidelines](contributing.html).
Han-Wen Nienhuys03549332015-02-20 13:21:24 +0000382
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100383Why isn't all development done in the open?
384-------------------------------------------
385
386We still have to refactor the interfaces between the public code in
387Bazel and our internal extensions frequently. This makes it hard to do
Kristina Chodorow974b2082015-03-31 14:49:30 +0000388much development in the open. See our [governance plan](governance.html)
Damien Martin-Guillerez48627562015-03-13 17:07:11 +0000389for more details.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100390
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100391How do I contact the team?
392--------------------------
393
Laszlo Csomord9b2b862015-03-25 12:01:43 +0000394We are reachable at <bazel-discuss@googlegroups.com>.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100395
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100396Where do I report bugs?
397-----------------------
398
Googlera1a53032015-08-31 20:07:23 +0000399Send an e-mail to <bazel-discuss@googlegroups.com> or file a bug
Kristina Chodorow2b1763a2015-09-01 09:15:54 +0000400[on GitHub](https://github.com/bazelbuild/bazel/issues).
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100401
402
403
404What's up with the word "Blaze" in the codebase?
405------------------------------------------------
406
Googlerbedbc442015-03-18 21:52:09 +0000407This is an internal name for the tool. Please refer to Bazel as
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +0100408Bazel.
409
410
411Why do other Google projects (Android, Chrome) use other build tools?
412---------------------------------------------------------------------
413
414Until now, Bazel was not available externally, so open source projects
415such as Chromium, Android, etc. could not use it. In addition, lack of
416Windows support is a problem for building Windows applications, such
417as Chrome.
418
419
420How do you pronounce "Bazel"?
421-----------------------------
422
423The same way as "basil" (the herb) in US English: "BAY-zel". It rhymes with
424"hazel". IPA: /ˈbeɪzˌəl/