@@ -59,10 +59,11 @@ USAGE:
5959
6060$( basename $SCRIPT_NAME ) [options]
6161
62- Or a more RECOMMENDED way is to use it by pre-setting workflow scripts:
62+ A MORE RECOMMENDED way is to use it by pre-setting workflow scripts:
6363> gcc-openmpi-openblas environments: toolchain_gnu.sh
6464> intel-mkl-mpi environments: toolchain_intel.sh
6565> intel-mpich environments: toolchain_intel_mpich.sh
66+ > AMD environments: toolchain_amd.sh [in development]
6667
6768OPTIONS:
6869
@@ -148,9 +149,9 @@ The --with-PKG options follow the rules:
148149 --with-PKG The option keyword alone will be equivalent to
149150 --with-PKG=install
150151
151- --with-gcc The GCC compiler to use to compile ABACUS.
152+ --with-gcc Use the GNU compiler to use to build ABACUS.
152153 Default = system
153- --with-intel Use the Intel compiler to compile ABACUS.
154+ --with-intel Use the Intel compiler to build ABACUS.
154155 Default = system
155156 --with-intel-classic Use the classic Intel compiler (icc, icpc, ifort) to compile ABACUS.
156157 Default = no
@@ -603,7 +604,7 @@ export ENABLE_CRAY="${enable_cray}"
603604# ------------------------------------------------------------------------
604605# Compiler conflicts
605606if [ " ${with_intel} " != " __DONTUSE__" ] && [ " ${with_gcc} " = " __INSTALL__" ]; then
606- echo " You have chosen to use the Intel compiler, therefore the installation of the GCC compiler will be skipped."
607+ echo " You have chosen to use the Intel compiler, therefore the installation of the GNU compiler will be skipped."
607608 with_gcc=" __SYSTEM__"
608609fi
609610if [ " ${with_amd} " != " __DONTUSE__" ] && [ " ${with_gcc} " = " __INSTALL__" ]; then
@@ -627,7 +628,7 @@ if [ "${MPI_MODE}" = "no" ]; then
627628else
628629 # if gcc is installed, then mpi needs to be installed too
629630 if [ " ${with_gcc} " = " __INSTALL__" ]; then
630- echo " You have chosen to install the GCC compiler, therefore MPI libraries have to be installed too"
631+ echo " You have chosen to install the GNU compiler, therefore MPI libraries have to be installed too"
631632 case ${MPI_MODE} in
632633 mpich)
633634 with_mpich=" __INSTALL__"
0 commit comments