From a93cc5a54af06c2b8194e155154620e606174fb6 Mon Sep 17 00:00:00 2001 From: Erik Clarke Date: Thu, 4 Sep 2014 16:45:28 -0400 Subject: modified to compile on MBA, 10.9.4, with gcc-4.8 --- Makefile.osx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.osx b/Makefile.osx index 1c4cc9e..536a35e 100644 --- a/Makefile.osx +++ b/Makefile.osx @@ -1,6 +1,6 @@ VERSION=\"0.0.5\" -CC = g++-mp-4.8 -CFLAGS = -O3 -s -march=native -Wall -Wextra -DVERSION=$(VERSION) -std=c++11 +CC = g++-4.8 +CFLAGS = -O3 -s -msse4.2 -Wall -Wextra -DVERSION=$(VERSION) -std=c++11 DESTDIR = /usr/local -- cgit v1.2.1 From 0e34369daf6c75502bdfa31f5c22b5235375dc0f Mon Sep 17 00:00:00 2001 From: Erik Clarke Date: Mon, 8 Sep 2014 14:50:32 -0400 Subject: removed msse --- Makefile.osx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.osx b/Makefile.osx index 536a35e..3e8486b 100644 --- a/Makefile.osx +++ b/Makefile.osx @@ -1,6 +1,6 @@ VERSION=\"0.0.5\" CC = g++-4.8 -CFLAGS = -O3 -s -msse4.2 -Wall -Wextra -DVERSION=$(VERSION) -std=c++11 +CFLAGS = -O3 -s -Wall -Wextra -DVERSION=$(VERSION) -std=c++11 DESTDIR = /usr/local -- cgit v1.2.1 From b8f3d7fb1635c33caf183ab2574a138599b9726d Mon Sep 17 00:00:00 2001 From: Erik Clarke Date: Mon, 8 Sep 2014 14:57:01 -0400 Subject: remove g++ version name and -s flag (-s threw deprecation warnings) --- Makefile.osx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.osx b/Makefile.osx index 3e8486b..0fdfbc5 100644 --- a/Makefile.osx +++ b/Makefile.osx @@ -1,6 +1,6 @@ VERSION=\"0.0.5\" -CC = g++-4.8 -CFLAGS = -O3 -s -Wall -Wextra -DVERSION=$(VERSION) -std=c++11 +CC = g++ +CFLAGS = -O3 -Wall -Wextra -DVERSION=$(VERSION) -std=c++11 DESTDIR = /usr/local -- cgit v1.2.1