From 5c8d08d8ef68edf6c77691af7e669804a20691fd Mon Sep 17 00:00:00 2001 From: jsteube Date: Mon, 31 Oct 2016 09:34:22 +0100 Subject: [PATCH] On OSX, use clang as default compiler --- src/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Makefile b/src/Makefile index 183d14ece..32ad38163 100644 --- a/src/Makefile +++ b/src/Makefile @@ -65,9 +65,12 @@ FIND := find INSTALL := install RM := rm SED := sed + ifeq ($(UNAME),Darwin) +CC := clang SED := gsed endif + ifeq ($(UNAME),FreeBSD) CC := cc SED := gsed