memory-leaks

Still reachable: lots of words in many pages.
git clone https://git.kevinlegouguec.net/memory-leaks
Log | Files | Refs | README | LICENSE

commit cdc880fc9d1282beb27246d38eba06bb2e6d8637
parent 29ec3e321670daf32d2e0ded6cd3c15ab11ccd7b
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Mon, 22 Apr 2019 12:17:36 +0200

Note down how to compile Emacs

Diffstat:
MREADME.md | 2+-
Apersonal/setup/emacs.md | 23+++++++++++++++++++++++
2 files changed, 24 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -1,5 +1,5 @@ # Peniblec's Memory Leaks -## still reachable: 7342 words in 15 pages +## still reachable: 7394 words in 16 pages Hi! I am a software engineer interested in [a bunch of things]. diff --git a/personal/setup/emacs.md b/personal/setup/emacs.md @@ -0,0 +1,23 @@ +# Compiling + +This script seems to handle both a freshly cloned copy of the +repository, and a repository where compilation has already happened: + +``` bash +#!/bin/bash + +set -eux + +MAKE="make -j$(nproc --all)" + +if ! test -f Makefile +then + ${MAKE} configure + ./configure --with-xwidgets +fi + +if ! ${MAKE} CONFIGURE_FLAGS=--with-xwidgets +then + ${MAKE} CONFIGURE_FLAGS=--with-xwidgets bootstrap +fi +```