I am able to build the package with manual modifications. Steps posted below:
- Fetch resources and extract the files:
makepkg -o
- Manually build the package:
cd src
source /opt/intel/oneapi/setvars.sh
local _cmake_options=(
-B build
-S llama.cpp
#-DCMAKE_BUILD_TYPE=None
-DCMAKE_INSTALL_PREFIX='/usr'
-DGGML_ALL_WARNINGS=OFF
-DGGML_ALL_WARNINGS_3RD_PARTY=OFF
#-DBUILD_SHARED_LIBS=OFF
#-DGGML_STATIC=ON
#-DGGML_LTO=ON
-DGGML_RPC=ON
-DLLAMA_CURL=ON
-DGGML_BLAS=ON
-DCMAKE_C_COMPILER=icx
-DCMAKE_CXX_COMPILER=icpx
-DGGML_SYCL=ON
-DGGML_SYCL_F16=ON # Comment this out for building F32 version
-Wno-dev
)
cmake "${_cmake_options[@]}"
cmake --build build --config Release -j -v
- Patch the PKGBUILD, as there are no lib*.a in a non-static build.
diff --git a/PKGBUILD b/PKGBUILD
index 7999ec8..51cc1bc 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -73,7 +73,7 @@ build() {
package() {
DESTDIR="${pkgdir}" cmake --install build
rm "${pkgdir}/usr/include/"ggml*
- rm "${pkgdir}/usr/lib/"lib*.a
+ #rm "${pkgdir}/usr/lib/"lib*.a
install -Dm644 "${_pkgname}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
- Package the build and install:
makepkg -Ri
Notes:
BUILD_SHARED_LIBS
andGGML_STATIC
were commented out because of the inference issue. The built package will havelibggml.so
shared libraries which may have conflicts with other packages.- Switching GGML LTO off will fix build error
libggml-sycl.a: error adding symbols: archive has no index; run ranlib to add one
. I think it is some limitations of icx/icpx. - I've noticed some differences between
build/compile_commands.json
in manual build and pacman build, with the same build flags. Probably related to theSYCL_EXTERNAL
issue.
An example of differences in compile_commands.json
--- /tmp/pacman.json 2025-03-16 10:41:15.426354158 +0800
+++ /tmp/manual.json 2025-03-16 10:41:06.154835418 +0800
@@ -1,31 +1,47 @@
{
"directory": "/home/heyrict/.cache/paru/clone/llama.cpp-sycl-f32/src/build/ggml/src",
"command": "/opt/intel/oneapi/compiler/2025.0/bin/icx
-DGGML_BUILD
-DGGML_SCHED_MAX_COPIES=4
-DGGML_SHARED
-D_GNU_SOURCE
-D_XOPEN_SOURCE=600
-Dggml_base_EXPORTS
-I/home/heyrict/.cache/paru/clone/llama.cpp-sycl-f32/src/llama.cpp/ggml/src/.
-I/home/heyrict/.cache/paru/clone/llama.cpp-sycl-f32/src/llama.cpp/ggml/src/../include
+ -march=x86-64
+ -mtune=generic
+ -O2
+ -pipe
+ -fno-plt
+ -fexceptions
+ -Wp,-D_FORTIFY_SOURCE=3
+ -Wformat
+ -Werror=format-security
+ -fstack-clash-protection
+ -fcf-protection
+ -fno-omit-frame-pointer
+ -mno-omit-leaf-frame-pointer
+ -g
+ -ffile-prefix-map=/home/heyrict/.cache/paru/clone/llama.cpp-sycl-f32/src=/usr/src/debug/llama.cpp-sycl-f32
+ -flto=auto
-O3
-DNDEBUG
-std=gnu11
-fPIC
-Wshadow
-Wstrict-prototypes
-Wpointer-arith
-Wmissing-prototypes
-Werror=implicit-int
-Werror=implicit-function-declaration
-Wall
-Wextra
-Wpedantic
-Wcast-qual
-Wno-unused-function
-o CMakeFiles/ggml-base.dir/ggml.c.o
-c /home/heyrict/.cache/paru/clone/llama.cpp-sycl-f32/src/llama.cpp/ggml/src/ggml.c",
"file": "/home/heyrict/.cache/paru/clone/llama.cpp-sycl-f32/src/llama.cpp/ggml/src/ggml.c",
"output": "ggml/src/CMakeFiles/ggml-base.dir/ggml.c.o"
},
Pinned Comments
txtsd commented on 2024-10-26 20:15 (UTC) (edited on 2024-12-06 14:15 (UTC) by txtsd)
Alternate versions
llama.cpp
llama.cpp-vulkan
llama.cpp-sycl-fp16
llama.cpp-sycl-fp32
llama.cpp-cuda
llama.cpp-cuda-f16
llama.cpp-hip