1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2025-12-25 20:40:32 +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
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"