1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Author: Michael R. Crusoe
Description: drop SSE flag, not needed for AMD64 and x32 and limits portability
according to Aaron M. Ucko <ucko@debian.org>
Forwarded: https://github.com/amplab/snap/pull/67
--- snap-aligner.orig/Makefile
+++ snap-aligner/Makefile
@@ -2,7 +2,7 @@
CXXFLAGS = -O3 -Wno-format
endif
-CXXFLAGS += -MMD -ISNAPLib -msse
+CXXFLAGS += -MMD -ISNAPLib
LDFLAGS += -pthread
|