-
Notifications
You must be signed in to change notification settings - Fork 714
Building
perpen edited this page Sep 25, 2019
·
3 revisions
This page lists various tips to build kakoune with specific options or on esoteric platforms. For more common info about building, refer to the dedicated section in the README.
Building with clang
Bash shell
cd src
export CXX=clang++; make
Fish shell
cd src
env CXX=clang++ make
cd kakoune/src
guix environment --ad-hoc [email protected] [email protected] [email protected] [email protected] [email protected] [email protected]
make
env LD_LIBRARY_PATH=$LIBRARY_PATH ./kak
On my debian stretch VM I am unable to install gcc v7. This uses an official docker image for gcc to build the binary then install it on the host.
dir=/usr/local/lib/kakoune
docker run --rm -v /tmp:/out gcc:7.3 bash -c \
"set -x \
&& git clone https://github.com/mawww/kakoune.git \
&& cd kakoune/src \
&& make \
&& make PREFIX=$dir install \
&& ln -s $dir/bin/kak /usr/local/bin/ \
&& tar cfz /out/kak.tgz $dir /usr/local/bin/kak"
sudo rm -rf $dir
sudo tar xfz /tmp/kak.tgz -C/
- Normal mode commands
- Avoid the escape key
- Implementing user mode (Leader key)
- Kakoune explain
- Kakoune TV