Improved installation instructions for Ubuntu

Added information on how to install from the repositories. Improved the instructions for how to build from source, for those that don't want an ancient version of Kakoune. On Ubuntu 20.04 and earlier, GCC 10 is not the default so we have to explicitly tell `make` to use GCC 10.

See also: https://github.com/mawww/kakoune/issues/4571
This commit is contained in:
Hugo Musso Gualandi 2022-03-20 16:15:16 +01:00
parent 13b1681593
commit 73f0de4085

View File

@ -205,12 +205,17 @@ sudo zypper install kakoune
[TIP] [TIP]
.Ubuntu .Ubuntu
==== ====
Building on Ubuntu 16.04 and 18.04. Kakoune can be found in the Ubuntu repositories.
Make sure you have .local/bin in your path to make the kak binary available from your shell.
----------------------------
sudo apt install kakoune
----------------------------
If you want to compile from source on 20.04 or earlier, you must force the build to use GCC 10, which is not the default. Also, make sure you have .local/bin in your path so that kak is available after the installation.
---------------------------------------------------------------- ----------------------------------------------------------------
git clone https://github.com/mawww/kakoune.git && cd kakoune/src git clone https://github.com/mawww/kakoune.git && cd kakoune/src
make CXX=g++-10 make
PREFIX=$HOME/.local make install PREFIX=$HOME/.local make install
---------------------------------------------------------------- ----------------------------------------------------------------
==== ====