
This directory contains a utility that interprets profile data generated 
when you build your application with the NET+OS profiler.  See the 
NET+OS Users Guide for more information about this utility.

It uses the following command line:

    profile <switches> <out file> <map file> <in file> 
    profile -h      Displays this help.
    profile -v      Increases verbosity.  Use more than once if necessary.
    profile -l      Little-endian target.
    profile -b      Big-endian target. (default)
    
where switches may be:

    -h      Displays help message
    -v      Increases verbosity.  Use more than once if necessary.
    -l      Little-endian target.
    -b      Big-endian target. (default)

and <out file> is the name of the generated output file, <map file>
is the name of the application map file, and <in file> is the name 
of the profile data file.

This application can be built with the GNU tools that ship with Cygwin.
These tools are shipped with NET+OS for GNU.  If you do not have them,
then you can download them for free from http://www.cygwin.com/.

To build using Microsoft Visual C++ to remove the cygwin1.dll dependency,
use these commands:

nmake /f "profiler.mak" CFG="profiler - Win32 Release"

nmake /f "profiler.mak" CFG="profiler - Win32 Release" clean

