Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aclonegeek/.emacs.d

Mirror of https://git.sr.ht/~randy/.emacs.d
https://github.com/aclonegeek/.emacs.d

emacs

Last synced: 29 days ago
JSON representation

Mirror of https://git.sr.ht/~randy/.emacs.d

Awesome Lists containing this project

README

        

# .emacs.d

Emacs master built from source.

## Installation
``` shell
./autogen.sh

./configure
--enable-link-time-optimization
--without-all
--with-cairo
--with-gnutls
--with-harfbuzz
--with-modules
--with-native-compilation=aot
--with-pgtk
--with-small-ja-dic
--with-tree-sitter
--with-threads
--with-toolkit-scroll-bars
--with-xml2
--with-zlib
CFLAGS="-O2 -pipe -mtune=native -march=native -fomit-frame-pointer"

make -j
sudo make install
```

If debugging:
```
CFLAGS="-Og -ggdb3 -pipe -mtune=native -march=native"
```