This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC 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]

Re: c++ question


Hi John,

John Burski wrote:
[...]
// File: hello.cpp

#include <iostream>
using namespace std;


int main() {
cout << "Hello, World\n";
}
[...]
If you add the above line everything should do fine (alternativly you can use std::cout instead of cout)

[...]
INCLUDE = /usr/include/g++-3
LIBES = -lstdc++-3-libc6.2-2-2.10.0

hello: hello.o
	g++ -o hello hello.o $(LIBES)

hello.o: hello.cpp
	g++ -c -I$(INCLUDE) hello.cpp
I would urge you not to include system-libraries this way, it makes your source less portable.

CU
Alexander


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