Analyzers
Talk to fellow users of Intel Analyzer tools (Intel VTune™ Profiler, Intel Advisor)
4995 Discussions

how to create a project on the command line

kallol
Beginner
305 Views
OS: Red Hat Enterprise Linux AS release 3 (Taroon Update 2) of IA64.
Vtune: VTune30beta

The software gets installed fine, there is no GUI support, ie. no vtlec.


Question: How do we create a project on the command line?
0 Kudos
1 Reply
jeffrey-gallagher
305 Views
Yes, Kallol, there is no eclipse standard yet for Itanium, so, no vtlec command, just vtl, as you stated. Some good places for you to read:
$ man vtl
$ man sampling
$ man callgraph
User's Guide (sections on sampling and callgraph quick starts)
/opt/intel/vtune/doc/users_guide/index.htm
BUT, that said, here are two quick examples, from memory:
$ vtl activity -c sampling -d 20 -app /my/application run
(this creates and runs a 20 second sampling session on "/my/application")
To view the data:
$ vtl view
or
$ vtl view -gui
(The -gui option shows you a plug in viewer, very snappy, very nice -- use this instead of vtlec, which you don't have anyway on Itanium Linux)
Another sample, callgraph this time:
$ vtl activity -c callgraph -app /my/application -moi /my/application run
view the same way
$ vtl view
or
$ vtl view -gui
Other useful commands:
$ vtl --help
$ vtl version
I hope this helps!
cheers
jdg

Message Edited by jdgallag on 11-22-2004 03:41 PM

0 Kudos
Reply