From 0500aae0c02f019f2622cc822bfb3d6d359a5b48 Mon Sep 17 00:00:00 2001 From: nhmall Date: Mon, 10 Aug 2020 21:39:00 -0400 Subject: [PATCH] another linux.2020 tweak Leave CC alone; we've already determined whether it invoked gcc or clang --- sys/unix/hints/linux.2020 | 2 -- 1 file changed, 2 deletions(-) diff --git a/sys/unix/hints/linux.2020 b/sys/unix/hints/linux.2020 index d13cd9b58..96db2412a 100755 --- a/sys/unix/hints/linux.2020 +++ b/sys/unix/hints/linux.2020 @@ -119,10 +119,8 @@ endif # compiler detection CCISCLANG := $(shell echo `$(CC) --version` | grep clang) ifeq "$(CCISCLANG)" "" -CC=gcc CXX=g++ -std=gnu++11 else -CC=clang CXX=clang++ -std=gnu++11 endif