File tree 1 file changed +18
-3
lines changed
1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -9,20 +9,35 @@ Quickstart
9
9
10
10
``` bash
11
11
% < path to llvm build> /bin/llvm-lit --version
12
- lit 0.8 .0dev
12
+ lit 20.0 .0dev
13
13
```
14
14
15
- An alternative is installing it as a python package in a python virtual
15
+ An alternative is installing it as a Python package in a Python virtual
16
16
environment:
17
17
18
18
``` bash
19
19
% python3 -m venv .venv
20
20
% . .venv/bin/activate
21
21
% pip install git+https://github.com/llvm/llvm-project.git#subdirectory=llvm/utils/lit
22
22
% lit --version
23
- lit 0.8 .0dev
23
+ lit 20.0 .0dev
24
24
```
25
25
26
+ Installing the official Python release of lit in a Python virtual
27
+ environment could also work. This will install the most recent
28
+ release of lit:
29
+
30
+ ``` bash
31
+ % python3 -m venv .venv
32
+ % . .venv/bin/activate
33
+ % pip install lit
34
+ % lit --version
35
+ lit 18.1.8
36
+ ```
37
+
38
+ Please note that recent tests may rely on features not in the latest released lit.
39
+ If in doubt, try one of the previous methods.
40
+
26
41
2 . Check out the ` test-suite ` module with:
27
42
28
43
``` bash
You can’t perform that action at this time.
0 commit comments