no0ne
December 4th, 2002, 10:58 PM
does anyone know how to
I am familiar with g++ the unix/linux gnu compiler, But I am on a windows box right now and only have a command line borland compiler c++. I have an object file and a source file and need to create an executable. In order to this g++ I believe I would first run a preprocess on the .cpp file which would create 'standard code' I think the term is, then I would run a compiler on the 'standard code' this would create assembly code, next I could run an assembler on the assembly code this would create object code. So then finally I could run a linker on the new object code as well as the original object. This would create an executable.
Using borland I found
CPP32.EXE is the preprocessor
and
ILINK32.EXE is the linker
but I don't see a compiler or assembler...
How does Borland go about going from 'standard code' from the preprocessor to object code????
Any help would be greatly appreciated
I am familiar with g++ the unix/linux gnu compiler, But I am on a windows box right now and only have a command line borland compiler c++. I have an object file and a source file and need to create an executable. In order to this g++ I believe I would first run a preprocess on the .cpp file which would create 'standard code' I think the term is, then I would run a compiler on the 'standard code' this would create assembly code, next I could run an assembler on the assembly code this would create object code. So then finally I could run a linker on the new object code as well as the original object. This would create an executable.
Using borland I found
CPP32.EXE is the preprocessor
and
ILINK32.EXE is the linker
but I don't see a compiler or assembler...
How does Borland go about going from 'standard code' from the preprocessor to object code????
Any help would be greatly appreciated