diff options
author | Dave Cottlehuber <dch@skunkwerks.at> | 2017-03-16 12:58:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-16 12:58:04 +0100 |
commit | 25dc5963977a3ca7e8a2e6e09a3ed9a4d43fe527 (patch) | |
tree | b5894a7c8af7251b05e0c51352b48a0679e1cff4 | |
parent | 0daff26fba640f2ef167ad66974dc1c4a6c79c01 (diff) | |
download | infinitytier-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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |