summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTasos Katsoulas <12612986+tkatsoulas@users.noreply.github.com>2023-07-14 16:29:33 +0300
committerGitHub <noreply@github.com>2023-07-14 16:29:33 +0300
commit4fe7e9f03e837ebf666ad73ade21337f59f3cdb3 (patch)
treedcee8384bfbe77f28b8ff49ba9ac2897c5dd9656
parent1c4c72cd9db01c0b6bef573a60a3f537e4f10628 (diff)
remove loop unroll on the debug packagesbuild-optimizations
-rwxr-xr-xpackaging/docker/gen-cflags.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/docker/gen-cflags.sh b/packaging/docker/gen-cflags.sh
index 1b6c75814c..f5ccab8a4a 100755
--- a/packaging/docker/gen-cflags.sh
+++ b/packaging/docker/gen-cflags.sh
@@ -3,7 +3,7 @@
if [ -n "${CFLAGS}" ]; then
echo "${CFLAGS}"
elif [ -n "${DEBUG_BUILD}" ]; then
- echo "-ffunction-sections -fdata-sections -Og -funroll-loops -ggdb -pipe"
+ echo "-ffunction-sections -fdata-sections -Og -ggdb -pipe"
else
echo "-ffunction-sections -fdata-sections -O2 -funroll-loops -pipe"
fi