changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra / scripts/build-emacs.sh

changeset 318: 7dac506a4431
parent: 64e35d4f68fd
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 07 Jul 2024 20:54:01 -0400
permissions: -rwxr-xr-x
description: gnutls ifavailable
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