changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra / scripts/get-sbcl.sh

changeset 14: b1363d688ae1
parent: cb700df303f7
child: aac1cf6cf2bb
author: ellis <ellis@rwest.io>
date: Mon, 27 Nov 2023 18:26:13 -0500
permissions: -rwxr-xr-x
description: git-vendor-pull.sh
1 #!/usr/bin/bash
2 VER="${1:-main}"
3 TARGETDIR=${2:-$(realpath build/sbcl-$VER)}
4 DISTDIR=${3:-$(realpath dist/sbcl)}
5 git clone https://vc.compiler.company/packy/shed/vendor/sbcl.git $TARGETDIR
6 pushd $TARGETDIR
7 sh make.sh --prefix=$DISTDIR --fancy
8 cd doc/manual && make && cd ../..
9 # doesn't actually install on local system - copies to DISTDIR
10 # sh install.sh
11 popd