build: remove sse3 option, as it's cause bot to be not loadable on some KVM hypervisors.

graph: store only author name inside author string.
This commit is contained in:
ds 2020-10-01 10:43:51 +03:00
commit ced06c36cd
4 changed files with 14 additions and 7 deletions

View file

@ -86,7 +86,7 @@ if isCLang or isGCC or (isIntel and not isWindows)
]
if isOptimize
flagsCompiler += '-msse3'
flagsCompiler += '-msse2'
if (isCLang or isGCC) and not isDarwin
flagsCompiler += '-flto'
@ -138,7 +138,7 @@ if isLinux or isDarwin
else
flagsCompiler += [
'-mtune=generic',
'-msse3',
'-msse2',
'-mfpmath=sse',
'-fno-builtin',
'-funroll-loops',