Skip to content

Commit f944b62

Browse files
committedFeb 3, 2024
Update Intel pin build scripts for pin-3.30-98830 (MSVC)
1 parent 1b88337 commit f944b62

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed
 

‎coverage/pin/README.md

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CodeCoverage Pintool
22

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).
44

55
This pintool is labeled only as a prototype.
66

@@ -12,7 +12,7 @@ Follow the build instructions below for your respective platform.
1212

1313
## Building for MacOS or Linux
1414

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.
1616

1717
```
1818
# Location of this repo / pintool source
@@ -39,7 +39,11 @@ Launch a command prompt and build the pintool with the following commands.
3939
### 32bit Pintool
4040

4141
```
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
4347
4448
REM Location of this repo / pintool source
4549
cd C:\Users\user\lighthouse\coverage\pin
@@ -53,7 +57,11 @@ build-x86.bat
5357
### 64bit Pintool
5458

5559
```
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:
61+
"C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64
62+
63+
REM VS 2015 or so you can run this line instead:
64+
REM "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86_amd64
5765
5866
REM Location of this repo / pintool source
5967
cd C:\Users\user\lighthouse\coverage\pin
@@ -64,7 +72,7 @@ set PATH=%PATH%;%PIN_ROOT%
6472
build-x64.bat
6573
```
6674

67-
The resulting binaries will be labaled based on their architecture (eg, 64 is the 64bit pintool).
75+
The resulting binaries will be labeled based on their architecture (eg, 64 is the 64bit pintool).
6876

6977
* CodeCoverage.dll
7078
* CodeCoverage64.dll

‎coverage/pin/build-x64.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ link ^
2727
/LIBPATH:%PIN_ROOT%\intel64\lib ^
2828
/LIBPATH:"%PIN_ROOT%\intel64\lib-ext" ^
2929
/LIBPATH:"%PIN_ROOT%\extras\xed-intel64\lib" ^
30-
/LIBPATH:%PIN_ROOT%\intel64\runtime\pincrt pin.lib xed.lib pinvm.lib pincrt.lib ntdll-64.lib kernel32.lib crtbeginS.obj ^
30+
/LIBPATH:%PIN_ROOT%\intel64\runtime\pincrt pin.lib xed.lib pinipc.lib pincrt.lib kernel32.lib crtbeginS.obj ^
3131
/NODEFAULTLIB ^
3232
/MANIFEST:NO ^
3333
/OPT:NOREF ^

‎coverage/pin/build-x86.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ link ^
2828
/LIBPATH:%PIN_ROOT%\ia32\lib ^
2929
/LIBPATH:"%PIN_ROOT%\ia32\lib-ext" ^
3030
/LIBPATH:"%PIN_ROOT%\extras\xed-ia32\lib" ^
31-
/LIBPATH:%PIN_ROOT%\ia32\runtime\pincrt pin.lib xed.lib pinvm.lib pincrt.lib ntdll-32.lib kernel32.lib crtbeginS.obj ^
31+
/LIBPATH:%PIN_ROOT%\ia32\runtime\pincrt pin.lib xed.lib pinipc.lib pincrt.lib kernel32.lib crtbeginS.obj ^
3232
/NODEFAULTLIB ^
3333
/MANIFEST:NO ^
3434
/OPT:NOREF ^

0 commit comments

Comments
 (0)
Please sign in to comment.