1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2025-12-27 05:20:31 +01:00

Fix mtune parameter.

This commit is contained in:
Bert Peters
2016-10-03 10:02:50 +02:00
parent 96e7934370
commit 05fb050acd

View File

@@ -1,6 +1,6 @@
# march=native and flto added # march=native and flto added
CFLAGS="-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=generic -O2 -pipe -fstack-protector-strong -flto" CXXFLAGS="-march=native -mtune=native -O2 -pipe -fstack-protector-strong -flto"
# Do a parallel build. # Do a parallel build.
MAKEFLAGS="-j6" MAKEFLAGS="-j6"