diff --git a/src/tools/GNUmakefile b/src/tools/GNUmakefile index 5a72d78b2f..05a7251b40 100644 --- a/src/tools/GNUmakefile +++ b/src/tools/GNUmakefile @@ -618,7 +618,7 @@ ifdef USE_GAGITHUB GET_TOOLS=./get-tools-github ifdef USE_GA_RELEASE ifndef GA_RELEASE_NO - GA_RELEASE_NO=5.8.2 + GA_RELEASE_NO=5.9 endif GA_DIR=ga-$(GA_RELEASE_NO) else diff --git a/src/tools/gasparse_patch.sh b/src/tools/gasparse_patch.sh new file mode 100755 index 0000000000..f6ca72d661 --- /dev/null +++ b/src/tools/gasparse_patch.sh @@ -0,0 +1,17 @@ +#!/usr/bin/env bash +rm -f gasparse.patch +cat > gasparse.patch < /dev/null |grep MINGW64|cut -c21 ` -if [[ -d "ga-5.8.2" ]]; then - if [[ ! -f "ga-5.8.2/patched581" ]]; then - ./gamalloc_patch.sh $GA_DIR - ./peigstubs_patch.sh $GA_DIR - ./mpipr-too-many_patch.sh $GA_DIR - ./ga_ma_align_patch.sh $GA_DIR - ./scalapacki4_patch.sh $GA_DIR - ./ga_diag_seg_i4_patch.sh $GA_DIR - if [ $(uname -s) != "Darwin" ]; then - ./autoconf_patch.sh $GA_DIR - fi +if [[ -d "ga-5.9" ]]; then + if [[ ! -f "ga-5.9/patched59" ]]; then + ./gasparse_patch.sh $GA_DIR echo patched - touch ga-5.8.2/patched581 + touch ga-59/patched59 fi fi #if [ ! -z "$GOTMINGW64" ] diff --git a/travis/build_env.sh b/travis/build_env.sh index 106c65728c..2379590df8 100755 --- a/travis/build_env.sh +++ b/travis/build_env.sh @@ -267,7 +267,7 @@ if [[ "$os" == "Linux" ]]; then fi if [[ "$FC" == "amdflang" ]]; then $MYSUDO apt-get install -y wget gnupg2 coreutils dialog tzdata - rocm_version=5.6.1 + rocm_version=6.2.4 tries=0 ; until [ "$tries" -ge 10 ] ; do \ wget -q -O - https://repo.radeon.com/rocm/rocm.gpg.key | $MYSUDO apt-key add - \ && break ; \