Kristina Chodorow | 974b208 | 2015-03-31 14:49:30 +0000 | [diff] [blame] | 1 | --- |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 2 | layout: documentation |
| 3 | title: Windows |
Kristina Chodorow | 974b208 | 2015-03-31 14:49:30 +0000 | [diff] [blame] | 4 | --- |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 5 | |
| 6 | # Using Bazel on Windows |
| 7 | |
Serge | 70e84f8 | 2018-04-18 10:04:22 -0700 | [diff] [blame] | 8 | ## <a name="install"></a>Installation |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 9 | |
Serge | 70e84f8 | 2018-04-18 10:04:22 -0700 | [diff] [blame] | 10 | See [Install Bazel on Windows](install-windows.html) for installation |
| 11 | instructions. |
Laszlo Csomor | c3916f9 | 2018-03-05 00:29:00 -0800 | [diff] [blame] | 12 | |
| 13 | ## Known issues |
| 14 | |
| 15 | We mark Windows-related Bazel issues on GitHub with the "multi-platform > |
| 16 | windows" 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 | |
| 20 | It's best to run Bazel from the Command Prompt (`cmd.exe`) or from PowerShell. |
| 21 | |
| 22 | You can also run Bazel from the MSYS2 shell, but you need to disable MSYS2's |
| 23 | automatic path conversion. See [this StackOverflow |
| 24 | answer](https://stackoverflow.com/a/49004265/7778502) for details. |
| 25 | |
Laszlo Csomor | c3916f9 | 2018-03-05 00:29:00 -0800 | [diff] [blame] | 26 | ## Setting environment variables |
| 27 | |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 28 | Environment variables you set in the Windows Command Prompt (`cmd.exe`) are only |
| 29 | set in that command prompt session. If you start a new `cmd.exe`, you need to |
| 30 | set the variables again. To always set the variables when `cmd.exe` starts, you |
| 31 | can add them to the User variables or System variables in the `Control Panel > |
| 32 | System Properties > Advanced > Environment Variables...` dialog box. |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 33 | |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 34 | ## <a name="using"></a>Using Bazel on Windows |
| 35 | |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 36 | The first time you build any target, Bazel auto-configures the location of |
| 37 | Python and the Visual C++ compiler. If you need to auto-configure again, run |
| 38 | `bazel clean` then build a target. |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 39 | |
Laszlo Csomor | c3916f9 | 2018-03-05 00:29:00 -0800 | [diff] [blame] | 40 | You 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++ |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 46 | |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 47 | To build C++ targets, you need: |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 48 | |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 49 | * The Visual C++ compiler. |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 50 | |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 51 | You can install it in one of the following ways: |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 52 | |
laszlocsomor | 51bb1cd | 2017-09-13 10:30:20 +0200 | [diff] [blame] | 53 | * Install [Visual Studio 2015 or later](https://www.visualstudio.com/) |
| 54 | (Community Edition is enough) with Visual C++. |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 55 | |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 56 | 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. |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 59 | |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 60 | * Install the [Visual C++ Build |
laszlocsomor | 51bb1cd | 2017-09-13 10:30:20 +0200 | [diff] [blame] | 61 | Tools 2015 or later](http://landinghub.visualstudio.com/visual-cpp-build-tools). |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 62 | |
pcloudy | dd2b52b | 2018-04-12 05:34:52 -0700 | [diff] [blame] | 63 | 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 Wollermann | 3e117ae | 2018-03-05 08:26:22 -0800 | [diff] [blame] | 67 | |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 68 | * 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 Wollermann | 3e117ae | 2018-03-05 08:26:22 -0800 | [diff] [blame] | 87 | set BAZEL_VC=C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 88 | ``` |
| 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 | |
| 96 | If everything is set up, you can build a C++ target now! |
| 97 | |
| 98 | Try building a target from one of our [sample |
| 99 | projects](https://github.com/bazelbuild/bazel/tree/master/examples): |
| 100 | |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 101 | ``` |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 102 | C:\projects\bazel> bazel build //examples/cpp:hello-world |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 103 | |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 104 | C:\projects\bazel> bazel-bin\examples\cpp\hello-world.exe |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 105 | ``` |
| 106 | |
| 107 | ### Build Java |
| 108 | |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 109 | There's no setup necessary. |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 110 | |
Yun Peng | 7cca5d7 | 2018-03-22 02:43:01 -0700 | [diff] [blame] | 111 | On Windows, Bazel builds two output files for `java_binary` rules: |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 112 | |
| 113 | * a `.jar` file |
Yun Peng | 7cca5d7 | 2018-03-22 02:43:01 -0700 | [diff] [blame] | 114 | * a `.exe` file that can set up the environment for the JVM and run the binary |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 115 | |
| 116 | Try building a target from one of our [sample |
| 117 | projects](https://github.com/bazelbuild/bazel/tree/master/examples): |
| 118 | |
| 119 | ``` |
| 120 | C:\projects\bazel> bazel build //examples/java-native/src/main/java/com/example/myproject:hello-world |
| 121 | |
Yun Peng | 7cca5d7 | 2018-03-22 02:43:01 -0700 | [diff] [blame] | 122 | C:\projects\bazel> bazel-bin\examples\java-native\src\main\java\com\example\myproject\hello-world.exe |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 123 | ``` |
| 124 | |
| 125 | ### Build Python |
| 126 | |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 127 | To build Python targets, you need: |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 128 | |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 129 | * The [Python interpreter](https://www.python.org/downloads/) |
| 130 | |
| 131 | Both Python 2 and Python 3 are supported. |
| 132 | |
pcloudy | 1a538e3 | 2017-09-14 10:36:02 +0200 | [diff] [blame] | 133 | To tell Bazel where Python is, you can use `--python_path=<path/to/python>`. |
| 134 | For example: |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 135 | |
| 136 | ``` |
pcloudy | 1a538e3 | 2017-09-14 10:36:02 +0200 | [diff] [blame] | 137 | bazel build --python_path=C:/Python27/python.exe ... |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 138 | ``` |
| 139 | |
pcloudy | 1a538e3 | 2017-09-14 10:36:02 +0200 | [diff] [blame] | 140 | 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 | |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 146 | On Windows, Bazel builds two output files for `py_binary` rules: |
| 147 | |
| 148 | * a self-extracting zip file |
Yun Peng | 7cca5d7 | 2018-03-22 02:43:01 -0700 | [diff] [blame] | 149 | * an executable file that can launch the Python interpreter with the |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 150 | self-extracting zip file as the argument |
| 151 | |
Yun Peng | 7cca5d7 | 2018-03-22 02:43:01 -0700 | [diff] [blame] | 152 | You can either run the executable file (it has a `.exe` extension) or you can run |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 153 | Python with the self-extracting zip file as the argument. |
| 154 | |
| 155 | Try building a target from one of our [sample |
| 156 | projects](https://github.com/bazelbuild/bazel/tree/master/examples): |
| 157 | |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 158 | ``` |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 159 | C:\projects\bazel> bazel build //examples/py_native:bin |
| 160 | |
Yun Peng | 7cca5d7 | 2018-03-22 02:43:01 -0700 | [diff] [blame] | 161 | C:\projects\bazel> bazel-bin\examples\py_native\bin.exe |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 162 | |
Yun Peng | 7cca5d7 | 2018-03-22 02:43:01 -0700 | [diff] [blame] | 163 | C:\projects\bazel> python bazel-bin\examples\py_native\bin.zip |
laszlocsomor | f0ed5d3 | 2017-08-25 16:55:42 +0200 | [diff] [blame] | 164 | ``` |
| 165 | |
| 166 | If you are interested in details about how Bazel builds Python targets on |
| 167 | Windows, check out this [design |
| 168 | doc](https://bazel.build/designs/2016/09/05/build-python-on-windows.html). |