From 8dd92c814dd7a572705ab151df2298a6784f165e Mon Sep 17 00:00:00 2001 From: Jon Feldman Date: Sun, 26 Mar 2017 10:25:08 -0400 Subject: [PATCH] g++ -> gcc I'm not sure why it was like this in the first place, but it seems to cause modern versions of clang aliased as gcc to puke (read: OSX / XCode) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 89a6729..816b796 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CXX = g++ +CXX = gcc CFLAGS = -Wall -Werror CFLAGS += -g #CFLAGS += -O3 -- 2.39.5