Last active
September 24, 2019 15:53
-
-
Save takaxp/09494822ffba37ab9fc673d53c41dfe9 to your computer and use it in GitHub Desktop.
Build script for NS build for macOS Mojave (26.1.50) (see also https://qiita.com/takaxp/items/e07bb286d80fa9dd8e05)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| cd ~/Desktop | |
| git clone git://git.sv.gnu.org/emacs.git | |
| cd emacs | |
| git checkout -b emacs-26 | |
| git reset --hard 9ad0f1d15c | |
| # 2018-10-05, 79bda3bc47 | |
| sleep 5 | |
| ./autogen.sh | |
| ./configure CC=clang --without-x --with-ns --with-modules | |
| make bootstrap -j1 | |
| make install -j1 | |
| cd ./nextstep | |
| open . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment