Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to setup gcc's include n lib directories

Status
Not open for further replies.

hughLg

Programmer
Feb 18, 2002
136
MY
i'm using fedora core 2. i've a C__ files containing:
Code:
#include <iostream.h>

cout << "..";
the compiler said the iostream.h header file cannot be found and the use of cout is...error message focusing on header file cannot be found.

i'm beginner of this OS, how to set the environment path, like in WIndows set command? where to set the include and library directory to?

i've same problem even i change it to
Code:
#include <iostream>
using namespace std;
or using stdio.h
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top