From 95f15e8a64bf58735786857d9be461dc621fe87a Mon Sep 17 00:00:00 2001 From: Miro Stauder Date: Tue, 9 Apr 2024 07:15:24 +0000 Subject: [PATCH] always use gcc g++ --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 70d8642d0..6508bd5ce 100644 --- a/Makefile +++ b/Makefile @@ -66,6 +66,9 @@ ifeq ($(OS),Linux) endif ifneq (,$(findstring $(OS),Darwin FreeBSD)) NPROCS := $(shell sysctl -n hw.ncpu) + LEGACY_BUILD := 1 + export CC=gcc + export CXX=g++ endif export MAKEOPT := -j${NPROCS}