mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-13 14:29:52 +00:00
make : fix Apple clang determination bug (#4272)
Co-authored-by: Will Findley <findley@gmail.com>
This commit is contained in:
parent
15f5d96037
commit
d2809a3ba2
2
Makefile
2
Makefile
@ -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) }')
|
CC_VER := $(shell $(CC) -dumpfullversion -dumpversion | awk -F. '{ printf("%02d%02d%02d", $$1, $$2, $$3) }')
|
||||||
else
|
else
|
||||||
CC_IS_CLANG=1
|
CC_IS_CLANG=1
|
||||||
ifeq '' '$(findstring Apple LLVM,$(shell $(CC) --version))'
|
ifeq '' '$(findstring Apple,$(shell $(CC) --version))'
|
||||||
CC_IS_LLVM_CLANG=1
|
CC_IS_LLVM_CLANG=1
|
||||||
else
|
else
|
||||||
CC_IS_APPLE_CLANG=1
|
CC_IS_APPLE_CLANG=1
|
||||||
|
Loading…
Reference in New Issue
Block a user