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