From 3918c56a15a63c636737fe1f202c5e47825e9f21 Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Wed, 24 Apr 2024 19:39:37 -0400 Subject: [PATCH] To use full C++ we have to have its compiler as the linker. --- sc2/build/unix/make/buildtools-generic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc2/build/unix/make/buildtools-generic b/sc2/build/unix/make/buildtools-generic index b3ea464a4..8db92086f 100644 --- a/sc2/build/unix/make/buildtools-generic +++ b/sc2/build/unix/make/buildtools-generic @@ -31,6 +31,6 @@ define act_objcc endef define act_link - $(LINK) -o "$@" $^ $(LDFLAGS) + $(CXX) -o "$@" $^ $(LDFLAGS) endef