File: portability.patch

package info (click to toggle)
clonalorigin 1.0-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,800 kB
  • sloc: cpp: 10,488; perl: 349; xml: 130; makefile: 48; sh: 33
file content (16 lines) | stat: -rw-r--r-- 610 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Author: Andreas Tille <tille@debian.org>
Last-Update: 2017-12-02
Description: Drop -msse for portability reasons
Forwarded: not-needed

--- a/warg/src/Makefile.am
+++ b/warg/src/Makefile.am
@@ -1,7 +1,7 @@
 bin_PROGRAMS = warg
 
 #OPTIMIZATION = -O1 -g -Wall
-OPTIMIZATION = -O3 -Wall -mfpmath=sse -msse -msse2 -funroll-loops -fomit-frame-pointer -ftree-vectorize -funsafe-math-optimizations
+OPTIMIZATION = -O3 -Wall -funroll-loops -fomit-frame-pointer -ftree-vectorize -funsafe-math-optimizations
 warg_CXXFLAGS = $(GSL_CFLAGS) $(OPTIMIZATION) -Wall
 warg_LDFLAGS = $(OPTIMIZATION)
 warg_LDADD = $(GSL_LIBS)