this post was submitted on 18 Feb 2024
705 points (99.9% liked)
196
16449 readers
1973 users here now
Be sure to follow the rule before you head out.
Rule: You must post before you leave.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I always knew tomatoes were unoptimized
Someone compiled tomatoes without -O3
Go with -Os to optimise for codesize
Often faster anyways as the CPU is eating through instructions faster than the RAM can keep up with. May or may not require compiling as
x86-64-v2
, depending on code. In general, never trust performance you didn't benchmark.