Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
perpen edited this pageSep 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 withclang

Bash shell

cd srcexport CXX=clang++; make

Fish shell

cd srcenv CXX=clang++ make

Building on GuixSD

cd kakoune/srcguix environment --ad-hoc gcc@6.3.0 make@4.2.1 boost@1.61.0 ncurses@6.0 libstdc++@4.9.4 binutils@2.27makeenv LD_LIBRARY_PATH=$LIBRARY_PATH ./kak

Building using a gcc container

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/kakounedocker 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$dirsudo tar xfz /tmp/kak.tgz -C/
Clone this wiki locally

[8]ページ先頭

©2009-2025 Movatter.jp