Hi all,
Can some1 plz tell me, how to use Intel VTune with an exe writting in masm? How to display the so source code in VTune? I tried playing with the linker's parameters my self, but VTune is still saying (there's no code, do you wanna see the disassembly only?)
Can some1 help?
CuTedEvil
Can some1 plz tell me, how to use Intel VTune with an exe writting in masm? How to display the so source code in VTune? I tried playing with the linker's parameters my self, but VTune is still saying (there's no code, do you wanna see the disassembly only?)
Can some1 help?
CuTedEvil
CuTedEvil,
You could try the debug code options on build and then try running it in vtune.
Do not hold out any great hope with Vtune, it tends to be a big bad mannered oversized pig that seems to be set up to find problem in bad C code. Most of what it can do is better handled by your code design where it matters. Basically optimise where it helps and don't waste your time with the rest.
Regards,
http://www.asmcommunity.net/board/cryptmail.php?tauntspiders=in.your.face@nomail.for.you&id=2f46ed9f24413347f14439b64bdc03fd
You could try the debug code options on build and then try running it in vtune.
Do not hold out any great hope with Vtune, it tends to be a big bad mannered oversized pig that seems to be set up to find problem in bad C code. Most of what it can do is better handled by your code design where it matters. Basically optimise where it helps and don't waste your time with the rest.
Regards,
http://www.asmcommunity.net/board/cryptmail.php?tauntspiders=in.your.face@nomail.for.you&id=2f46ed9f24413347f14439b64bdc03fd
You could try the debug code options on build and then try running it in vtune
Hutch, is this by using ( /DEBUG In the Linker's parameters? Here's my one: 5,O,$B\LINK.EXE /DEBUG /fixed:no /SUBSYSTEM:WINDOWS /DEBUG /VERSION:4.0 /LIBPATH:"$L",3,4 (/fixed:no is required by VTune))
I still get the error, as you can see in the picture.
Do not hold out any great hope with Vtune
I just wanna try it. out of my curiousity :)
Thanks.
CuTedEvil
Problem solved. Never mind :alright:
ml /c /Cx /coff /Zi /Zd was required too!
CuTedEvil
ml /c /Cx /coff /Zi /Zd was required too!
CuTedEvil