this post was submitted on 24 May 2024
800 points (98.5% liked)

Programmer Humor

31968 readers
402 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 46 points 3 months ago (1 children)

You're probably using the wrong compiler flags, did you remember -Wall -Oz -nostdlib?

[–] [email protected] 41 points 3 months ago* (last edited 3 months ago) (1 children)

-Oz

Optimize aggressively for size rather than speed.

TIL

[–] [email protected] 29 points 3 months ago (1 children)

It is, honestly, the dumbest of the -O flag option, which is why I picked it. I'm sure there are times when it's useful, but it's nearly never the right choice.

[–] [email protected] 13 points 3 months ago (1 children)

Wasm comes to mind, execution time in the browser will probably be ok, but size is a big deal

[–] [email protected] 8 points 3 months ago (1 children)

Software that runs on embedded systems usually benefits from being small, too.

[–] [email protected] 4 points 3 months ago

As someone who has worked on embedded systems for the past 30 years: It used to be a real big deal, but for the past 10-15 years it hasn't. We now have fully fledged multi core systems running everything. Even small embedded sensors or actuation controllers are 100+ MHz microcontrollers with oodles of flash and ram.

Now there has been an interesting turnaround with the whole chip shortage for the past years. All the young folk are at a loss, being used to just putting powerful chips all around willy-nilly. So they turn to the old folk like me to figure out designs with less chips, running busses all over and connecting dumb sensors/actuators to a central processing unit.