changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra / scripts/build-emacs-mini.sh

changeset 319: 0b1ece913879
parent: 7dac506a4431
child: 9422a14d72fd
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 07 Jul 2024 20:53:05 -0400
permissions: -rwxr-xr-x
description: slight tweaks to emacs build script
1 #!/bin/sh
2 CPUS=$(getconf _NPROCESSORS_ONLN)
3 TARGETDIR="${1:-.stash/src/emacs}"
4 cd $TARGETDIR && \
5 ./configure --without-all --with-x-toolkit=no --without-x --enable-link-time-optimization \
6  --with-json=ifavailable --with-gif=ifavailable --with-modules --with-gnutls=ifavailable \
7  --prefix=/usr/local && \
8 NATIVE_FULL_AOT=1 make -j$CPUS