profiler for c++ native makefile in vs .net 2003

How can I profile a makefile

What app. do I use for profiling

I need manual switches for compier - I don't know what to do with DevPartner about this.



Answer this question

profiler for c++ native makefile in vs .net 2003

  • Robert Beaubien

    OK,

    I have the following c++ project:

    hello.cpp

    ------------

    #include <stdio.h>

    int main() {

    printf("Hello");

    return 0;

    }

    Makefile

    ------------

    hello.exe: hello.cpp

    cl hello.cpp

    Now, I make a new makefile project in VS .NET 2003, meaning the build command is nmake, and I'd like to profile this project. The only profiler I used up until now was Compuserve's DevStudio. It ignored my project, maybe because it needs its own compiler switches or whatever.

    Can I have a work around

    If not do I have another recommended profiler

    What about CAPS, it seems I'm missing caps.dll

    Thanks


  • Brian Layden

    Hi Zoharl3,

    I did not understand the question very much.
    Can you elaborate it more detailed

    Also it seems that you want a function in VS.NET 2003, so what you do you mean by "DevPartner"

    If you still have any concern, please feel free to post here.

    Best regards,
    Peter Huang



  • Baan Ravi

    Hi Zoharl3 ,

    I have consulted the IDE engineer, the VS.NET 2003 did not provide such a tool to profile the process that nmake compiled the project via makefile.

    I am not familar with DevStudio, but since you have used that funtion before. I think you may try to consult the DevStudio to see if there is any workaround for a makefile in VS.NET 2003.

    If you still have any concern, please feel free to post here.

    Best regards,
    Peter Huang



  • profiler for c++ native makefile in vs .net 2003