From ec2a26959f2050eab33896f0c3875e1ff322a172 Mon Sep 17 00:00:00 2001 From: txtsd Date: Sat, 10 May 2025 11:58:23 +0530 Subject: [PATCH] fix: Switch build type to Release Signed-off-by: txtsd --- .SRCINFO | 2 +- PKGBUILD | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a9501d5ded80e..b2b3a35e9162c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = llama.cpp-hip pkgdesc = Port of Facebook's LLaMA model in C/C++ (with AMD ROCm optimizations) pkgver = b5332 - pkgrel = 1 + pkgrel = 2 url = https://github.com/ggerganov/llama.cpp arch = x86_64 arch = armv7h diff --git a/PKGBUILD b/PKGBUILD index 35cf72f0d8973..ef286bdaf7dbe 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ pkgname=llama.cpp-hip _pkgname="${pkgname%-hip}" pkgver=b5332 -pkgrel=1 +pkgrel=2 pkgdesc="Port of Facebook's LLaMA model in C/C++ (with AMD ROCm optimizations)" arch=(x86_64 armv7h aarch64) url='https://github.com/ggerganov/llama.cpp' @@ -58,7 +58,7 @@ build() { local _cmake_options=( -B build -S "${_pkgname}" - -DCMAKE_BUILD_TYPE=None + -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX='/usr' -DGGML_ALL_WARNINGS=OFF -DGGML_ALL_WARNINGS_3RD_PARTY=OFF