changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra / scripts/build-emacs.sh

changeset 371: 7dcabf3e0edc
parent: 64e35d4f68fd
author: Richard Westhaver <ellis@rwest.io>
date: Tue, 24 Sep 2024 15:53:24 -0400
permissions: -rwxr-xr-x
description: no link in bootstrap.sh
1 #!/usr/bin/env bash
2 CPUS=$(getconf _NPROCESSORS_ONLN)
3 TARGETDIR="${1:-.stash/src/emacs}"
4 CONFIG=(--with-mailutils
5  --with-imagemagick
6  --with-x-toolkit=gtk
7  --without-pop
8  --with-tree-sitter
9  --without-sound
10  --with-json
11  --enable-link-time-optimization
12  --with-modules)
13 cd $TARGETDIR
14 ./configure ${CONFIG[@]}
15 NATIVE_FULL_AOT=1 make -j$CPUS