Skip to content

Instantly share code, notes, and snippets.

@evanlouie
Forked from kissge/emacs26.sh
Created May 7, 2018 08:33
Show Gist options
  • Save evanlouie/61cfe8557e7837f85746a564b9a71b37 to your computer and use it in GitHub Desktop.
Save evanlouie/61cfe8557e7837f85746a564b9a71b37 to your computer and use it in GitHub Desktop.
Compile Emacs 26 on Ubuntu 16.04 on Windows Subsystem for Linux (WSL, aka Bash on Ubuntu on Windows)
mkdir emacs
cd emacs
git init
git remote add origin https://github.com/emacs-mirror/emacs.git
git fetch --depth 1 origin emacs-26
git reset --hard FETCH_HEAD
sudo apt install autoconf make gcc texinfo libgtk-3-dev libxpm-dev libjpeg-dev libgif-dev libtiff5-dev libgnutls-dev libncurses5-dev
./configure
make
sudo make install
@baywatch
Copy link

I had to make configure before ./configure on ubuntu 16.04 on WSL with the latest emacs source

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment