changelog shortlog graph tags branches files raw help

Mercurial > infra / changeset: slight tweaks to emacs build script

changeset 319: 0b1ece913879
parent 318: 7dac506a4431
child 320: 9422a14d72fd
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 07 Jul 2024 20:53:05 -0400
files: scripts/build-emacs-mini.sh
description: slight tweaks to emacs build script
     1.1--- a/scripts/build-emacs-mini.sh	Sun Jul 07 20:54:01 2024 -0400
     1.2+++ b/scripts/build-emacs-mini.sh	Sun Jul 07 20:53:05 2024 -0400
     1.3@@ -1,8 +1,8 @@
     1.4 #!/bin/sh
     1.5 CPUS=$(getconf _NPROCESSORS_ONLN)
     1.6 TARGETDIR="${1:-.stash/src/emacs}"
     1.7-cd $TARGETDIR
     1.8+cd $TARGETDIR && \
     1.9 ./configure --without-all --with-x-toolkit=no --without-x --enable-link-time-optimization \
    1.10             --with-json=ifavailable --with-gif=ifavailable --with-modules --with-gnutls=ifavailable \
    1.11-            --prefix=/usr/local
    1.12+            --prefix=/usr/local && \
    1.13 NATIVE_FULL_AOT=1 make -j$CPUS