ソースを参照

Set USECLANG=1 by default on FreeBSD.

FreeBSD 10+ no longer ships with GCC by default. Clang is the default
system compiler.
Ed Schouten 10 年 前
コミット
34d44ffadd
1 ファイル変更5 行追加0 行削除
  1. 5 0
      Make.inc

+ 5 - 0
Make.inc

@@ -20,6 +20,11 @@ USEGCC = 0
 USECLANG = 1
 endif
 
+ifeq ($(OS), FreeBSD)
+USEGCC = 0
+USECLANG = 1
+endif
+
 AR = ar
 
 ifeq ($(USECLANG),1)