We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5afb262 commit 1e1aa4cCopy full SHA for 1e1aa4c
Kconfig.zephyr
@@ -480,6 +480,8 @@ choice COMPILER_OPTIMIZATIONS
480
prompt "Optimization level"
481
default NO_OPTIMIZATIONS if COVERAGE
482
default DEBUG_OPTIMIZATIONS if DEBUG
483
+ # gcc 14.3 -Os is broken on riscv. This setting should be in the SDK, it's here for testing
484
+ default SPEED_OPTIMIZATIONS if "$(TOOLCHAIN_VARIANT_COMPILER)" = "gnu" && RISCV
485
default SIZE_OPTIMIZATIONS_AGGRESSIVE if "$(TOOLCHAIN_VARIANT_COMPILER)" = "llvm"
486
default SIZE_OPTIMIZATIONS
487
help
0 commit comments