changelog shortlog graph tags branches changeset files revisions annotate raw help

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

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