diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 18 |
1 files changed, 15 insertions, 3 deletions
@@ -45,11 +45,15 @@ will walk you through how to build from source on both macOS and Ubuntu. cd alacritty ``` -3. Make sure you have the right Rust compiler installed. Alacritty is currently - pinned to a certain Rust nightly, and the compiler/nightly dependencies are - updated as needed. To install the correct compiler, run: +3. Make sure you have the right Rust compiler installed. Alacritty requires nightly Rust. Run ```sh + rustup override set nightly + ``` + + If you run into problems, you can try a known-good version of the compiler by running + + ```sh rustup override set $(cat rustc-version) ``` @@ -94,6 +98,14 @@ still found to be missing, please open an issue. zypper install freetype-devel fontconfig-devel xclip ``` +##### Void Linux + +On [Void Linux](https://voidlinux.eu), install following packages before compiling Alacritty: + +```sh +xbps-install cmake freetype-devel freetype expat-devel fontconfig xclip +``` + ##### Other If you build Alacritty on another Linux distribution, we would love some help |