mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-22 21:32:31 +00:00
Add scouts honor escape hatch for source embedding
This commit is contained in:
parent
c91b3c5006
commit
b4269930f7
547 changed files with 1516 additions and 944 deletions
15
tool/scripts/install-emacs.sh
Executable file
15
tool/scripts/install-emacs.sh
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
# installs emacs version w/ working (replace-buffer-contents)
|
||||
# it's sooooo worth it due to clang-format-10 working so well
|
||||
set -ex
|
||||
sudo apt build-dep emacs
|
||||
cd "$HOME"
|
||||
export CFLAGS="-O2"
|
||||
rm -rf emacs-26.3
|
||||
wget http://mirrors.kernel.org/gnu/emacs/emacs-26.3.tar.gz
|
||||
tar xf emacs-26.3.tar.gz
|
||||
cd emacs-26.3
|
||||
./configure
|
||||
make -j8
|
||||
sudo make install
|
||||
rm -f ../emacs-26.3.tar.gz
|
Loading…
Add table
Add a link
Reference in a new issue