From 05fb050acdc2ce33ee24f3ac7348c274ebf2a93c Mon Sep 17 00:00:00 2001 From: Bert Peters Date: Mon, 3 Oct 2016 10:02:50 +0200 Subject: [PATCH] Fix mtune parameter. --- 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 f5b03ac..f9154ae 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=generic -O2 -pipe -fstack-protector-strong -flto" -CXXFLAGS="-march=native -mtune=generic -O2 -pipe -fstack-protector-strong -flto" +CFLAGS="-march=native -mtune=native -O2 -pipe -fstack-protector-strong -flto" +CXXFLAGS="-march=native -mtune=native -O2 -pipe -fstack-protector-strong -flto" # Do a parallel build. MAKEFLAGS="-j6"