From 87799b6fcc713cd89a241c7f7c092c157e5df06e Mon Sep 17 00:00:00 2001 From: Bert Peters Date: Mon, 23 Apr 2018 14:38:06 +0200 Subject: [PATCH] Remove flto flags. Causes problems for some packages, includingg Swift. --- pacman/.config/pacman/makepkg.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pacman/.config/pacman/makepkg.conf b/pacman/.config/pacman/makepkg.conf index 4aa5930..f455a1c 100644 --- a/pacman/.config/pacman/makepkg.conf +++ b/pacman/.config/pacman/makepkg.conf @@ -1,6 +1,6 @@ # march=native and flto added -CFLAGS="-march=native -mtune=native -O2 -pipe -fstack-protector-strong -flto" -CXXFLAGS="-march=native -mtune=native -O2 -pipe -fstack-protector-strong -flto" +CFLAGS="-march=native -mtune=native -O2 -pipe -fstack-protector-strong" +CXXFLAGS="-march=native -mtune=native -O2 -pipe -fstack-protector-strong" # Do a parallel build. MAKEFLAGS="-j6"