I have downloaded pgi windows version6.0.5.
when I compile a c++ file using the following command:
pgCC a.cpp
it replies: pgCC-Warning-Please use pgcpp for C++ source files: a.cpp.
so, I do
pgcpp a.cpp
this time it answers: pgcpp: command not found.
I am confused.
Would anyone like to help me? thanks a lot.
by the way , the a.cpp is very simple:
#include
using namespace std;
int main()
{
cout<<“hello PGI \n”;
return 0;
}