Re: C23 thoughts and opinions

Liste des GroupesRevenir à cl c 
Sujet : Re: C23 thoughts and opinions
De : already5chosen (at) *nospam* yahoo.com (Michael S)
Groupes : comp.lang.c
Date : 09. Jun 2024, 10:40:32
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <20240609124032.00004eb1@yahoo.com>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
User-Agent : Claws Mail 3.19.1 (GTK+ 2.24.33; x86_64-w64-mingw32)
On Sat, 8 Jun 2024 14:52:26 -0500
BGB <cr88192@gmail.com> wrote:

On 6/8/2024 1:28 PM, Malcolm McLean wrote:
On 07/06/2024 01:53, Lawrence D'Oliveiro wrote: 
On Thu, 6 Jun 2024 15:38:21 -0500, BGB-Alt wrote:
 
*2: Seemingly the main way I am aware of to get small binaries is
to use an older version of MSVC (such as 6.0 to 9.0), as the
binary-bloat started to get much more obvious around Visual
Studio 2010, but is less of an issue with VS2005 or VS2008. 
>
Newer version of proprietary compiler generates worse code than
older version?!? 
If the code is calling extern gunctions that do IO, we woul expect
these to be massively more sophisticated on a modern ststem Witha
little comouter, pribtf just wtites acharacter raster and utimalthe
he Os picks the up and flushes it out to a pixel raster. And that'
aal it's doing. Whilst on a modrern syste, stdout can do whole lot
of intricate things.
 
That is a whole lot of typos...
 
 
But, even if it is built calling MSVCRT as a DLL (rather than static
linked), modern MSVC is still the worst of the bunch in this area.
 
A build as RISC-V + PIE with a static-linked C library still manages
to be smaller than an x64 build via MSVC with entirely dynamic-linked
libraries.
 
And, around 72% bigger than the same program built as a
dynamic-linked binary with "GCC -O3" (while also often still being
around 40% slower).
>

GCC on Windows or on Linux?
In my experience, gcc on Windows (ucrt64 variant, other gcc variants
are worse) very consistently produces bigger (stripped) exe than even
latest MSVCs which, as you correctly stated, are not as good as older
versions at producing small code.

The size of 'Hello, world' program (x86-64, dynamically linked C RTL)
vs2013 - 6,144 bytes
vs2019 - 9,216 bytes
gcc (Debian Linux, -no-pie) - 14,400 bytes
gcc (Debian Linux) - 14,472 bytes
gcc (ucrt64 DLL) - 18,432 bytes
gcc (old DLL) - 42,496 bytes

MSVC compilation flags: -O1 -MD
gcc compilation flags: -Oz -s

Contrast, VS2008 can build programs with binary sizes closer to those
of GCC.
>


Date Sujet#  Auteur
31 May 24 o Re: C23 thoughts and opinions73bart

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal