minor update

This commit is contained in:
Blaise Tine 2024-04-17 04:13:05 -07:00
parent e3d06e0d9c
commit 0c746d93bb
2 changed files with 7 additions and 1 deletions

View file

@ -10,6 +10,8 @@ addons:
- valgrind
- libstdc++6
- binutils
- python
- uuid-dev
env:
global:
@ -31,8 +33,9 @@ install:
echo "v0" > "$TOOLDIR/version.txt";
fi
- if [ ! -d "$HOME/third_party" ] || [ -z "$(ls -A $HOME/third_party)" ] || [ "$(cat "$HOME/third_party/version.txt")" != "v0" ]; then
rm -rf $HOME/third_party;
cd $TRAVIS_BUILD_DIR;
make -C third_party > /dev/null;
make -C third_party > /dev/null;
cp -r third_party $HOME;
echo "v0" > "$HOME/third_party/version.txt";
else

View file

@ -49,6 +49,9 @@ More detailed build instructions can be found [here](docs/install_vortex.md).
- [Sv2v](https://github.com/zachjs/sv2v)
### Install development tools
$ sudo apt-get install build-essential
$ sudo apt-get install binutils
$ sudo apt-get install python
$ sudo apt-get install uuid-dev
$ sudo apt-get install git
### Install Vortex codebase
$ git clone --depth=1 --recursive https://github.com/vortexgpgpu/vortex.git