From 4e47e040a36e68bfa00c44f0953d1a45ab5198be Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Sun, 25 Aug 2024 23:49:48 -0400 Subject: [PATCH] Specify -O3 in makepkg.conf --- config-files/makepkg.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config-files/makepkg.conf b/config-files/makepkg.conf index 423aadc..73b6077 100644 --- a/config-files/makepkg.conf +++ b/config-files/makepkg.conf @@ -38,7 +38,7 @@ CHOST="x86_64-pc-linux-gnu" #-- Compiler and Linker Flags #CPPFLAGS="" -CFLAGS="-march=native -mtune=native -O2 -pipe -fno-plt -fexceptions \ +CFLAGS="-march=native -mtune=native -O3 -pipe -fno-plt -fexceptions \ -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security \ -fstack-clash-protection -fcf-protection" CXXFLAGS="$CFLAGS -Wp,-D_GLIBCXX_ASSERTIONS"