This is the mail archive of the cygwin@cygwin.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]
Other format: [Raw text]

GNU C/C++ no longer works anymore...


tsfu at dragon ~/My Documents/C++
$ cat time.cc
#include <iostream.h>
#include <time.h>

int main()
{
  time_t tp;

  tp = time(NULL);
  char *s = asctime(localtime(&tp));

  cout << s << endl;

  return 0;
}

tsfu at dragon ~/My Documents/C++
$ c++ time.cc
c++: installation problem, cannot exec `cc1plus': No such file or directory

tsfu at dragon ~/My Documents/C++
$

http://www.hkucs.org/~tsfu/
http://members.staroffice.com/www/tsfu/



--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


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