From: Jon Feldman Date: Sun, 26 Mar 2017 14:25:08 +0000 (-0400) Subject: g++ -> gcc X-Git-Url: https://chaos.moe/g/?a=commitdiff_plain;ds=sidebyside;p=corbenik%2Fbdfe.git 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) --- 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