Skip to content

Instantly share code, notes, and snippets.

View zhangsikai123's full-sized avatar
💭
I'm busy growing up!

Mandroidification zhangsikai123

💭
I'm busy growing up!
View GitHub Profile
@strobe
strobe / compile-emacs.sh
Last active December 2, 2024 06:15 — forked from ba0f3/compile-emacs.sh
Compile emacs 25.2 on CentOS 7.x
yum install gcc make ncurses-devel giflib-devel libjpeg-devel libtiff-devel
wget wget http://ftp.gnu.org/gnu/emacs/emacs-25.2.tar.xz
tar xJf emacs-25.2.tar.xz
cd emacs-25.2
./configure --without-x --without-selinux
make && sudo make install