We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f2b8ef commit 0e3ada9Copy full SHA for 0e3ada9
README.md
@@ -51,9 +51,27 @@ Tutorial
51
=======
52
If you want to develop or use the development version:
53
54
- git clone https://github.com/travitch/whole-program-llvm
55
- cd whole-program-llvm
56
- pip install -e .
+```
+git clone https://github.com/travitch/whole-program-llvm
+cd whole-program-llvm
57
58
+
59
+Now you need to install WLLVM. You can either install
60
+globally on your system in develop mode:
61
62
63
+sudo pip install -e .
64
65
66
+or install WLLVM into a virtual python environment
67
+in develop mode to avoid installing globally:
68
69
70
+virtualenv venv
71
+source venv/bin/activate
72
+pip install -e .
73
74
75
76
77
Usage
0 commit comments