summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKamil Cholewinski <[email protected]>2021-05-06 13:04:58 +0200
committerKamil Cholewinski <[email protected]>2021-05-06 13:04:58 +0200
commitb984eb280805aa860465bfd36b4a758a63afb745 (patch)
tree26d5e58a9582f8aa419d55db478778a4107bd62e /Makefile
parente8f7d5ef9e7ba6be0b2163cfa31f8817ba5b18f4 (diff)
Use clang on OpenBSD
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 144225fc..39dabafd 100644
--- a/Makefile
+++ b/Makefile
@@ -17,8 +17,8 @@ ifeq ($(OSTYPE),FreeBSD)
include make-bsd.mk
endif
ifeq ($(OSTYPE),OpenBSD)
- CC=egcc
- CXX=eg++
+ CC=clang
+ CXX=clang++
ZT_BUILD_PLATFORM=9
include make-bsd.mk
endif