From 6c20a5c6350620c057b8b6a3d922696b61a815a3 Mon Sep 17 00:00:00 2001 From: Frank Halasz Date: Wed, 18 Mar 2026 01:03:32 -0700 Subject: [PATCH] Fixed comment in linux-compiler.mk --- bin/linux-compiler.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/linux-compiler.mk b/bin/linux-compiler.mk index 5bc17e5..dc5b80e 100644 --- a/bin/linux-compiler.mk +++ b/bin/linux-compiler.mk @@ -1,8 +1,8 @@ # Select whether to use clang or gcc # Priority -# 1. If -DUSE_GCC or -DUSE_CLANG on command line (but not both) use the requested compiler. -# 2. If one compiler is installed but not the other, use the installed compiler. -# 3. Use clang +# 1. If USE_COMPILER=gcc or USE_COMPILER=clang on make command line use the requested compiler. +# 2. If clang is installed use it. +# 3. Use gcc EXISTS_GCC := $(shell command -v gcc) EXISTS_CLANG := $(shell command -v clang)