-
Notifications
You must be signed in to change notification settings - Fork 165
Description
Hi @hasherezade
Can you update the readme.md file to add the build instructions?
To build TinyTrace using MSVC, Pin MSVC, and Windows, we can use the makefiles available from Intel Pin.
Easier, more convenient, and more accurate. You don't need to depend on the Pin version.
Install Cygwin or Cygwin64 (recommended) with the make package.
Define the environment variable PIN_ROOT to point to the Pin directory.
Should follow Unix syntax, use/separator instead of \ separator.
Open x86/x64 Native Tools Command Prompt for VS xxx window
-
x64 for 64-bit build Pin Tools, TinyTracer64.dll
Cd do TinyTracer dir, type:
make
If the build is successful, there will be TinyTracer64.dll in the obj-intel64 folder -
x86 for 32-bit build Pin Tools, TinyTracer32.dll
Cd do TinyTracer dir, type:
make TARGET=ia32
If the build is successful, there will be TinyTracer32.dll in the obj-ia32 folder
Thanks