This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

purify?


Hello,

Just wondering if there is any information about running
a program built with gcc under Purify?  My version of Purify
dies while "instrumenting" cygwin.dll.  I'm emailing them 
directly, but wanted to see if anyone had a thought on the
top of their head (I'm new to the NT environment, unfortunately).

I couldn't find any reference to purify in the readme and faq.

Thanks for your time!
-pamela

Just in case this helps:
- installed  c:\Programs\gnuwin32\b18
- purify version = 5.0
- compiled my test 'm.C' via:
     cc -IC:/Programs/gnuwin32/b18/include/g++/ -g -O0 m.C -o m -lstdc++
- OS: NT Workstation 4.0, service pack 3
- source for 'm.C':
=================================================================
#include <iostream.h>

int main( int argc, char** argv )
{
  if( argc < 2 )
  {
    cerr << argv[0] << " usage: file_name" << endl;
    return( 1 );
  }

  cout << "hello from " << argv[0];
  return 0;
} // main
=================================================================

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]