0

I tried to create traces of spec2006 but don't know what program to pass in

pin -t obj-intel64/champsim_tracer.so -- <your program here>

there are lots of cpp files in just one int program like bzip2 and gcc.

Peter Cordes
  • 328,167
  • 45
  • 605
  • 847
Dhruv Makwana
  • 61
  • 1
  • 7

1 Answers1

3

You need to provide executable file name as input. E.g.,

pin -t obj-intel64/champsim_tracer.so -- gcc hello.c

or

pin -t obj-intel64/champsim_tracer.so -- bzip2 input_file_name

ajit
  • 410
  • 3
  • 9