summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Cottlehuber <dch@skunkwerks.at>2017-03-16 12:58:04 +0100
committerGitHub <noreply@github.com>2017-03-16 12:58:04 +0100
commit25dc5963977a3ca7e8a2e6e09a3ed9a4d43fe527 (patch)
treeb5894a7c8af7251b05e0c51352b48a0679e1cff4
parent0daff26fba640f2ef167ad66974dc1c4a6c79c01 (diff)
downloadinfinitytier-25dc5963977a3ca7e8a2e6e09a3ed9a4d43fe527.tar.gz
infinitytier-25dc5963977a3ca7e8a2e6e09a3ed9a4d43fe527.zip
build: use clang on FreeBSD
this avoids a whopping 500+Mb dependency on gcc and friends at runtime
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2f11e5fa..95118621 100644
--- a/Makefile
+++ b/Makefile
@@ -11,8 +11,8 @@ ifeq ($(OSTYPE),Linux)
endif
ifeq ($(OSTYPE),FreeBSD)
- CC=gcc
- CXX=g++
+ CC=clang
+ CXX=clang++
ZT_BUILD_PLATFORM=7
include make-bsd.mk
endif