configure: revert -Oz back to -O3

Apparently OpenBSD's gcc doesn't support -Oz...
This commit is contained in:
Jeremy Baxter 2024-03-14 14:53:17 +13:00
parent ec2a841c04
commit e0c6377779

2
configure vendored
View file

@ -94,7 +94,7 @@ gen_CC () {
## flags used in the compilation step ## flags used in the compilation step
gen_CFLAGS () { gen_CFLAGS () {
if [ -z "$debug" ]; then if [ -z "$debug" ]; then
cflags="$cflags -Oz" cflags="$cflags -O3"
else else
cflags="$cflags -O0 -g" cflags="$cflags -O0 -g"
fi fi