Skip to content

Commit 34d44ff

Browse files
committed
Set USECLANG=1 by default on FreeBSD.
FreeBSD 10+ no longer ships with GCC by default. Clang is the default system compiler.
1 parent 7e5585a commit 34d44ff

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

Make.inc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ USEGCC = 0
2020
USECLANG = 1
2121
endif
2222

23+
ifeq ($(OS), FreeBSD)
24+
USEGCC = 0
25+
USECLANG = 1
26+
endif
27+
2328
AR = ar
2429

2530
ifeq ($(USECLANG),1)

0 commit comments

Comments
 (0)