identity writes:
 > well nothing, just gcc blabla.c blabla.o, etc

You mentioned using c++.  gcc is the C compiler and g++ is the C++ compiler.
Since you have files with .c extension then I assume you are doing C.  So
you would want to try:

to compile:
gcc -c -o blabla.o blabla.c

to link:
gcc -o blabla blabla.o

You can combine these two steps into one, but I can't recall the syntax
right now.


 > > identity writes:
 > >  > well it was under linux, never programmed under dos
 > >
 > > Do you have a Makefile or can you supply the arguments you passed
 > > to g++?
 > >
 > >
 > >  > > > Alexandru Sofronie wrote:
 > >  > > > >
 > >  > > > > Can anyone tell me what can I do when the C++ linker has fatal
 > error:
 > >  > > > > Segment _TEXT exceedes 64K?????
 > >  > > > >
 > >  > > > > What can I do?



_______________________________________________
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list

Reply via email to