changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 317: bb368d31e65c
parent: 989b1b4782dc
child: 7dac506a4431
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 07 Jul 2024 20:34:21 -0400
permissions: -rwxr-xr-x
description: allow emacs-mini to be built on alpine
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 --prefix=/usr/local
7 NATIVE_FULL_AOT=1 make -j$CPUS