Merge pull request #1400 from rollcat/openbsd

Use clang on OpenBSD
This commit is contained in:
Joseph Henry 2021-09-01 14:08:23 -07:00 committed by GitHub
commit 15380cfc14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,8 +17,8 @@ ifeq ($(OSTYPE),FreeBSD)
include make-bsd.mk include make-bsd.mk
endif endif
ifeq ($(OSTYPE),OpenBSD) ifeq ($(OSTYPE),OpenBSD)
CC=egcc CC=clang
CXX=eg++ CXX=clang++
ZT_BUILD_PLATFORM=9 ZT_BUILD_PLATFORM=9
include make-bsd.mk include make-bsd.mk
endif endif