[Date Prev][Date Next][Date Index]
[cs485] Comipling C++ programs on bert.cs.uic.edu
The c++ programs on bert.cs requires some special things to keep in mind.
The bert.cs machine runs gcc version 3.1..
This requires the following to be present ..
#include <iostream.h> cannot be used anymore.. This has to be replaced by
the new header file naming convention
#include <iostream>
Also it is necessary to follow the #includes with
using namespace std;
This is mandatory as your programs will not compile without this line.
Another thing to keepo in mind is the LD_LIBRARY_PATH environmental
variable.
This should have /usr/local/lib as one of the directories.
More on this as i find out more.
Shank