diff options
author | WillCorticesAI <150854901+WillCorticesAI@users.noreply.github.com> | 2023-11-30 17:23:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-01 00:23:44 +0200 |
commit | d2809a3ba2780e00fce5a6149a7eda09f1c0e906 (patch) | |
tree | 90a51ca71181abd4545168900d36745c37067835 | |
parent | 15f5d96037e597523b721aa39c874d69de2acf85 (diff) |
make : fix Apple clang determination bug (#4272)
Co-authored-by: Will Findley <findley@gmail.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ ifeq '' '$(findstring clang,$(shell $(CC) --version))' CC_VER := $(shell $(CC) -dumpfullversion -dumpversion | awk -F. '{ printf("%02d%02d%02d", $$1, $$2, $$3) }') else CC_IS_CLANG=1 - ifeq '' '$(findstring Apple LLVM,$(shell $(CC) --version))' + ifeq '' '$(findstring Apple,$(shell $(CC) --version))' CC_IS_LLVM_CLANG=1 else CC_IS_APPLE_CLANG=1 |