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 e2dd1e7 commit 4df4ea7Copy full SHA for 4df4ea7
config/optimize
@@ -1,12 +1,5 @@
1
-if [ "$OPTIMIZATIONS" = normal ];then
2
- GCC_OPTIM="-O2"
3
- LD_OPTIM=""
4
-fi
5
-
6
-if [ "$OPTIMIZATIONS" = size ];then
7
- GCC_OPTIM="-Os -fexcess-precision=fast"
8
- LD_OPTIM="-Wl,--as-needed"
9
+GCC_OPTIM="-Os"
+LD_OPTIM="-Wl,--as-needed"
10
11
if [ "$LTO_SUPPORT" = yes ];then
12
GCC_OPTIM_LTO="-flto -ffat-lto-objects"
distributions/LibreELEC/options
@@ -1,6 +1,3 @@
-# Build optimizations (size/normal)
- OPTIMIZATIONS="size"
# LTO (Link Time Optimization) support
LTO_SUPPORT="yes"
0 commit comments