Commit 3bf467e
authored
alpine: add a missing dependency library (#19)
This modification fix the following error.
```console
$ docker run alpine-groonga-test-01
Error loading shared library libgomp.so.1: No such file or directory (needed by /usr/lib/libgroonga.so.0) Error relocating /usr/lib/libgroonga.so.0: GOMP_parallel: symbol not found Error relocating11 /usr/lib/libgroonga.so.0: GOMP_single_start: symbol not found Error relocating /usr/lib/libgroonga.so.0: omp_get_num_threads: symbol not found Error relocating /usr/lib/libgroonga.so.0: GOMP_barrier: symbol not found Error relocating /usr/lib/libgroonga.so.0: omp_get_thread_num: symbol not found
```
llama.cpp uses OpenMP.
However, we had not installed libgomp in alpine docker image. So, we
install libgomp in alpine docker image in this docker image in this
modification.1 parent d09c0af commit 3bf467e
1 file changed
+1
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
| 68 | + | |
68 | 69 | | |
69 | 70 | | |
70 | 71 | | |
| |||
0 commit comments