blob: 6a9f1598a9d71fce55cc623a74ddc89560c287a6 [file] [log] [blame] [view]
Kristina Chodorow974b2082015-03-31 14:49:30 +00001---
dzc22b85a22017-05-31 20:37:50 +02002layout: documentation
3title: Windows
Kristina Chodorow974b2082015-03-31 14:49:30 +00004---
dzc22b85a22017-05-31 20:37:50 +02005
6# Using Bazel on Windows
7
Serge70e84f82018-04-18 10:04:22 -07008## <a name="install"></a>Installation
dzc22b85a22017-05-31 20:37:50 +02009
Serge70e84f82018-04-18 10:04:22 -070010See [Install Bazel on Windows](install-windows.html) for installation
11instructions.
Laszlo Csomorc3916f92018-03-05 00:29:00 -080012
13## Known issues
14
15We mark Windows-related Bazel issues on GitHub with the "multi-platform >
16windows" label. [You can see the open issues here.](https://github.com/bazelbuild/bazel/issues?q=is%3Aissue+is%3Aopen+label%3A%22category%3A+multi-platform+%3E+windows%22)
17
18## Running Bazel: MSYS2 shell vs. Command Prompt vs. PowerShell
19
20It's best to run Bazel from the Command Prompt (`cmd.exe`) or from PowerShell.
21
22You can also run Bazel from the MSYS2 shell, but you need to disable MSYS2's
23automatic path conversion. See [this StackOverflow
24answer](https://stackoverflow.com/a/49004265/7778502) for details.
25
Laszlo Csomorc3916f92018-03-05 00:29:00 -080026## Setting environment variables
27
laszlocsomorf0ed5d32017-08-25 16:55:42 +020028Environment variables you set in the Windows Command Prompt (`cmd.exe`) are only
29set in that command prompt session. If you start a new `cmd.exe`, you need to
30set the variables again. To always set the variables when `cmd.exe` starts, you
31can add them to the User variables or System variables in the `Control Panel >
32System Properties > Advanced > Environment Variables...` dialog box.
dzc22b85a22017-05-31 20:37:50 +020033
dzc22b85a22017-05-31 20:37:50 +020034## <a name="using"></a>Using Bazel on Windows
35
laszlocsomorf0ed5d32017-08-25 16:55:42 +020036The first time you build any target, Bazel auto-configures the location of
37Python and the Visual C++ compiler. If you need to auto-configure again, run
38`bazel clean` then build a target.
dzc22b85a22017-05-31 20:37:50 +020039
Laszlo Csomorc3916f92018-03-05 00:29:00 -080040You can also tell Bazel where to find the Python binary and the C++ compiler:
41- use the [`--python_path=c:\path\to\python.exe`](command-line-reference.html#flag--python_path) flag for Python
42- use the `BAZEL_VC` or `BAZEL_VS` environment variable. See the [Build
43 C++ section](#build_cpp) below.
44
45### <a name="build_cpp"></a>Build C++
dzc22b85a22017-05-31 20:37:50 +020046
laszlocsomorf0ed5d32017-08-25 16:55:42 +020047To build C++ targets, you need:
dzc22b85a22017-05-31 20:37:50 +020048
laszlocsomorf0ed5d32017-08-25 16:55:42 +020049* The Visual C++ compiler.
dzc22b85a22017-05-31 20:37:50 +020050
laszlocsomorf0ed5d32017-08-25 16:55:42 +020051 You can install it in one of the following ways:
dzc22b85a22017-05-31 20:37:50 +020052
laszlocsomor51bb1cd2017-09-13 10:30:20 +020053 * Install [Visual Studio 2015 or later](https://www.visualstudio.com/)
54 (Community Edition is enough) with Visual C++.
dzc22b85a22017-05-31 20:37:50 +020055
laszlocsomorf0ed5d32017-08-25 16:55:42 +020056 Make sure to also install the `Visual C++ > Common Tools for Visual C++`
57 and `Visual C++ > Microsoft Foundation Classes for C++` features. These
58 features are not installed by default.
dzc22b85a22017-05-31 20:37:50 +020059
laszlocsomorf0ed5d32017-08-25 16:55:42 +020060 * Install the [Visual C++ Build
laszlocsomor51bb1cd2017-09-13 10:30:20 +020061 Tools 2015 or later](http://landinghub.visualstudio.com/visual-cpp-build-tools).
laszlocsomorf0ed5d32017-08-25 16:55:42 +020062
pcloudydd2b52b2018-04-12 05:34:52 -070063 If [alwayslink](be/c-cpp.html#cc_library.alwayslink) doesn't work with
64 VS 2017, that is due to a
65 [known issue](https://github.com/bazelbuild/bazel/issues/3949),
66 please upgrade your VS 2017 to the latest version.
Philipp Wollermann3e117ae2018-03-05 08:26:22 -080067
laszlocsomorf0ed5d32017-08-25 16:55:42 +020068* The `BAZEL_VS` or `BAZEL_VC` environment variable.
69
70 Bazel tries to locate the C++ compiler the first time you build any
71 target. To tell Bazel where the compiler is, you can set one of the
72 following environment variables:
73
74 * `BAZEL_VS` storing the Visual Studio installation directory
75
76 * `BAZEL_VC` storing the Visual C++ Build Tools installation directory
77
78 Setting one of these variables is enough. For example:
79
80 ```
81 set BAZEL_VS=C:\Program Files (x86)\Microsoft Visual Studio 14.0
82 ```
83
84 or
85
86 ```
Philipp Wollermann3e117ae2018-03-05 08:26:22 -080087 set BAZEL_VC=C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC
laszlocsomorf0ed5d32017-08-25 16:55:42 +020088 ```
89
90* The [Windows
91 SDK](https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk).
92
93 The Windows SDK contains header files and libraries you need when building
94 Windows applications, including Bazel itself.
95
96If everything is set up, you can build a C++ target now!
97
98Try building a target from one of our [sample
99projects](https://github.com/bazelbuild/bazel/tree/master/examples):
100
dzc22b85a22017-05-31 20:37:50 +0200101```
laszlocsomorf0ed5d32017-08-25 16:55:42 +0200102C:\projects\bazel> bazel build //examples/cpp:hello-world
dzc22b85a22017-05-31 20:37:50 +0200103
laszlocsomorf0ed5d32017-08-25 16:55:42 +0200104C:\projects\bazel> bazel-bin\examples\cpp\hello-world.exe
dzc22b85a22017-05-31 20:37:50 +0200105```
106
107### Build Java
108
laszlocsomorf0ed5d32017-08-25 16:55:42 +0200109There's no setup necessary.
dzc22b85a22017-05-31 20:37:50 +0200110
Yun Peng7cca5d72018-03-22 02:43:01 -0700111On Windows, Bazel builds two output files for `java_binary` rules:
laszlocsomorf0ed5d32017-08-25 16:55:42 +0200112
113* a `.jar` file
Yun Peng7cca5d72018-03-22 02:43:01 -0700114* a `.exe` file that can set up the environment for the JVM and run the binary
laszlocsomorf0ed5d32017-08-25 16:55:42 +0200115
116Try building a target from one of our [sample
117projects](https://github.com/bazelbuild/bazel/tree/master/examples):
118
119```
120C:\projects\bazel> bazel build //examples/java-native/src/main/java/com/example/myproject:hello-world
121
Yun Peng7cca5d72018-03-22 02:43:01 -0700122C:\projects\bazel> bazel-bin\examples\java-native\src\main\java\com\example\myproject\hello-world.exe
dzc22b85a22017-05-31 20:37:50 +0200123```
124
125### Build Python
126
laszlocsomorf0ed5d32017-08-25 16:55:42 +0200127To build Python targets, you need:
dzc22b85a22017-05-31 20:37:50 +0200128
laszlocsomorf0ed5d32017-08-25 16:55:42 +0200129* The [Python interpreter](https://www.python.org/downloads/)
130
131 Both Python 2 and Python 3 are supported.
132
pcloudy1a538e32017-09-14 10:36:02 +0200133 To tell Bazel where Python is, you can use `--python_path=<path/to/python>`.
134 For example:
laszlocsomorf0ed5d32017-08-25 16:55:42 +0200135
136 ```
pcloudy1a538e32017-09-14 10:36:02 +0200137 bazel build --python_path=C:/Python27/python.exe ...
laszlocsomorf0ed5d32017-08-25 16:55:42 +0200138 ```
139
pcloudy1a538e32017-09-14 10:36:02 +0200140 If `--python_path` is not specified, Bazel uses `python.exe` as
141 the interpreter and the binary looks for it in `$PATH` during runtime.
142 If it is not in `$PATH`(for example, when you use `py_binary` as an action's
143 executable, Bazel will sanitize `$PATH`), then the execution will fail.
144
145
laszlocsomorf0ed5d32017-08-25 16:55:42 +0200146On Windows, Bazel builds two output files for `py_binary` rules:
147
148* a self-extracting zip file
Yun Peng7cca5d72018-03-22 02:43:01 -0700149* an executable file that can launch the Python interpreter with the
laszlocsomorf0ed5d32017-08-25 16:55:42 +0200150 self-extracting zip file as the argument
151
Yun Peng7cca5d72018-03-22 02:43:01 -0700152You can either run the executable file (it has a `.exe` extension) or you can run
laszlocsomorf0ed5d32017-08-25 16:55:42 +0200153Python with the self-extracting zip file as the argument.
154
155Try building a target from one of our [sample
156projects](https://github.com/bazelbuild/bazel/tree/master/examples):
157
dzc22b85a22017-05-31 20:37:50 +0200158```
laszlocsomorf0ed5d32017-08-25 16:55:42 +0200159C:\projects\bazel> bazel build //examples/py_native:bin
160
Yun Peng7cca5d72018-03-22 02:43:01 -0700161C:\projects\bazel> bazel-bin\examples\py_native\bin.exe
laszlocsomorf0ed5d32017-08-25 16:55:42 +0200162
Yun Peng7cca5d72018-03-22 02:43:01 -0700163C:\projects\bazel> python bazel-bin\examples\py_native\bin.zip
laszlocsomorf0ed5d32017-08-25 16:55:42 +0200164```
165
166If you are interested in details about how Bazel builds Python targets on
167Windows, check out this [design
168doc](https://bazel.build/designs/2016/09/05/build-python-on-windows.html).