minor update

This commit is contained in:
Blaise Tine 2024-04-06 09:11:25 -07:00
parent b02746fb0d
commit ca1bbdf415
3 changed files with 4 additions and 2 deletions

View file

@ -25,7 +25,8 @@ before_install:
- if [ ! -d "$TOOLDIR" ] || [ -z "$(ls -A $TOOLDIR)" ] || [ "$(cat "$TOOLDIR/version.txt")" != "v2" ]; then
rm -rf $TOOLDIR;
mkdir -p $TOOLDIR;
OSDIR=ubuntu/focal ./ci/toolchain_install.sh --all;
mkdir -p build && cd build && TOOLDIR=$TOOLDIR OSDIR=ubuntu/focal ../configure;
./ci/toolchain_install.sh --all;
echo "v2" > "$TOOLDIR/version.txt";
fi
- if [ ! -d "$HOME/third_party" ] || [ -z "$(ls -A $HOME/third_party)" ] || [ "$(cat "$HOME/third_party/version.txt")" != "v2" ]; then

View file

@ -18,7 +18,7 @@ set -e
REPOSITORY=https://github.com/vortexgpgpu/vortex-toolchain-prebuilt/raw/master
TOOLDIR=${TOOLDIR:=@TOOLDIR@}
OSDIR=${OSDIR:=ubuntu/bionic}
OSDIR=${OSDIR:=@OSDIR@}
OS="${OS:=ubuntu/bionic}"

1
configure vendored
View file

@ -16,6 +16,7 @@
# options
XLEN=${XLEN:=32}
TOOLDIR=${TOOLDIR:=/opt}
OSDIR=${OSDIR:=ubuntu/bionic}
# project subdirectories to build
SUBDIRS=("." "!ci" "!perf" "hw*" "kernel*" "runtime*" "sim*" "tests*")