1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-03-30 19:05:06 +00:00

Fixed comment in linux-compiler.mk

This commit is contained in:
Frank Halasz
2026-03-18 01:03:32 -07:00
parent 1195048b1b
commit 6c20a5c635

View File

@@ -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)