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
Richard Ulmer edited this pageSep 29, 2019 ·3 revisions

Building

Use GNU'smake and theclang compiler to build:

cd kakoune/srcCXX=clang++ gmake

Installing

After building Kakoune you can install it as root:

cd kakoune/srcCXX=clang++ doas gmake install

Depenpencies

setsid

For Kakoune's:new command you will need asetsid executable. Unfortunately there is no port available for this tool, but you can paste this script into$HOME/bin/setsid as a substitute:

#!/usr/bin/env perluse POSIX;setsid;exec @ARGV;

Make this script executable usingchmod +x "$HOME/bin/setsid" and make sure$HOME/bin is included in your$PATH.

Debugging

# Build with debugging symbols:CXX=clang++ gmake debug=yesCXX=clang++ doas gmake install# Start Kakoune as usual and prepare the problem you'll debug.# Make sure you have the `gdb` package installed. It provides `egdb`.# Then find the PID of the Kakoune process and start gdb with it:doas egdb /usr/local/bin/kak 2514
Clone this wiki locally

[8]ページ先頭

©2009-2025 Movatter.jp