changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 321: 85c8d7027fb8
parent: 9422a14d72fd
child: 167a8ece2416
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 07 Jul 2024 21:18:50 -0400
permissions: -rwxr-xr-x
description: ugh
1 #!/bin/sh
2 CPUS=$(getconf _NPROCESSORS_ONLN)
3 TARGETDIR="${1:-.stash/src/emacs}"
4 cd $TARGETDIR && ./autogen.sh && \
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  --with-native-compilation --prefix=/usr/local && \
8 NATIVE_FULL_AOT=1 make -j$CPUS