Re: Can collect2 just generate the c file?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Perry Smith <pedz@xxxxxxxxxxxxxxxx> writes:

> Can I call g++ with arguments so that it will generate the source
> file (I assume it is a .c file) and then stop.
> 
> I want to call the linker myself.  I think that is going to be easier
> to do in my situation.

g++ does not generate C code.  It translates directly from C++ to
assembler code.

You can get the assembler code with -S, or the assembler output with
-c.  Using -c will give you a .o file which you can use to call the
linker yourself.

Ian

[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux