10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-22 13:12:23 +02:00
QuantumPackage/scripts/verif_omp/update_comp.sh

40 lines
853 B
Bash
Executable File

#!/bin/bash
# Compiler
COMP=$1
# Path to file.cfg
config_PATH="../../config/"
END="*.cfg"
CONFIG="/config/"
#LIST=${config_PATH}${COMP}${END} # without ${QP_ROOT}
LIST=${QP_ROOT}${CONFIG}${COMP}${END}
if [ -z "$1" ]
then
echo "Give the compiler in argument"
else
# List of the config files for the compiler
#list_files=$(ls ../../config/$comp*.cfg) #does not give the right list
list_files=${LIST}
echo "Files that will be modified:"
echo $list_files
# Add the flags
for file in $list_files
do
echo $file
ACTUAL=$(grep "IRPF90_FLAGS : --openmp" $file)
FLAGS=$(./check_required_setup.sh $COMP)
SPACE=" "
BASE="IRPF90_FLAGS : --openmp"
NEW=${BASE}${SPACE}${FLAGS}
sed "s/${ACTUAL}/${NEW}/" $file
# -i # to change the files
done
fi