Lines Matching +full:python +full:- +full:version
38 --------
47 --------
55 CMake separately, Visual Studio 2022 will require CMake Version 3.21 or later.
57 If you would like to run the LLVM tests you will need `Python
58 <http://www.python.org/>`_. Version 3.8 and newer are known to work. You can
59 install Python with Visual Studio 2019, from the Microsoft store or from
60 the `Python web site <http://www.python.org/>`_. We recommend the latter since it
63 You will need `Git for Windows <https://git-scm.com/>`_ with bash tools, too.
70 These instruction were tested with Visual Studio 2019 and Python 3.9.6:
77 4. Download and install the latest `Python 3 release <http://www.python.org/>`_.
79 and **Add Python to the PATH**. This will allow installing psutil for all
80 users for the regression tests and make Python available from the command
85 7. Complete the Python installation.
91 .. code-block:: bat
102 .. code-block:: bat
112 .. code-block:: bat
115 git clone https://github.com/llvm/llvm-project.git llvm
118 from the `releases page <https://github.com/llvm/llvm-project/releases>`_.
120 Windows Explorer built-in zip support or any other unzip tool.
124 .. code-block:: bat
126 … cmake -S llvm\llvm -B build -DLLVM_ENABLE_PROJECTS=clang -DLLVM_TARGETS_TO_BUILD=X86 -Thost=x64
153 32-bit toolset. If you are developing on a 64-bit version of Windows and
154 want to use the 64-bit toolset, pass the ``-Thost=x64`` flag when
160 file, just double-click on that to open Visual Studio. The default Visual
171 You can run LLVM tests by merely building the project "check-all". The test
185 ========== Build: 114 succeeded, 0 failed, 321 up-to-date, 0 skipped ==========``
194 .. code-block:: bat
196 choco install -y git cmake python3
200 `Dockerfile <https://github.com/llvm/llvm-zorg/blob/main/buildbot/google/docker/windows-base-vscode…
211 ------------------------------
215 .. code-block:: bat
217 c:\llvm> python ..\build\Release\bin\llvm-lit.py llvm\test
219 This example assumes that Python is in your PATH variable, which would be
220 after **Add Python to the PATH** was selected during Python installation.
221 If you had opened a command window prior to Python installation, you would
226 .. code-block:: bat
228 c:\llvm> python ..\build\Release\bin\llvm-lit.py llvm\test\Transforms\Util
231 ---------------------