1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2025-12-25 12:30:32 +01:00

Remove flto flags.

Causes problems for some packages, includingg Swift.
This commit is contained in:
2018-04-23 14:38:06 +02:00
parent 41af3c675f
commit 87799b6fcc

View File

@@ -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"