Deutsch English Français Italiano |
<v4s3ld$1cgrl$2@dont-email.me> View for Bookmarking (what is this?) Look up another Usenet article |
Path: ...!3.eu.feeder.erje.net!feeder.erje.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: bart <bc@freeuk.com> Newsgroups: comp.lang.c Subject: Re: Baby X is bor nagain Date: Tue, 18 Jun 2024 14:55:57 +0100 Organization: A noiseless patient Spider Lines: 42 Message-ID: <v4s3ld$1cgrl$2@dont-email.me> References: <v494f9$von8$1@dont-email.me> <v49seg$14cva$1@raubtier-asyl.eternal-september.org> <v49t6f$14i1o$1@dont-email.me> <v4bcbj$1gqlo$1@raubtier-asyl.eternal-september.org> <v4bh56$1hibd$1@dont-email.me> <v4c0mg$1kjmk$1@dont-email.me> <v4c8s4$1lki1$4@dont-email.me> <20240613002933.000075c5@yahoo.com> <v4emki$28d1b$1@dont-email.me> <20240613174354.00005498@yahoo.com> <v4okn9$flpo$2@dont-email.me> <v4p37r$k32n$1@dont-email.me> <v4pei3$m5th$2@dont-email.me> <v4q2gm$sib9$1@dont-email.me> <v4rv7r$1b7h1$2@dont-email.me> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Injection-Date: Tue, 18 Jun 2024 15:55:58 +0200 (CEST) Injection-Info: dont-email.me; posting-host="53025cad3a0039377ef43824bbd67ea2"; logging-data="1459061"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18ALgWdHbWBFDJOqLRPEYch" User-Agent: Mozilla Thunderbird Cancel-Lock: sha1:xR/VuwEaPjftgQvPQN1QkPXc1Gc= Content-Language: en-GB In-Reply-To: <v4rv7r$1b7h1$2@dont-email.me> Bytes: 3019 On 18/06/2024 13:40, David Brown wrote: > On 17/06/2024 21:24, bart wrote: >> On 17/06/2024 14:43, David Brown wrote: >>> On 17/06/2024 12:30, bart wrote: >>>> On 17/06/2024 07:22, James Kuyper wrote: >>>>> On 6/13/24 10:43, Michael S wrote: >>>>>> On Thu, 13 Jun 2024 13:53:54 +0200 >>>>>> David Brown <david.brown@hesbynett.no> wrote: >>>>> ... > >> If you don't need optimised code right now, why would you invoke gcc >> rather than tcc? It's a no-brainer. > > You might use tcc if you have no brain. People who do C development > seriously don't use the compiler just to generate an exe file. gcc is a > development tool, not just a compiler. (As is clang, and MSVC.) If you > think compilation speed of a subset of C is all that matters, you are > not doing C development. > It's all that mattered in the context that you snipped. Which actually /isn't/ C development; the C has been generated by a program. This hardly an uncommon use of a C compiler; there, all you want of it is (1) to generate executable code (2) perhaps make it generate fast code. There are a number of use-cases where the extra capabilities of C aren't relevant. If I do this: gcc prog.c del a.exe where 'del a.exe' is done by mistake (or perhaps I do 'gcc prog2.c' which wipes out a.exe; I like super-smart compilers!), then I have to do 'gcc prog.c' again. But it has already been analysed, and nothing has changed; I just want a translation from .c file to .exe file.