Parcourir la source

Set USECLANG=1 by default on FreeBSD.

FreeBSD 10+ no longer ships with GCC by default. Clang is the default
system compiler.
Ed Schouten il y a 10 ans
Parent
commit
34d44ffadd
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  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)