]> Git Repo - buildroot-mgba.git/commit
Config.in: change default optimization level from -Os to -O2
authorThomas Petazzoni <[email protected]>
Tue, 2 Jan 2024 08:36:42 +0000 (09:36 +0100)
committerYann E. MORIN <[email protected]>
Sun, 7 Jan 2024 16:59:48 +0000 (17:59 +0100)
commit292949c638e304ad5104004b95de7895ef3bd405
tree3f0f6ef78cc22b1b514c30a1b159d4a43358b9d6
parent9501bc80f5c34cd04bdc686cd74324beb452649e
Config.in: change default optimization level from -Os to -O2

Historically, Buildroot has defaulted to -Os as the gcc optimization
flags. However, this default is probably not the most appropriate
anymore, and this commit therefore changes the default to -O2.

Here are some arguments in favor of this change:

- Most Buildroot users use Buildroot for platforms that have a
  reasonable amount of storage, and the difference between -Os and -O2
  in terms of code size is no longer as significant compared to the
  size of storage available on average embedded Linux devices
  typically found these days.

- -Os can have a pretty bad performance impact, compared to -O2.

- -Os is much less widely tested than -O2. For example, with recent
   versions of gcc, there are parts of Qt5 that segfault when compiled
   with -Os and work perfectly fine with -O2. Yes, it's a compiler bug
   that should be fixed, but in the mean time, having a default that's
   more widely used/tested makes sense.

Signed-off-by: Thomas Petazzoni <[email protected]>
Acked-by: Yann E. MORIN <[email protected]>
Signed-off-by: Yann E. MORIN <[email protected]>
Config.in
This page took 0.027355 seconds and 4 git commands to generate.