Skip to content
Snippets Groups Projects
Commit dabcb3e9 authored by Oriol Tintó's avatar Oriol Tintó
Browse files

Update spack_utils.sh

parent bac8c465
No related branches found
No related tags found
1 merge request!4Switching to the advanced configuration method and fixing spack build.
...@@ -4,7 +4,7 @@ function _install_spack() { ...@@ -4,7 +4,7 @@ function _install_spack() {
git clone --depth 1 ${SPACK_URL} -b ${SPACK_BRANCH} ${SPACK_ROOT} git clone --depth 1 ${SPACK_URL} -b ${SPACK_BRANCH} ${SPACK_ROOT}
fi fi
_init_spack _init_spack ${SPACK_INIT_CMD} ${SPACK_ROOT}
if [[ $(spack compiler info ${SPACK_COMPILER}) ]]; then if [[ $(spack compiler info ${SPACK_COMPILER}) ]]; then
echo "Found Compiler $(spack compiler info ${SPACK_COMPILER})" echo "Found Compiler $(spack compiler info ${SPACK_COMPILER})"
...@@ -16,8 +16,8 @@ function _install_spack() { ...@@ -16,8 +16,8 @@ function _install_spack() {
} }
function _init_spack() { function _init_spack() {
#SPACK_INIT_CMD=$1 SPACK_INIT_CMD=$1
#SPACK_ROOT=$2 SPACK_ROOT=$2
if [ -z "$SPACK_INIT_CMD" ] && [ ! -z "${SPACK_ROOT}" ]; then if [ -z "$SPACK_INIT_CMD" ] && [ ! -z "${SPACK_ROOT}" ]; then
echo "Empty SPACK_INIT_CMD -> trying to source config file of spack root: $SPACK_ROOT/share/spack/setup-env.sh" echo "Empty SPACK_INIT_CMD -> trying to source config file of spack root: $SPACK_ROOT/share/spack/setup-env.sh"
. $SPACK_ROOT/share/spack/setup-env.sh . $SPACK_ROOT/share/spack/setup-env.sh
...@@ -29,12 +29,12 @@ function _init_spack() { ...@@ -29,12 +29,12 @@ function _init_spack() {
function load_spack() { function load_spack() {
export SPACK_INIT_CMD=$1 export SPACK_INIT_CMD=$1
export SPACK_ROOT=${2:-spack} export SPACK_ROOT=$2 # i.e.: spack
export SPACK_URL=${3:-https://github.com/spack/spack.git} export SPACK_URL=$3 # i.e.: https://github.com/spack/spack.git
export SPACK_BRANCH=${4:-develop} export SPACK_BRANCH=$4 # i.e.: develop
export SPACK_COMPILER=${5:-gcc@12.2.0} export SPACK_COMPILER=$5 # i.e.: gcc@12.2.0
export SPACK_DISABLE_LOCAL_CONFIG=${6:-true} export SPACK_DISABLE_LOCAL_CONFIG=$6 # i.e.: true
export SPACK_USER_CACHE_PATH=${7:-${SPACK_ROOT}/spack_user_cache_path} export SPACK_USER_CACHE_PATH=$7 # i.e.: ${SPACK_ROOT}/spack_user_cache_path
echo "SPACK_INIT_CMD = $SPACK_INIT_CMD" echo "SPACK_INIT_CMD = $SPACK_INIT_CMD"
echo "SPACK_ROOT = $SPACK_ROOT" echo "SPACK_ROOT = $SPACK_ROOT"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment