From: DaniAndTheWeb Date: Sat, 17 Jun 2023 16:17:22 +0000 (+0200) Subject: make : update for latest Arch (#1701) X-Git-Tag: gguf-v0.4.0~608 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=86c7571864ff331f8cdb9e092f3abeb123729a56;p=pkg%2Fggml%2Fsources%2Fllama.cpp make : update for latest Arch (#1701) With the upcoming change to the openblas package in arch the Makefile workaround is no longer needed. --- diff --git a/Makefile b/Makefile index eee9eeb5..72d6ad40 100644 --- a/Makefile +++ b/Makefile @@ -144,11 +144,7 @@ endif # LLAMA_NO_ACCELERATE ifdef LLAMA_OPENBLAS CFLAGS += -DGGML_USE_OPENBLAS -I/usr/local/include/openblas -I/usr/include/openblas - ifneq ($(shell grep -e "Arch Linux" -e "ID_LIKE=arch" /etc/os-release 2>/dev/null),) - LDFLAGS += -lopenblas -lcblas - else - LDFLAGS += -lopenblas - endif + LDFLAGS += -lopenblas endif # LLAMA_OPENBLAS ifdef LLAMA_BLIS