Sujet : Re: "A diagram of C23 basic types"
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : comp.lang.cDate : 08. Apr 2025, 03:39:42
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vt229e$15gkb$5@dont-email.me>
References : 1 2 3 4 5 6
User-Agent : Pan/0.162 (Pokrosvk)
On Fri, 4 Apr 2025 21:08:36 -0400, James Kuyper wrote:
There exist many programs that can compile either C code and C++ code,
depending either upon the extension of the file name or explicit command
line options to determine which language's rules to apply.
But note that the *nix tradition is for the “cc” command to invoke nothing
more than a “driver” program, which processes each input file according to
its extension by spawning additional processes running the actual file-
specific processors. And these processors include the linker, for
combining object files created by the various compilers into an actual
executable (or perhaps a shared library).