From 288c1d7e61efc013b7c823870191bfb93c7180ae Mon Sep 17 00:00:00 2001 From: C2D <50617709+i404788@users.noreply.github.com> Date: Mon, 27 Feb 2023 16:15:27 +0100 Subject: [PATCH] Allow for alternative compiler (#107) --- src/socketify/native/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/socketify/native/Makefile b/src/socketify/native/Makefile index c0c31db..82aa405 100644 --- a/src/socketify/native/Makefile +++ b/src/socketify/native/Makefile @@ -1,7 +1,7 @@ LIBRARY_NAME := libsocketify UWS_LIBRARY_NAME := libuwebsockets -CC := clang -CXX := clang++ +CC ?= clang +CXX ?= clang++ ARCH := amd64 ifeq ($(PLATFORM), arm64)