change default configure tooldir ~/tools

This commit is contained in:
Blaise Tine 2024-07-23 13:10:44 -07:00
parent eb92e0bdbe
commit 7808a0a3e3
2 changed files with 2 additions and 3 deletions

View file

@ -56,7 +56,6 @@ More detailed build instructions can be found [here](docs/install_vortex.md).
$ git clone --depth=1 --recursive https://github.com/vortexgpgpu/vortex.git
$ cd Vortex
### Configure your build folder
# By default, the toolchain default install location is the /opt folder and can be overridden by setting --tooldir.
$ mkdir build
$ cd build
$ ../configure --xlen=32 --tooldir=$HOME/tools

4
configure vendored
View file

@ -111,7 +111,7 @@ copy_files() {
# default configuration parameters
default_xlen=32
default_tooldir=/opt
default_tooldir=$HOME/tools
default_osversion=$(detect_osversion)
default_prefix=$CURRENT_DIR
@ -140,7 +140,7 @@ PREFIX=${PREFIX:=$default_prefix}
usage() {
echo "Usage: $0 [--xlen=<value>] [--tooldir=<path>] [--osversion=<version>]"
echo " --xlen=<value> Set the XLEN value (default: 32)"
echo " --tooldir=<path> Set the TOOLDIR path (default: /opt)"
echo " --tooldir=<path> Set the TOOLDIR path (default: $HOME/tools)"
echo " --osversion=<version> Set the OS Version (default: $(detect_osversion))"
echo " --prefix=<path> Set installation directory"
exit 1