Is xxhash necessary? backport kitty for Ubuntu 20.04 LTS #6582
Closed
iyongliang
started this conversation in
Show and tell
Replies: 2 comments 4 replies
-
Yes, it's necessary and you dont need to install anything other than Go to build kitty. Read build.rst |
Beta Was this translation helpful? Give feedback.
1 reply
-
read build.rst from the beginning. You dont need any system libraries
other than compilers. All dependencies are automatically downloaded for
you.
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm working on Ubuntu 20.04, and I'm interested in the GPU accelerated terminal emulator, but when I want install from release, and found the glibc version was too high for me.
Tried build from source, and found rm -rf linux-package
python3 setup.py linux-package
Package wayland-scanner was not found in the pkg-config search path.
Perhaps you should add the directory containing `wayland-scanner.pc'
to the PKG_CONFIG_PATH environment variable
No package 'wayland-scanner' found
The package wayland-scanner was not found on your system
Disabling building of wayland backend
[17/66] Compiling kittens/transfer/algorithm.c ... done
Compiling kittens/transfer/algorithm.c ...
gcc -MMD -DNDEBUG -DHAS_COPY_FILE_RANGE -Wextra -Wfloat-conversion -Wno-missing-field-initializers -Wall -Wstrict-prototypes -std=c11 -pedantic-errors -Werror -O3 -fwrapv -fstack-protector-strong -pipe -fvisibility=hidden -D_FORTIFY_SOURCE=2 -fPIC -flto -pthread -Ikitty -I/usr/include/python3.8 -I-I/build/xxhash-TCxsRP/xxhash-0.7.3/debian/tmp/usr/include -c kittens/transfer/algorithm.c -o build/rsync-algorithm.c.o
kittens/transfer/algorithm.c: In function ‘xxh64_delete’:
kittens/transfer/algorithm.c:41:37: error: implicit declaration of function ‘XXH3_freeState’; did you mean ‘XXH32_freeState’? [-Wimplicit-function-declaration]
41 | static void xxh64_delete(void* s) { XXH3_freeState(s); }
| ^~~~~~~~~~~~~~
| XXH32_freeState
kittens/transfer/algorithm.c: In function ‘xxh64_reset’:
kittens/transfer/algorithm.c:42:43: error: implicit declaration of function ‘XXH3_64bits_reset’; did you mean ‘XXH64_reset’? [-Wimplicit-function-declaration]
42 | static bool xxh64_reset(void* s) { return XXH3_64bits_reset(s) == XXH_OK; }
| ^~~~~~~~~~~~~~~~~
| XXH64_reset
Beta Was this translation helpful? Give feedback.
All reactions