You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: coverage/pin/README.md
+13-5
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# CodeCoverage Pintool
2
2
3
-
The `CodeCoverage` pintool runs ontop of the [Intel Pin](https://software.intel.com/en-us/articles/pin-a-dynamic-binary-instrumentation-tool) DBI framework and collects code coverage data in a log format compatible with [Lighthouse](https://github.com/gaasedelen/lighthouse). The log produced by this pintool emulates that of [drcov](http://dynamorio.org/docs/page_drcov.html) as shipped with [DynamoRIO](http://www.dynamorio.org).
3
+
The `CodeCoverage` pintool runs ontop of the [Intel Pin](https://software.intel.com/en-us/articles/pin-a-dynamic-binary-instrumentation-tool) DBI framework and collects code coverage data in a log format compatible with [Lighthouse](https://github.com/gaasedelen/lighthouse). The log produced by this pintool emulates that of [drcov](http://dynamorio.org/docs/page_drcov.html) as shipped with [DynamoRIO](http://www.dynamorio.org).
4
4
5
5
This pintool is labeled only as a prototype.
6
6
@@ -12,7 +12,7 @@ Follow the build instructions below for your respective platform.
12
12
13
13
## Building for MacOS or Linux
14
14
15
-
On MacOS or Liunux, one can compile the pintool using the following commands.
15
+
On MacOS or Linux, one can compile the pintool using the following commands.
16
16
17
17
```
18
18
# Location of this repo / pintool source
@@ -39,7 +39,11 @@ Launch a command prompt and build the pintool with the following commands.
39
39
### 32bit Pintool
40
40
41
41
```
42
-
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
42
+
REM If you are on VS 2022 or so you can run this line:
43
+
"C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" x86
44
+
45
+
REM VS 2015 or so you can run this line instead:
46
+
REM "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
43
47
44
48
REM Location of this repo / pintool source
45
49
cd C:\Users\user\lighthouse\coverage\pin
@@ -53,7 +57,11 @@ build-x86.bat
53
57
### 64bit Pintool
54
58
55
59
```
56
-
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86_amd64
60
+
REM If you are on VS 2022 or so you can run this line:
0 commit comments