blob: 0e91dd3b1392dea015145bc793c1e16ab33fddb8 [file] [log] [blame] [view]
David Chen8fe82a32016-08-24 10:55:41 +00001---
2layout: documentation
3title: Getting Started
4---
5
6# Getting Started with Bazel
7
8## Setup
9
10Use the [installation instructions](/docs/install.html) to install a copy of
11Bazel on your machine.
12
13## Using a Workspace
14
15All Bazel builds take place in a [_workspace_](/docs/build-ref.html#workspaces),
16a directory on your filesystem that contains source code for the software you
17want to build, as well symbolic links to directories that contain the build
18outputs (for example, `bazel-bin` and `bazel-out`). The location of the
19workspace directory is not significant, but it must contain a file called
20`WORKSPACE` in the top-level directory; an empty file is a valid workspace.
21The `WORKSPACE` file can be used to reference
22[external dependencies](/docs/external.html) required to build the outputs.
23One workspace can be shared among multiple projects if desired.
24
25```bash
26$ touch WORKSPACE
27```
28
29## Creating a Build File
30
31To know which targets can be built in your project, Bazel inspects `BUILD`
32files. They are written in Bazel's build language which is syntactically
33similar to Python. Usually they are just a sequence of declarations of rules.
34Each rule specifies its inputs, outputs, and a way to compute the outputs from
35the inputs.
36
37The rule probably most familiar to people who have used `Makefile`s before (as
38it is the only rule available there) is the
39[genrule](/docs/be/general.html#genrule), which specifies how the output can
40be generated by invoking a shell command.
41
42```
43genrule(
44 name = "hello",
45 outs = ["hello_world.txt"],
46 cmd = "echo Hello World > $@",
47)
48```
49
50The shell command may contain [Make variables](/docs/be/make-variables.html).
51
52Using the above `BUILD` file, you can ask Bazel to generate the target.
53
54```
55$ bazel build :hello
56.
57INFO: Found 1 target...
58Target //:hello up-to-date:
59 bazel-genfiles/hello_world.txt
60INFO: Elapsed time: 2.255s, Critical Path: 0.07s
61```
62
63We note two things. First, targets are normally referred to by their
64[label](/docs/build- ref.html#labels), which is specified by the
65[name](/docs/be/general.html#genrule.name) attribute of the rule. (Referencing
66them by the output file name is also possible, but this is not the preferred
67way.) Second, Bazel puts the generated files into a separate directory (the
68`bazel-genfiles` directory is actually a symbolic link) so as not to pollute
69your source tree.
70
71Rules may use the output of other rules as input, as in the following
72example. Again, the generated sources are referred to by their label.
73
74```
75genrule(
76 name = "hello",
77 outs = ["hello_world.txt"],
78 cmd = "echo Hello World > $@",
79)
80
81genrule(
82 name = "double",
83 srcs = [":hello"],
84 outs = ["double_hello.txt"],
85 cmd = "cat $< $< > $@",
86)
87```
88
89Finally, note that, while the [genrule](/docs/be/general.html#genrule) might
90seem familiar, it usually is _not_ the best rule to use. It is preferrable to
91use one of the specialized [rules](/docs/be/overview.html#rules) for various
92languages.
93
94# Next Steps
95
96Next, check out the tutorial on building [java](/docs/tutorial/java.html)
97or [C++](/docs/tutorial/cpp.html) programs.