mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 02:36:39 +02:00
25 lines
827 B
Diff
25 lines
827 B
Diff
From 91e9ec2982ec57cf847d9aab6aeeec903797588f Mon Sep 17 00:00:00 2001
|
|
From: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
Date: Thu, 29 Aug 2024 08:25:09 +0000
|
|
Subject: [PATCH] disable O2
|
|
|
|
---
|
|
Makefile.inc | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Makefile.inc b/Makefile.inc
|
|
index 729618b..978de09 100644
|
|
--- a/Makefile.inc
|
|
+++ b/Makefile.inc
|
|
@@ -99,7 +99,7 @@ SYSTEMD_LIBDEPS := $(if $(SYSTEMD),$(if $(shell test $(SYSTEMD) -gt 209 && echo
|
|
MODPROBE_UNIT := $(shell test "0$(SYSTEMD)" -lt 245 2>/dev/null || \
|
|
echo "modprobe@dm_multipath.service")
|
|
|
|
-OPTFLAGS := -O2 -g $(STACKPROT) --param=ssp-buffer-size=4
|
|
+OPTFLAGS := -Os -g $(STACKPROT) --param=ssp-buffer-size=4
|
|
|
|
# Set WARN_ONLY=1 to avoid compilation erroring out due to warnings. Useful during development.
|
|
WARN_ONLY :=
|
|
--
|
|
2.46.0
|
|
|