=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== cp2k-7.1/benchmarks/QS_single_node/do_benchmark-9-# used ranks, can be any value, by default the number of physical cores on the node cp2k-7.1/benchmarks/QS_single_node/do_benchmark:10:ranks=`lscpu | awk '/^Core\(s\) per socket:/ {cores=$NF}; /^Socket\(s\):/ {sockets=$NF}; END{print cores*sockets}'` cp2k-7.1/benchmarks/QS_single_node/do_benchmark-11-# adjust command for testing as needed ############################################## cp2k-7.1/benchmarks/QS_single_node/do_benchmark-19-# run benchmark iteration loop cp2k-7.1/benchmarks/QS_single_node/do_benchmark:20:for iter in `seq 1 $maxiter` cp2k-7.1/benchmarks/QS_single_node/do_benchmark-21-do ############################################## cp2k-7.1/benchmarks/QS_single_node/do_benchmark-34- printf "\n" cp2k-7.1/benchmarks/QS_single_node/do_benchmark:35: bestbench=`grep " CP2K " ${outfile} | awk '{print $NF}' | sort -nr | tail -n1` cp2k-7.1/benchmarks/QS_single_node/do_benchmark-36- best="$best $bestbench" ############################################## cp2k-7.1/INSTALL.md-92- * Avoid debugging information (`-g` flag) for compiling libint since this will increase library size by a large factor. cp2k-7.1/INSTALL.md:93: * In the arch file of CP2K: add `-D__LIBINT` to the `DFLAGS`. Add `-L$(LIBINT_DIR)/lib -lint2 -lstdc++` to `LIBS` and `-I$(LIBINT_DIR)/include` to `FCFLAGS`. `lstdc++` is needed if you use the GNU C++ compiler. cp2k-7.1/INSTALL.md-94- * Libint 1 is no longer supported and the previously needed flags `-D__LIBINT_MAX_AM` and `-D__LIBDERIV_MAX_AM1` are ignored. ############################################## cp2k-7.1/INSTALL.md-118- * The version 4.0.3 (or later) of libxc can be downloaded from http://www.tddft.org/programs/octopus/wiki/index.php/Libxc. cp2k-7.1/INSTALL.md:119: * During the installation, the directories `$(LIBXC_DIR)/lib` and `$(LIBXC_DIR)/include` are created. cp2k-7.1/INSTALL.md:120: * Add `-D__LIBXC` to DFLAGS, `-I$(LIBXC_DIR)/include` to FCFLAGS and `-L$(LIBXC_DIR)/lib -lxcf03 -lxc` to LIBS. cp2k-7.1/INSTALL.md-121- * :warning: Note that the deprecated flags `-D__LIBXC2` and `-D__LIBXC3` are ignored. ############################################## cp2k-7.1/INSTALL.md-129- * Add `-D__ELPA` to `DFLAGS` cp2k-7.1/INSTALL.md:130: * Add `-I$(ELPA_INCLUDE_DIR)/modules` to `FCFLAGS` cp2k-7.1/INSTALL.md:131: * Add `-I$(ELPA_INCLUDE_DIR)/elpa` to `FCFLAGS` cp2k-7.1/INSTALL.md:132: * Add `-L$(ELPA_DIR)` to `LDFLAGS` cp2k-7.1/INSTALL.md-133- * Add `-lelpa` to `LIBS` ############################################## cp2k-7.1/INSTALL.md-143-In the arch file of CP2K: cp2k-7.1/INSTALL.md:144: * Add `-lpexsi_${SUFFIX} -llapack -lblas -lsuperlu_dist_3.3 -lparmetis -lmetis`, and their paths (with `-L$(LIB_DIR)`) to LIBS. cp2k-7.1/INSTALL.md-145- * It is important that a copy of LAPACK and BLAS is placed before and after these libraries (replace `-llapack` and `-lblas` with the optimized versions as needed). cp2k-7.1/INSTALL.md-146- * In order to link in PT-Scotch instead of ParMETIS replace `-lparmetis -lmetis` with: `-lptscotchparmetis -lptscotch -lptscotcherr -lscotchmetis -lscotch -lscotcherr` cp2k-7.1/INSTALL.md:147: * Add `-I$(PEXSI_DIR)/fortran/` to FCFLAGS. cp2k-7.1/INSTALL.md-148- * Add `-D__LIBPEXSI` to DFLAGS. ############################################## cp2k-7.1/Makefile-218- @$(TOOLSRC)/regtesting/do_regtest -nobuild $(ARCH) -version $(ONEVERSION) -cp2kdir ../../../ $(TESTOPTS) >& $(TSTDIR)/regtest.log cp2k-7.1/Makefile:219: @cat `grep 'regtesting location error_summary file:' $(TSTDIR)/regtest.log | awk '{print $$NF}'` cp2k-7.1/Makefile:220: @cat `grep 'regtesting location summary file:' $(TSTDIR)/regtest.log | awk '{print $$NF}'` cp2k-7.1/Makefile-221- @grep "Number of FAILED tests 0" $(TSTDIR)/regtest.log >& /dev/null ############################################## cp2k-7.1/tools/autotune_grid/generate_makefile.sh-80-# For each value of l and iopt cp2k-7.1/tools/autotune_grid/generate_makefile.sh:81:for l in `seq 0 $lmax`; do cp2k-7.1/tools/autotune_grid/generate_makefile.sh-82-# First optimisation starts at ONE (all_options[0] is not initialised and generate does not produces valid code) cp2k-7.1/tools/autotune_grid/generate_makefile.sh:83:for iopt in `seq 1 $Ncomb`;do cp2k-7.1/tools/autotune_grid/generate_makefile.sh-84-TARGETS_EXE="gen_${l}_${iopt}.exists $TARGETS_EXE" ############################################## cp2k-7.1/tools/autotune_grid/get_results.sh-22-echo "l Time Opt" > best_timings cp2k-7.1/tools/autotune_grid/get_results.sh:23: for l in `seq 0 $lmax`; do cp2k-7.1/tools/autotune_grid/get_results.sh-24- bsf=999999.0 cp2k-7.1/tools/autotune_grid/get_results.sh-25-# First optimisation starts at ONE (all_options[0] is not initialised and generate does not produces valid code) cp2k-7.1/tools/autotune_grid/get_results.sh:26: for iopt in `seq 1 $Ncomb`;do cp2k-7.1/tools/autotune_grid/get_results.sh-27- # Extract the error ############################################## cp2k-7.1/tools/autotune_grid/get_results.sh-73- echo $lmax cp2k-7.1/tools/autotune_grid/get_results.sh:74: for l in `seq 0 $lmax`; do cp2k-7.1/tools/autotune_grid/get_results.sh-75- echo ${bsf_iopt_global_0[$l]} ############################################## cp2k-7.1/tools/autotune_grid/get_results.sh-77- echo $lmax cp2k-7.1/tools/autotune_grid/get_results.sh:78: for l in `seq 0 $lmax`; do cp2k-7.1/tools/autotune_grid/get_results.sh-79- echo ${bsf_iopt_global_1[$l]} ############################################## cp2k-7.1/tools/regtesting/do_regtest-307- else cp2k-7.1/tools/regtesting/do_regtest:308: e1=`grep -a "${grep_string}" ${output_old} | tail -1 | ${awk} -v f=${grep_field} '{print $f}'` cp2k-7.1/tools/regtesting/do_regtest-309- label="old" ############################################## cp2k-7.1/tools/regtesting/do_regtest-311- cp2k-7.1/tools/regtesting/do_regtest:312: e2=`grep -a "${grep_string}" ${output_new} | tail -1 | ${awk} -v f=${grep_field} '{print $f}'` cp2k-7.1/tools/regtesting/do_regtest:313: big=`echo "${e1} ${e2} ${error_tolerance}" | ${awk} '{if($2==0){v=sqrt(($1-$2)^2)}else{v=sqrt((($1-$2)/$2)^2)}; if (v>$3) printf("%16.8e",v); else printf("0") ;}'` cp2k-7.1/tools/regtesting/do_regtest-314- ############################################## cp2k-7.1/tools/regtesting/do_regtest-378- cp TEST_FILES_RESET ${dir_last}/${dir}/TEST_FILES_RESET cp2k-7.1/tools/regtesting/do_regtest:379: nreset=`grep '<' ${dir_test}/${dir}/TEST_FILES_RESET.diff | grep -v '#' | ${awk} '{c=c+1}END{print c}'` cp2k-7.1/tools/regtesting/do_regtest-380- for ((itest=1;itest<=nreset;itest++)); cp2k-7.1/tools/regtesting/do_regtest-381- do cp2k-7.1/tools/regtesting/do_regtest:382: reset_file=`grep '<' ${dir_test}/${dir}/TEST_FILES_RESET.diff | grep -v '#' | ${awk} -v itest=$itest '{c=c+1;if (c==itest) print $2}'` cp2k-7.1/tools/regtesting/do_regtest-383- rm -f ${dir_last}/${dir}/${reset_file}.out ############################################## cp2k-7.1/tools/regtesting/do_regtest-393- echo ">>> ${dir_test}/tests/${dir}" > ${dir_test}/status/REGTEST_TASK_TESTS-$task cp2k-7.1/tools/regtesting/do_regtest:394: ntest=`grep -v "#" TEST_FILES | ${awk} '{c=c+1}END{print c}'` cp2k-7.1/tools/regtesting/do_regtest-395- t1=`date +%s` ############################################## cp2k-7.1/tools/regtesting/do_regtest-400- this_test="" cp2k-7.1/tools/regtesting/do_regtest:401: input_file=`grep -v "#" TEST_FILES | ${awk} -v itest=$itest '{c=c+1;if (c==itest) print $1}'` cp2k-7.1/tools/regtesting/do_regtest:402: test_type=`grep -v "#" TEST_FILES | ${awk} -v itest=$itest '{c=c+1;if (c==itest) print $2}'` cp2k-7.1/tools/regtesting/do_regtest-403- # third field allows numerical tolerances to be read from the TEST_FILES cp2k-7.1/tools/regtesting/do_regtest-404- # if value does not exist set to the default of 1.0E-14 cp2k-7.1/tools/regtesting/do_regtest:405: test_tolerance=`grep -v "#" TEST_FILES | ${awk} -v itest=$itest -v def_err_tol=$default_err_tolerance '{c=c+1;if (c==itest) if (NF >= 3) { print $3 } else { print def_err_tol } }'` cp2k-7.1/tools/regtesting/do_regtest:406: test_ref_value=`grep -v "#" TEST_FILES | ${awk} -v itest=$itest '{c=c+1;if (c==itest) if (NF == 4) { print $4 } }'` cp2k-7.1/tools/regtesting/do_regtest-407- ############################################## cp2k-7.1/tools/regtesting/do_regtest-496- cp ${output_file} ${output_last} cp2k-7.1/tools/regtesting/do_regtest:497: timing=`grep -a "CP2K " ${output_file} | tail -n 1 | ${awk} '{printf("%7.2f",$NF)}'` cp2k-7.1/tools/regtesting/do_regtest-498- this_test="${this_test} (${timing} sec)" ;; cp2k-7.1/tools/regtesting/do_regtest-499- "OK" ) cp2k-7.1/tools/regtesting/do_regtest:500: timing=`grep -a "CP2K " ${output_file} | tail -n 1 | ${awk} '{printf("%7.2f",$NF)}'` cp2k-7.1/tools/regtesting/do_regtest-501- this_test="${this_test} (${timing} sec)" ;; ############################################## cp2k-7.1/tools/regtesting/do_regtest-513- esac cp2k-7.1/tools/regtesting/do_regtest:514: dum=`grep -l "${leak_error_string}" ${output_file}` cp2k-7.1/tools/regtesting/do_regtest-515- fi ############################################## cp2k-7.1/tools/regtesting/do_regtest-528- if [ -f ${output_file} ]; then cp2k-7.1/tools/regtesting/do_regtest:529: test_value=`grep -a "${grep_string}" ${output_file} | tail -1 | ${awk} -v f=${grep_field} '{print $f}'` cp2k-7.1/tools/regtesting/do_regtest-530- fi ############################################## cp2k-7.1/tools/regtesting/do_regtest-584- if (( cp2k_exit_status == 0)); then cp2k-7.1/tools/regtesting/do_regtest:585: this_test=`printf "OK (%7.2f sec)" ${timing}` cp2k-7.1/tools/regtesting/do_regtest-586- n_correct=$((n_correct+1)) ############################################## cp2k-7.1/tools/regtesting/do_regtest-618- esac cp2k-7.1/tools/regtesting/do_regtest:619: dum=`grep -l "${leak_error_string}" ${output_file}` cp2k-7.1/tools/regtesting/do_regtest-620- fi ############################################## cp2k-7.1/tools/regtesting/do_regtest-644-# kills all processes that have a PID of ppid (good for running jobs), removes the lockfile, and exits with code 8 cp2k-7.1/tools/regtesting/do_regtest:645:pgid=`ps -o "%r" $$ | grep "[0-9]"` cp2k-7.1/tools/regtesting/do_regtest-646-trapcommand="rm -f ${lockfile} ; kill -- -$pgid >& out.kill ; exit 8" ############################################## cp2k-7.1/tools/regtesting/do_regtest-843- else cp2k-7.1/tools/regtesting/do_regtest:844: compile_warnings=`grep "Warning" ${make_out} | wc -l` cp2k-7.1/tools/regtesting/do_regtest-845- echo "${make} -j $((maxbuildtasks)) ${ARCH_SPEC} VERSION=${cp2k_version} went fine (${compile_warnings} warnings)" ############################################## cp2k-7.1/tools/regtesting/do_regtest-870- ################################################################################### cp2k-7.1/tools/regtesting/do_regtest:871: Ntest_types=`awk -v l=1 -v c=1 'BEGIN{FS="!"}{lr=lr+1;if (lr==l) print $c}' ${test_types_file}` cp2k-7.1/tools/regtesting/do_regtest-872- test_grep[0]="" ############################################## cp2k-7.1/tools/regtesting/do_regtest-875- while [ $t -le ${Ntest_types} ]; do cp2k-7.1/tools/regtesting/do_regtest:876: test_grep[t]=`${awk} -v l=$t -v c=1 'BEGIN{FS="!"}{lr=lr+1;if (lr==l+1) print $c}' ${test_types_file}` cp2k-7.1/tools/regtesting/do_regtest:877: test_col[t]=`${awk} -v l=$t -v c=2 'BEGIN{FS="!"}{lr=lr+1;if (lr==l+1) print $c}' ${test_types_file}` cp2k-7.1/tools/regtesting/do_regtest-878- let t=t+1 ############################################## cp2k-7.1/tools/regtesting/do_regtest-936- if [[ $doretest == "yes" ]]; then cp2k-7.1/tools/regtesting/do_regtest:937: last_test_dir=`ls ${dir_out} | grep ^TEST-${dir_triplet}-${cp2k_version}- | tail -2 | head -1` cp2k-7.1/tools/regtesting/do_regtest-938- if [[ "${testdir}" == "${last_test_dir}" ]]; then ############################################## cp2k-7.1/tools/regtesting/do_regtest-948- else cp2k-7.1/tools/regtesting/do_regtest:949: retest_dirs=`grep .inp.out ${dir_out}/${last_test_dir}/error_summary | awk -F/ '{ test = 0; for (i = 1; i < NF; i++) { if (test == 1) { printf "%s/", $i } if ($i ~ /TEST/) test = 1; } printf "\n" }' | sort | sed 's/\/$//' | awk '!x[$0]++'` cp2k-7.1/tools/regtesting/do_regtest-950- for t in ${retest_dirs}; do ############################################## cp2k-7.1/tools/regtesting/do_regtest-965- # cp2k-7.1/tools/regtesting/do_regtest:966: cp2kflags=`${cp2k_prefix} --version ${cp2k_postfix} < /dev/null 2>&1 | grep cp2kflags ` cp2k-7.1/tools/regtesting/do_regtest-967- echo "CP2K supports: $cp2kflags" ############################################## cp2k-7.1/tools/regtesting/do_regtest-969- # get a list of regtest directories cp2k-7.1/tools/regtesting/do_regtest:970: dirs=`cat ${dir_test}/tests/TEST_DIRS | grep -v "#" | awk '{print $1}'` cp2k-7.1/tools/regtesting/do_regtest-971- ############################################## cp2k-7.1/tools/regtesting/do_regtest-1021- featurematch="yes" cp2k-7.1/tools/regtesting/do_regtest:1022: features_required=`cat ${dir_test}/tests/TEST_DIRS | grep -v "#" | awk -v dir="$dir" '{if ($1==dir) for(i=2;i<=NF;i++) printf("%s ",$i)}'` cp2k-7.1/tools/regtesting/do_regtest-1023- for fr in $features_required ############################################## cp2k-7.1/tools/regtesting/do_regtest-1030- else cp2k-7.1/tools/regtesting/do_regtest:1031: res=`echo "" | awk -v mpiranks=$numprocs "{print !($fr)}"` cp2k-7.1/tools/regtesting/do_regtest-1032- fi ############################################## cp2k-7.1/tools/regtesting/do_regtest-1077- idir=$((idir+1)) cp2k-7.1/tools/regtesting/do_regtest:1078: ntest=`grep -v "#" ${dir_test}/tests/${dir}/TEST_FILES | ${awk} '{c=c+1}END{print c}'` cp2k-7.1/tools/regtesting/do_regtest-1079- for ((itest=1;itest<=ntest;itest++)); cp2k-7.1/tools/regtesting/do_regtest-1080- do cp2k-7.1/tools/regtesting/do_regtest:1081: input_file=`grep -v "#" ${dir_test}/tests/${dir}/TEST_FILES | ${awk} -v itest=$itest '{c=c+1;if (c==itest) print $1}'` cp2k-7.1/tools/regtesting/do_regtest-1082- output_file=${dir_test}/${dir}/${input_file}.out ############################################## cp2k-7.1/tools/regtesting/do_regtest-1129- sleep 0.1 cp2k-7.1/tools/regtesting/do_regtest:1130: runningtasks=`ls -1 ${dir_test}/status/REGTEST_RUNNING-* 2>/dev/null | wc -l` cp2k-7.1/tools/regtesting/do_regtest-1131- done ############################################## cp2k-7.1/tools/regtesting/do_regtest-1147- file=${dir_test}/status/REGTEST_TASK_RESULT-$task cp2k-7.1/tools/regtesting/do_regtest:1148: tmp=`awk '{print $1}' $file` cp2k-7.1/tools/regtesting/do_regtest-1149- n_runtime_error=$((n_runtime_error+tmp)) cp2k-7.1/tools/regtesting/do_regtest:1150: tmp=`awk '{print $2}' $file` cp2k-7.1/tools/regtesting/do_regtest-1151- n_wrong_results=$((n_wrong_results+tmp)) cp2k-7.1/tools/regtesting/do_regtest:1152: tmp=`awk '{print $3}' $file` cp2k-7.1/tools/regtesting/do_regtest-1153- n_correct=$((n_correct+tmp)) cp2k-7.1/tools/regtesting/do_regtest:1154: tmp=`awk '{print $4}' $file` cp2k-7.1/tools/regtesting/do_regtest-1155- n_new=$((n_new+tmp)) cp2k-7.1/tools/regtesting/do_regtest:1156: tmp=`awk '{print $5}' $file` cp2k-7.1/tools/regtesting/do_regtest-1157- n_tests=$((n_tests+tmp)) ############################################## cp2k-7.1/tools/regtesting/do_regtest-1180- gfortran*) cp2k-7.1/tools/regtesting/do_regtest:1181: n_leaking_tests=`grep "XXXXXXXX" ${memory_description_file} | wc | ${awk} '{print $1}'` cp2k-7.1/tools/regtesting/do_regtest:1182: n_leaks=`grep "SUMMARY" ${memory_description_file} | ${awk} 'BEGIN{n=0}{n=n+$7}END{print n}'` cp2k-7.1/tools/regtesting/do_regtest-1183- printf "Number of LEAKING tests %d\n" ${n_leaking_tests} | tee -a ${summary} ############################################## cp2k-7.1/tools/toolchain/README_FOR_DEVELOPERS.md-31- have a default value, but allow the environment to set the values, cp2k-7.1/tools/toolchain/README_FOR_DEVELOPERS.md:32: using: `VAR=${VAR:-default_value}`. cp2k-7.1/tools/toolchain/README_FOR_DEVELOPERS.md-33- ############################################## cp2k-7.1/tools/toolchain/README_FOR_DEVELOPERS.md-45- variables used in the template file, and then do an eval to expand cp2k-7.1/tools/toolchain/README_FOR_DEVELOPERS.md:46: all of `${VARIABLE}` items in `arch_base.tmpl` to give the cp2k arch cp2k-7.1/tools/toolchain/README_FOR_DEVELOPERS.md-47- files. ############################################## cp2k-7.1/tools/hfx_tools/contraction/create-100-echo " SELECT CASE(n_a)" >> select.dat cp2k-7.1/tools/hfx_tools/contraction/create:101:for a in `seq 0 $lmax` cp2k-7.1/tools/hfx_tools/contraction/create-102-do ############################################## cp2k-7.1/tools/hfx_tools/contraction/create-104- echo " SELECT CASE(n_b)" >> select.dat cp2k-7.1/tools/hfx_tools/contraction/create:105: for b in `seq 0 $lmax` cp2k-7.1/tools/hfx_tools/contraction/create-106- do ############################################## cp2k-7.1/tools/hfx_tools/contraction/create-108- echo " SELECT CASE(n_c)" >> select.dat cp2k-7.1/tools/hfx_tools/contraction/create:109: for c in `seq 0 $lmax` cp2k-7.1/tools/hfx_tools/contraction/create-110- do ############################################## cp2k-7.1/tools/hfx_tools/contraction/create-112- echo " SELECT CASE(n_d)" >> select.dat cp2k-7.1/tools/hfx_tools/contraction/create:113: for d in `seq 0 $lmax` cp2k-7.1/tools/hfx_tools/contraction/create-114- do ############################################## cp2k-7.1/tools/hfx_tools/contraction/create-194-lmax=$lmax_specific cp2k-7.1/tools/hfx_tools/contraction/create:195:for a in `seq 0 $lmax` cp2k-7.1/tools/hfx_tools/contraction/create-196-do ############################################## cp2k-7.1/tools/hfx_tools/contraction/create-198- nsoa=${nso[$a]} cp2k-7.1/tools/hfx_tools/contraction/create:199: for b in `seq 0 $lmax` cp2k-7.1/tools/hfx_tools/contraction/create-200- do ############################################## cp2k-7.1/tools/hfx_tools/contraction/create-202- nsob=${nso[$b]} cp2k-7.1/tools/hfx_tools/contraction/create:203: for c in `seq 0 $lmax` cp2k-7.1/tools/hfx_tools/contraction/create-204- do ############################################## cp2k-7.1/tools/hfx_tools/contraction/create-206- nsoc=${nso[$c]} cp2k-7.1/tools/hfx_tools/contraction/create:207: for d in `seq 0 $lmax` cp2k-7.1/tools/hfx_tools/contraction/create-208- do ############################################## cp2k-7.1/tools/hfx_tools/contraction/create-256-echo " SELECT CASE(kmax)" >> tmp cp2k-7.1/tools/hfx_tools/contraction/create:257:for a in `seq 0 $lmax` cp2k-7.1/tools/hfx_tools/contraction/create-258-do ############################################## cp2k-7.1/tools/hfx_tools/contraction/create-270-echo " SELECT CASE(kmax)" >> tmp cp2k-7.1/tools/hfx_tools/contraction/create:271:for a in `seq 0 $lmax` cp2k-7.1/tools/hfx_tools/contraction/create-272-do ############################################## cp2k-7.1/tools/hfx_tools/contraction/create-284-echo " SELECT CASE(kmax)" >> tmp cp2k-7.1/tools/hfx_tools/contraction/create:285:for a in `seq 0 $lmax` cp2k-7.1/tools/hfx_tools/contraction/create-286-do ############################################## cp2k-7.1/tools/hfx_tools/contraction/create-298-echo " SELECT CASE(kmax)" >> tmp cp2k-7.1/tools/hfx_tools/contraction/create:299:for a in `seq 0 $lmax` cp2k-7.1/tools/hfx_tools/contraction/create-300-do ############################################## cp2k-7.1/tools/plan_mpi_omp/README.md-28- cp2k-7.1/tools/plan_mpi_omp/README.md:29:The script is storing the arguments (except for the node-count) as default values for the next plan (file: `$HOME/.xconfigure-cp2k-plan`). This allows to supply the system-type once, and to plan with varying node-counts in a convenient fashion. Planning for 8 nodes of the above kind yields the following output (`plan.sh 8`): cp2k-7.1/tools/plan_mpi_omp/README.md-30- ############################################## cp2k-7.1/tools/autotools/m4/ax_gcc_archflag.m4-166- AC_PATH_PROG([PRTDIAG], [prtdiag], [prtdiag], [$PATH:/usr/platform/`uname -i`/sbin/:/usr/platform/`uname -m`/sbin/]) cp2k-7.1/tools/autotools/m4/ax_gcc_archflag.m4:167: cputype=`(((grep cpu /proc/cpuinfo | cut -d: -f2) ; ($PRTDIAG -v |grep -i sparc) ; grep -i cpu /var/run/dmesg.boot ) | head -n 1) 2> /dev/null` cp2k-7.1/tools/autotools/m4/ax_gcc_archflag.m4:168: cputype=`echo "$cputype" | tr -d ' -' | $SED 's/SPARCIIi/SPARCII/' |tr $as_cr_LETTERS $as_cr_letters` cp2k-7.1/tools/autotools/m4/ax_gcc_archflag.m4-169- case $cputype in ############################################## cp2k-7.1/tools/autotools/m4/ax_gcc_archflag.m4-189- powerpc*) cp2k-7.1/tools/autotools/m4/ax_gcc_archflag.m4:190: cputype=`((grep cpu /proc/cpuinfo | head -n 1 | cut -d: -f2 | cut -d, -f1 | $SED 's/ //g') ; /usr/bin/machine ; /bin/machine; grep CPU /var/run/dmesg.boot | head -n 1 | cut -d" " -f2) 2> /dev/null` cp2k-7.1/tools/autotools/m4/ax_gcc_archflag.m4:191: cputype=`echo $cputype | $SED -e 's/ppc//g;s/ *//g'` cp2k-7.1/tools/autotools/m4/ax_gcc_archflag.m4-192- case $cputype in ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-119- done cp2k-7.1/tools/autotools/m4/libtool.m4:120: func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` cp2k-7.1/tools/autotools/m4/libtool.m4-121-} ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-437-m4_define([_LT_CONFIG_STATUS_DECLARE], cp2k-7.1/tools/autotools/m4/libtool.m4:438:[$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) cp2k-7.1/tools/autotools/m4/libtool.m4-439- ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-447-# cp2k-7.1/tools/autotools/m4/libtool.m4:448:# <var>='`$ECHO "$<var>" | $SED "$delay_single_quote_subst"`' cp2k-7.1/tools/autotools/m4/libtool.m4-449-m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-557-]], lt_decl_quote_varnames); do cp2k-7.1/tools/autotools/m4/libtool.m4:558: case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in cp2k-7.1/tools/autotools/m4/libtool.m4-559- *[[\\\\\\\`\\"\\\$]]*) cp2k-7.1/tools/autotools/m4/libtool.m4:560: eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes cp2k-7.1/tools/autotools/m4/libtool.m4-561- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-570-]], lt_decl_dquote_varnames); do cp2k-7.1/tools/autotools/m4/libtool.m4:571: case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in cp2k-7.1/tools/autotools/m4/libtool.m4-572- *[[\\\\\\\`\\"\\\$]]*) cp2k-7.1/tools/autotools/m4/libtool.m4:573: eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes cp2k-7.1/tools/autotools/m4/libtool.m4-574- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1112- if test yes = "$lt_cv_ld_force_load"; then cp2k-7.1/tools/autotools/m4/libtool.m4:1113: _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' cp2k-7.1/tools/autotools/m4/libtool.m4-1114- m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1165- }]' cp2k-7.1/tools/autotools/m4/libtool.m4:1166: _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` cp2k-7.1/tools/autotools/m4/libtool.m4-1167- # Check for a 64-bit object if we didn't find anything. cp2k-7.1/tools/autotools/m4/libtool.m4-1168- if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then cp2k-7.1/tools/autotools/m4/libtool.m4:1169: _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` cp2k-7.1/tools/autotools/m4/libtool.m4-1170- fi],[]) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1201-if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ cp2k-7.1/tools/autotools/m4/libtool.m4:1202: test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then cp2k-7.1/tools/autotools/m4/libtool.m4-1203- ECHO='print -r --' cp2k-7.1/tools/autotools/m4/libtool.m4:1204:elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then cp2k-7.1/tools/autotools/m4/libtool.m4-1205- ECHO='printf %s\n' ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1236- PATH=/empty FPATH=/empty; export PATH FPATH cp2k-7.1/tools/autotools/m4/libtool.m4:1237: test "X`printf %s $ECHO`" = "X$ECHO" \ cp2k-7.1/tools/autotools/m4/libtool.m4:1238: || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) cp2k-7.1/tools/autotools/m4/libtool.m4-1239- ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1260- if test yes = "$GCC"; then cp2k-7.1/tools/autotools/m4/libtool.m4:1261: lt_sysroot=`$CC --print-sysroot 2>/dev/null` cp2k-7.1/tools/autotools/m4/libtool.m4-1262- fi ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1264- /*) cp2k-7.1/tools/autotools/m4/libtool.m4:1265: lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` cp2k-7.1/tools/autotools/m4/libtool.m4-1266- ;; #( ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1294- if AC_TRY_EVAL(ac_compile); then cp2k-7.1/tools/autotools/m4/libtool.m4:1295: case `/usr/bin/file conftest.$ac_objext` in cp2k-7.1/tools/autotools/m4/libtool.m4-1296- *ELF-32*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1311- if test yes = "$lt_cv_prog_gnu_ld"; then cp2k-7.1/tools/autotools/m4/libtool.m4:1312: case `/usr/bin/file conftest.$ac_objext` in cp2k-7.1/tools/autotools/m4/libtool.m4-1313- *32-bit*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1323- else cp2k-7.1/tools/autotools/m4/libtool.m4:1324: case `/usr/bin/file conftest.$ac_objext` in cp2k-7.1/tools/autotools/m4/libtool.m4-1325- *32-bit*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1345- emul=elf cp2k-7.1/tools/autotools/m4/libtool.m4:1346: case `/usr/bin/file conftest.$ac_objext` in cp2k-7.1/tools/autotools/m4/libtool.m4-1347- *32-bit*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1353- esac cp2k-7.1/tools/autotools/m4/libtool.m4:1354: case `/usr/bin/file conftest.$ac_objext` in cp2k-7.1/tools/autotools/m4/libtool.m4-1355- *MSB*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1361- esac cp2k-7.1/tools/autotools/m4/libtool.m4:1362: case `/usr/bin/file conftest.$ac_objext` in cp2k-7.1/tools/autotools/m4/libtool.m4-1363- *N32*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1726- # And add a safety zone cp2k-7.1/tools/autotools/m4/libtool.m4:1727: lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` cp2k-7.1/tools/autotools/m4/libtool.m4:1728: lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` cp2k-7.1/tools/autotools/m4/libtool.m4-1729- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1759- if test -n "$kargmax"; then cp2k-7.1/tools/autotools/m4/libtool.m4:1760: lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` cp2k-7.1/tools/autotools/m4/libtool.m4-1761- else ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1768- test undefined != "$lt_cv_sys_max_cmd_len"; then cp2k-7.1/tools/autotools/m4/libtool.m4:1769: lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` cp2k-7.1/tools/autotools/m4/libtool.m4:1770: lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` cp2k-7.1/tools/autotools/m4/libtool.m4-1771- else ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1780- # we can't tell. cp2k-7.1/tools/autotools/m4/libtool.m4:1781: while { test X`env echo "$teststring$teststring" 2>/dev/null` \ cp2k-7.1/tools/autotools/m4/libtool.m4-1782- = "X$teststring$teststring"; } >/dev/null 2>&1 && ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1784- do cp2k-7.1/tools/autotools/m4/libtool.m4:1785: i=`expr $i + 1` cp2k-7.1/tools/autotools/m4/libtool.m4-1786- teststring=$teststring$teststring ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1788- # Only check the string length outside the loop. cp2k-7.1/tools/autotools/m4/libtool.m4:1789: lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` cp2k-7.1/tools/autotools/m4/libtool.m4-1790- teststring= ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-1793- # linker. It appears as though 1/2 is a usable value. cp2k-7.1/tools/autotools/m4/libtool.m4:1794: lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` cp2k-7.1/tools/autotools/m4/libtool.m4-1795- fi ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2259- *:) cp2k-7.1/tools/autotools/m4/libtool.m4:2260: eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\" cp2k-7.1/tools/autotools/m4/libtool.m4-2261- ;; cp2k-7.1/tools/autotools/m4/libtool.m4-2262- x:*) cp2k-7.1/tools/autotools/m4/libtool.m4:2263: eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\" cp2k-7.1/tools/autotools/m4/libtool.m4-2264- ;; cp2k-7.1/tools/autotools/m4/libtool.m4-2265- *::*) cp2k-7.1/tools/autotools/m4/libtool.m4:2266: eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" cp2k-7.1/tools/autotools/m4/libtool.m4:2267: eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\" cp2k-7.1/tools/autotools/m4/libtool.m4-2268- ;; cp2k-7.1/tools/autotools/m4/libtool.m4-2269- *) cp2k-7.1/tools/autotools/m4/libtool.m4:2270: eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\" cp2k-7.1/tools/autotools/m4/libtool.m4-2271- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2299- esac cp2k-7.1/tools/autotools/m4/libtool.m4:2300: lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` cp2k-7.1/tools/autotools/m4/libtool.m4-2301- case $lt_search_path_spec in ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2306- # okay in the real world where ";" in dirpaths is itself problematic. cp2k-7.1/tools/autotools/m4/libtool.m4:2307: lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` cp2k-7.1/tools/autotools/m4/libtool.m4-2308- ;; cp2k-7.1/tools/autotools/m4/libtool.m4-2309- *) cp2k-7.1/tools/autotools/m4/libtool.m4:2310: lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` cp2k-7.1/tools/autotools/m4/libtool.m4-2311- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2315- lt_tmp_lt_search_path_spec= cp2k-7.1/tools/autotools/m4/libtool.m4:2316: lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` cp2k-7.1/tools/autotools/m4/libtool.m4-2317- # ...but if some path component already ends with the multilib dir we assume ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2357- esac cp2k-7.1/tools/autotools/m4/libtool.m4:2358: sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` cp2k-7.1/tools/autotools/m4/libtool.m4-2359-else ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2498- # Create ${libname}_ixlibrary.a entries in /sys/libs. cp2k-7.1/tools/autotools/m4/libtool.m4:2499: finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' cp2k-7.1/tools/autotools/m4/libtool.m4-2500- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2534- # DLL is installed to $(libdir)/../bin by postinstall_cmds cp2k-7.1/tools/autotools/m4/libtool.m4:2535: postinstall_cmds='base_file=`basename \$file`~ cp2k-7.1/tools/autotools/m4/libtool.m4:2536: dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ cp2k-7.1/tools/autotools/m4/libtool.m4:2537: dldir=$destdir/`dirname \$dlpath`~ cp2k-7.1/tools/autotools/m4/libtool.m4-2538- test -d \$dldir || mkdir -p \$dldir~ ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2543- fi' cp2k-7.1/tools/autotools/m4/libtool.m4:2544: postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ cp2k-7.1/tools/autotools/m4/libtool.m4-2545- dlpath=$dir/\$dldll~ ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2551- # Cygwin DLLs use 'cyg' prefix rather than 'lib' cp2k-7.1/tools/autotools/m4/libtool.m4:2552: soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' cp2k-7.1/tools/autotools/m4/libtool.m4-2553-m4_if([$1], [],[ ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2557- # MinGW DLLs use traditional 'lib' prefix cp2k-7.1/tools/autotools/m4/libtool.m4:2558: soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' cp2k-7.1/tools/autotools/m4/libtool.m4-2559- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2561- # pw32 DLLs use 'pw' prefix rather than 'lib' cp2k-7.1/tools/autotools/m4/libtool.m4:2562: library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' cp2k-7.1/tools/autotools/m4/libtool.m4-2563- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2570- libname_spec='$name' cp2k-7.1/tools/autotools/m4/libtool.m4:2571: soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' cp2k-7.1/tools/autotools/m4/libtool.m4-2572- library_names_spec='$libname.dll.lib' ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2582- # Let DOS variable expansion print the short 8.3 style file name. cp2k-7.1/tools/autotools/m4/libtool.m4:2583: lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` cp2k-7.1/tools/autotools/m4/libtool.m4-2584- sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2587- # Convert to MSYS style. cp2k-7.1/tools/autotools/m4/libtool.m4:2588: sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` cp2k-7.1/tools/autotools/m4/libtool.m4-2589- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2593- # like /cygdrive/c/PROGRA~1:/cygdr... cp2k-7.1/tools/autotools/m4/libtool.m4:2594: sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` cp2k-7.1/tools/autotools/m4/libtool.m4:2595: sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` cp2k-7.1/tools/autotools/m4/libtool.m4:2596: sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` cp2k-7.1/tools/autotools/m4/libtool.m4-2597- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2601- # It is most probably a Windows format PATH. cp2k-7.1/tools/autotools/m4/libtool.m4:2602: sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` cp2k-7.1/tools/autotools/m4/libtool.m4-2603- else cp2k-7.1/tools/autotools/m4/libtool.m4:2604: sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` cp2k-7.1/tools/autotools/m4/libtool.m4-2605- fi ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2611- # DLL is installed to $(libdir)/../bin by postinstall_cmds cp2k-7.1/tools/autotools/m4/libtool.m4:2612: postinstall_cmds='base_file=`basename \$file`~ cp2k-7.1/tools/autotools/m4/libtool.m4:2613: dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ cp2k-7.1/tools/autotools/m4/libtool.m4:2614: dldir=$destdir/`dirname \$dlpath`~ cp2k-7.1/tools/autotools/m4/libtool.m4-2615- test -d \$dldir || mkdir -p \$dldir~ cp2k-7.1/tools/autotools/m4/libtool.m4-2616- $install_prog $dir/$dlname \$dldir/$dlname' cp2k-7.1/tools/autotools/m4/libtool.m4:2617: postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ cp2k-7.1/tools/autotools/m4/libtool.m4-2618- dlpath=$dir/\$dldll~ ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2625- # Assume MSVC wrapper cp2k-7.1/tools/autotools/m4/libtool.m4:2626: library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib' cp2k-7.1/tools/autotools/m4/libtool.m4-2627- dynamic_linker='Win32 ld.exe' ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2642- shlibpath_var=DYLD_LIBRARY_PATH cp2k-7.1/tools/autotools/m4/libtool.m4:2643: shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' cp2k-7.1/tools/autotools/m4/libtool.m4-2644-m4_if([$1], [],[ ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2879- if test -f /etc/ld.so.conf; then cp2k-7.1/tools/autotools/m4/libtool.m4:2880: lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` cp2k-7.1/tools/autotools/m4/libtool.m4-2881- sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2933- need_lib_prefix=no cp2k-7.1/tools/autotools/m4/libtool.m4:2934: if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then cp2k-7.1/tools/autotools/m4/libtool.m4-2935- need_version=no ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2960- sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec cp2k-7.1/tools/autotools/m4/libtool.m4:2961: postinstall_cmds='base_file=`basename \$file`~ cp2k-7.1/tools/autotools/m4/libtool.m4:2962: dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ cp2k-7.1/tools/autotools/m4/libtool.m4:2963: dldir=$destdir/`dirname \$dlpath`~ cp2k-7.1/tools/autotools/m4/libtool.m4-2964- test -d \$dldir || mkdir -p \$dldir~ ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-2969- fi' cp2k-7.1/tools/autotools/m4/libtool.m4:2970: postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ cp2k-7.1/tools/autotools/m4/libtool.m4-2971- dlpath=$dir/\$dldll~ ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-3180- "file_magic "*) cp2k-7.1/tools/autotools/m4/libtool.m4:3181: file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` cp2k-7.1/tools/autotools/m4/libtool.m4-3182- MAGIC_CMD=$lt_cv_path_MAGIC_CMD ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-3263- # gcc leaves a trailing carriage return, which upsets mingw cp2k-7.1/tools/autotools/m4/libtool.m4:3264: ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; cp2k-7.1/tools/autotools/m4/libtool.m4-3265- *) cp2k-7.1/tools/autotools/m4/libtool.m4:3266: ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; cp2k-7.1/tools/autotools/m4/libtool.m4-3267- esac ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-3272- # Canonicalize the pathname of ld cp2k-7.1/tools/autotools/m4/libtool.m4:3273: ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` cp2k-7.1/tools/autotools/m4/libtool.m4-3274- while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do cp2k-7.1/tools/autotools/m4/libtool.m4:3275: ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` cp2k-7.1/tools/autotools/m4/libtool.m4-3276- done ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-3303- # Break only if it was the GNU/non-GNU ld that we prefer. cp2k-7.1/tools/autotools/m4/libtool.m4:3304: case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in cp2k-7.1/tools/autotools/m4/libtool.m4-3305- *GNU* | *'with BFD'*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-3343-[# I'd rather use --version here, but apparently some GNU lds only accept -v. cp2k-7.1/tools/autotools/m4/libtool.m4:3344:case `$LD -v 2>&1 </dev/null` in cp2k-7.1/tools/autotools/m4/libtool.m4-3345-*GNU* | *'with BFD'*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-3570-openbsd* | bitrig*) cp2k-7.1/tools/autotools/m4/libtool.m4:3571: if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then cp2k-7.1/tools/autotools/m4/libtool.m4-3572- lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-3637- else cp2k-7.1/tools/autotools/m4/libtool.m4:3638: file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` cp2k-7.1/tools/autotools/m4/libtool.m4-3639- fi ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-3688- esac cp2k-7.1/tools/autotools/m4/libtool.m4:3689: case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in cp2k-7.1/tools/autotools/m4/libtool.m4-3690- *$lt_bad_file* | *'Invalid file or object type'*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-3694- *) cp2k-7.1/tools/autotools/m4/libtool.m4:3695: case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in cp2k-7.1/tools/autotools/m4/libtool.m4-3696- */dev/null*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-3720- AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) cp2k-7.1/tools/autotools/m4/libtool.m4:3721: case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in cp2k-7.1/tools/autotools/m4/libtool.m4-3722- *COFF*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-3779- # decide which one to use based on capabilities of $DLLTOOL cp2k-7.1/tools/autotools/m4/libtool.m4:3780: case `$DLLTOOL --help 2>&1` in cp2k-7.1/tools/autotools/m4/libtool.m4-3781- *--identify-strict*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-3953-# If we're using GNU nm, then use its standard symbol codes. cp2k-7.1/tools/autotools/m4/libtool.m4:3954:case `$NM -V 2>&1` in cp2k-7.1/tools/autotools/m4/libtool.m4-3955-*GNU* | *'with BFD'*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-4001-mingw*) cp2k-7.1/tools/autotools/m4/libtool.m4:4002: opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp cp2k-7.1/tools/autotools/m4/libtool.m4-4003- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-4057- nlist=conftest.nm cp2k-7.1/tools/autotools/m4/libtool.m4:4058: if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then cp2k-7.1/tools/autotools/m4/libtool.m4-4059- # Try sorting and uniquifying the output. ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-4405- *) cp2k-7.1/tools/autotools/m4/libtool.m4:4406: case `$CC -V 2>&1 | sed 5q` in cp2k-7.1/tools/autotools/m4/libtool.m4-4407- *Sun\ C*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-4741- *) cp2k-7.1/tools/autotools/m4/libtool.m4:4742: case `$CC -V 2>&1 | sed 5q` in cp2k-7.1/tools/autotools/m4/libtool.m4-4743- *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-4924- else cp2k-7.1/tools/autotools/m4/libtool.m4:4925: _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' cp2k-7.1/tools/autotools/m4/libtool.m4-4926- fi ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5017- # shared libraries, regardless of the interface used. cp2k-7.1/tools/autotools/m4/libtool.m4:5018: case `$LD -v 2>&1` in cp2k-7.1/tools/autotools/m4/libtool.m4-5019- *\ \(GNU\ Binutils\)\ 2.19.5*) ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5049- supports_anon_versioning=no cp2k-7.1/tools/autotools/m4/libtool.m4:5050: case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in cp2k-7.1/tools/autotools/m4/libtool.m4-5051- *GNU\ gold*) supports_anon_versioning=yes ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5152- prefix_cmds="$SED"~ cp2k-7.1/tools/autotools/m4/libtool.m4:5153: if test EXPORTS = "`$SED 1q $export_symbols`"; then cp2k-7.1/tools/autotools/m4/libtool.m4-5154- prefix_cmds="$prefix_cmds -e 1d"; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5174- # time. Moving up from 0x10000000 also allows more sbrk(2) space. cp2k-7.1/tools/autotools/m4/libtool.m4:5175: _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4:5176: _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-5177- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5192- pgcc*) # Portland Group C compiler cp2k-7.1/tools/autotools/m4/libtool.m4:5193: _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' cp2k-7.1/tools/autotools/m4/libtool.m4-5194- tmp_addflag=' $pic_flag' ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5197- # Portland Group f77 and f90 compilers cp2k-7.1/tools/autotools/m4/libtool.m4:5198: _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' cp2k-7.1/tools/autotools/m4/libtool.m4-5199- tmp_addflag=' $pic_flag -Mnomain' ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5214- nvcc*) # Cuda Compiler Driver 2.2 cp2k-7.1/tools/autotools/m4/libtool.m4:5215: _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' cp2k-7.1/tools/autotools/m4/libtool.m4-5216- _LT_TAGVAR(compiler_needs_object, $1)=yes ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5218- esac cp2k-7.1/tools/autotools/m4/libtool.m4:5219: case `$CC -V 2>&1 | sed 5q` in cp2k-7.1/tools/autotools/m4/libtool.m4-5220- *Sun\ C*) # Sun C 5.9 cp2k-7.1/tools/autotools/m4/libtool.m4:5221: _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' cp2k-7.1/tools/autotools/m4/libtool.m4-5222- _LT_TAGVAR(compiler_needs_object, $1)=yes ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5289- sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) cp2k-7.1/tools/autotools/m4/libtool.m4:5290: case `$LD -v 2>&1` in cp2k-7.1/tools/autotools/m4/libtool.m4-5291- *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5378- else cp2k-7.1/tools/autotools/m4/libtool.m4:5379: _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' cp2k-7.1/tools/autotools/m4/libtool.m4-5380- fi ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5443- # below for broken collect2 doesn't work under 4.3+ cp2k-7.1/tools/autotools/m4/libtool.m4:5444: collect2name=`$CC -print-prog-name=collect2` cp2k-7.1/tools/autotools/m4/libtool.m4-5445- if test -f "$collect2name" && ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5499- _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" cp2k-7.1/tools/autotools/m4/libtool.m4:5500: _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag cp2k-7.1/tools/autotools/m4/libtool.m4-5501- else ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5524- # -brtl affects multiple linker settings, -berok does not and is overridden later cp2k-7.1/tools/autotools/m4/libtool.m4:5525: compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' cp2k-7.1/tools/autotools/m4/libtool.m4-5526- if test svr4 != "$with_aix_soname"; then ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5615- # FIXME: Setting linknames here is a bad hack. cp2k-7.1/tools/autotools/m4/libtool.m4:5616: _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' cp2k-7.1/tools/autotools/m4/libtool.m4-5617- # The linker will automatically build a .lib file if we build a DLL. ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5753- if test yes = "$GCC"; then cp2k-7.1/tools/autotools/m4/libtool.m4:5754: _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-5755- # Try to use the -exported_symbol ld option, if it does not ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5776- if test yes = "$lt_cv_irix_exported_symbol"; then cp2k-7.1/tools/autotools/m4/libtool.m4:5777: _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-5778- fi cp2k-7.1/tools/autotools/m4/libtool.m4-5779- else cp2k-7.1/tools/autotools/m4/libtool.m4:5780: _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4:5781: _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-5782- fi ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5826- _LT_TAGVAR(hardcode_direct_absolute, $1)=yes cp2k-7.1/tools/autotools/m4/libtool.m4:5827: if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then cp2k-7.1/tools/autotools/m4/libtool.m4-5828- _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5857- prefix_cmds="$SED"~ cp2k-7.1/tools/autotools/m4/libtool.m4:5858: if test EXPORTS = "`$SED 1q $export_symbols`"; then cp2k-7.1/tools/autotools/m4/libtool.m4-5859- prefix_cmds="$prefix_cmds -e 1d"; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5871- _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' cp2k-7.1/tools/autotools/m4/libtool.m4:5872: _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-5873- else cp2k-7.1/tools/autotools/m4/libtool.m4-5874- _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' cp2k-7.1/tools/autotools/m4/libtool.m4:5875: _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-5876- fi ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5884- _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' cp2k-7.1/tools/autotools/m4/libtool.m4:5885: _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-5886- _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5888- _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' cp2k-7.1/tools/autotools/m4/libtool.m4:5889: _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4:5890: _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ cp2k-7.1/tools/autotools/m4/libtool.m4:5891: $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' cp2k-7.1/tools/autotools/m4/libtool.m4-5892- ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-5907- else cp2k-7.1/tools/autotools/m4/libtool.m4:5908: case `$CC -V 2>&1` in cp2k-7.1/tools/autotools/m4/libtool.m4-5909- *"Compilers 5.0"*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-6100- _LT_TAGVAR(allow_undefined_flag, $1)= cp2k-7.1/tools/autotools/m4/libtool.m4:6101: if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) cp2k-7.1/tools/autotools/m4/libtool.m4-6102- then ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-6404- # ancient GNU ld didn't support --whole-archive et. al. cp2k-7.1/tools/autotools/m4/libtool.m4:6405: if eval "`$CC -print-prog-name=ld` --help 2>&1" | cp2k-7.1/tools/autotools/m4/libtool.m4-6406- $GREP 'no-whole-archive' > /dev/null; then ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-6514- # below for broken collect2 doesn't work under 4.3+ cp2k-7.1/tools/autotools/m4/libtool.m4:6515: collect2name=`$CC -print-prog-name=collect2` cp2k-7.1/tools/autotools/m4/libtool.m4-6516- if test -f "$collect2name" && ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-6572- cp2k-7.1/tools/autotools/m4/libtool.m4:6573: _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag cp2k-7.1/tools/autotools/m4/libtool.m4-6574- else ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-6597- # -brtl affects multiple linker settings, -berok does not and is overridden later cp2k-7.1/tools/autotools/m4/libtool.m4:6598: compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' cp2k-7.1/tools/autotools/m4/libtool.m4-6599- if test svr4 != "$with_aix_soname"; then ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-6726- prefix_cmds="$SED"~ cp2k-7.1/tools/autotools/m4/libtool.m4:6727: if test EXPORTS = "`$SED 1q $export_symbols`"; then cp2k-7.1/tools/autotools/m4/libtool.m4-6728- prefix_cmds="$prefix_cmds -e 1d"; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-6800- # dependencies. cp2k-7.1/tools/autotools/m4/libtool.m4:6801: output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' cp2k-7.1/tools/autotools/m4/libtool.m4-6802- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-6865- # dependencies. cp2k-7.1/tools/autotools/m4/libtool.m4:6866: output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' cp2k-7.1/tools/autotools/m4/libtool.m4-6867- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-6901- # time. Moving up from 0x10000000 also allows more sbrk(2) space. cp2k-7.1/tools/autotools/m4/libtool.m4:6902: _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4:6903: _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-6904- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-6908- # SGI C++ cp2k-7.1/tools/autotools/m4/libtool.m4:6909: _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-6910- ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-6919- if test no = "$with_gnu_ld"; then cp2k-7.1/tools/autotools/m4/libtool.m4:6920: _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-6921- else cp2k-7.1/tools/autotools/m4/libtool.m4:6922: _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-6923- fi ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-6940- # to its proper name (with version) after linking. cp2k-7.1/tools/autotools/m4/libtool.m4:6941: _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' cp2k-7.1/tools/autotools/m4/libtool.m4:6942: _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-6943- # Commands to make compiler produce verbose output that lists ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-6950- # dependencies. cp2k-7.1/tools/autotools/m4/libtool.m4:6951: output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' cp2k-7.1/tools/autotools/m4/libtool.m4-6952- ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-6965- # earlier do not add the objects themselves. cp2k-7.1/tools/autotools/m4/libtool.m4:6966: case `$CC -V 2>&1` in cp2k-7.1/tools/autotools/m4/libtool.m4-6967- *"Version 7."*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-6986- # Portland Group C++ compiler cp2k-7.1/tools/autotools/m4/libtool.m4:6987: case `$CC -V` in cp2k-7.1/tools/autotools/m4/libtool.m4-6988- *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-6991- $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ cp2k-7.1/tools/autotools/m4/libtool.m4:6992: compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' cp2k-7.1/tools/autotools/m4/libtool.m4-6993- _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-6995- $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ cp2k-7.1/tools/autotools/m4/libtool.m4:6996: $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ cp2k-7.1/tools/autotools/m4/libtool.m4-6997- $RANLIB $oldlib' ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-7000- $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ cp2k-7.1/tools/autotools/m4/libtool.m4:7001: $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-7002- _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-7004- $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ cp2k-7.1/tools/autotools/m4/libtool.m4:7005: $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-7006- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-7014- _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' cp2k-7.1/tools/autotools/m4/libtool.m4:7015: _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' cp2k-7.1/tools/autotools/m4/libtool.m4-7016- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-7033- # dependencies. cp2k-7.1/tools/autotools/m4/libtool.m4:7034: output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' cp2k-7.1/tools/autotools/m4/libtool.m4-7035- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-7048- *) cp2k-7.1/tools/autotools/m4/libtool.m4:7049: case `$CC -V 2>&1 | sed 5q` in cp2k-7.1/tools/autotools/m4/libtool.m4-7050- *Sun\ C*) ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-7055- _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' cp2k-7.1/tools/autotools/m4/libtool.m4:7056: _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' cp2k-7.1/tools/autotools/m4/libtool.m4-7057- _LT_TAGVAR(compiler_needs_object, $1)=yes ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-7120- _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' cp2k-7.1/tools/autotools/m4/libtool.m4:7121: if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then cp2k-7.1/tools/autotools/m4/libtool.m4-7122- _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-7139- # to its proper name (with version) after linking. cp2k-7.1/tools/autotools/m4/libtool.m4:7140: _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-7141- ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-7160- _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' cp2k-7.1/tools/autotools/m4/libtool.m4:7161: _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-7162- _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-7165- _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' cp2k-7.1/tools/autotools/m4/libtool.m4:7166: _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4:7167: _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ cp2k-7.1/tools/autotools/m4/libtool.m4-7168- echo "-hidden">> $lib.exp~ cp2k-7.1/tools/autotools/m4/libtool.m4:7169: $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ cp2k-7.1/tools/autotools/m4/libtool.m4-7170- $RM $lib.exp' ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-7184- # dependencies. cp2k-7.1/tools/autotools/m4/libtool.m4:7185: output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' cp2k-7.1/tools/autotools/m4/libtool.m4-7186- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-7191- osf3*) cp2k-7.1/tools/autotools/m4/libtool.m4:7192: _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-7193- ;; cp2k-7.1/tools/autotools/m4/libtool.m4-7194- *) cp2k-7.1/tools/autotools/m4/libtool.m4:7195: _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' cp2k-7.1/tools/autotools/m4/libtool.m4-7196- ;; ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-7444- case @S|@2 in cp2k-7.1/tools/autotools/m4/libtool.m4:7445: .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;; cp2k-7.1/tools/autotools/m4/libtool.m4:7446: *) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;; cp2k-7.1/tools/autotools/m4/libtool.m4-7447- esac ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-7533- cp2k-7.1/tools/autotools/m4/libtool.m4:7534: for p in `eval "$output_verbose_link_cmd"`; do cp2k-7.1/tools/autotools/m4/libtool.m4-7535- case $prev$p in ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-7637-if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then cp2k-7.1/tools/autotools/m4/libtool.m4:7638: _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'` cp2k-7.1/tools/autotools/m4/libtool.m4-7639-fi ############################################## cp2k-7.1/tools/autotools/m4/libtool.m4-8257- test 10 -lt "$lt_ac_count" && break cp2k-7.1/tools/autotools/m4/libtool.m4:8258: lt_ac_count=`expr $lt_ac_count + 1` cp2k-7.1/tools/autotools/m4/libtool.m4-8259- if test "$lt_ac_count" -gt "$lt_ac_max"; then ############################################## cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4-125- echo -n "Checking whether $$1 responds to '-showme:compile'... " cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4:126: lx_mpi_compile_line=`$$1 -showme:compile 2>/dev/null` cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4-127- if [[ "$?" -eq 0 ]]; then cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4-128- echo yes cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4:129: lx_mpi_link_line=`$$1 -showme:link 2>/dev/null` cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4-130- else ############################################## cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4-132- echo -n "Checking whether $$1 responds to '-showme'... " cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4:133: lx_mpi_command_line=`$$1 -showme 2>/dev/null` cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4-134- if [[ "$?" -ne 0 ]]; then ############################################## cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4-136- echo -n "Checking whether $$1 responds to '-compile-info'... " cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4:137: lx_mpi_compile_line=`$$1 -compile-info 2>/dev/null` cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4-138- if [[ "$?" -eq 0 ]]; then cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4-139- echo yes cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4:140: lx_mpi_link_line=`$$1 -link-info 2>/dev/null` cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4-141- else ############################################## cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4-143- echo -n "Checking whether $$1 responds to '-show'... " cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4:144: lx_mpi_command_line=`$$1 -show 2>/dev/null` cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4-145- if [[ "$?" -eq 0 ]]; then ############################################## cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4-162- # parse them all out in future versions of this macro. cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4:163: lx_mpi_defines=` echo "$lx_mpi_command_line" | grep -o -- '\(^\| \)-D\([[^\"[:space:]]]\+\|\"[[^\"[:space:]]]\+\"\)'` cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4:164: lx_mpi_includes=` echo "$lx_mpi_command_line" | grep -o -- '\(^\| \)-I\([[^\"[:space:]]]\+\|\"[[^\"[:space:]]]\+\"\)'` cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4:165: lx_mpi_link_paths=` echo "$lx_mpi_command_line" | grep -o -- '\(^\| \)-L\([[^\"[:space:]]]\+\|\"[[^\"[:space:]]]\+\"\)'` cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4:166: lx_mpi_libs=` echo "$lx_mpi_command_line" | grep -o -- '\(^\| \)-l\([[^\"[:space:]]]\+\|\"[[^\"[:space:]]]\+\"\)'` cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4:167: lx_mpi_link_args=` echo "$lx_mpi_command_line" | grep -o -- '\(^\| \)-Wl,\([[^\"[:space:]]]\+\|\"[[^\"[:space:]]]\+\"\)'` cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4-168- ############################################## cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4-171- MPI_$3LDFLAGS="$lx_mpi_link_paths $lx_mpi_libs $lx_mpi_link_args" cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4:172: MPI_$3FLAGS=` echo "$MPI_$3FLAGS" | tr '\n' ' ' | sed 's/^[[ \t]]*//;s/[[ \t]]*$//' | sed 's/ +/ /g'` cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4:173: MPI_$3LDFLAGS=`echo "$MPI_$3LDFLAGS" | tr '\n' ' ' | sed 's/^[[ \t]]*//;s/[[ \t]]*$//' | sed 's/ +/ /g'` cp2k-7.1/tools/autotools/m4/lx_find_mpi.m4-174- ############################################## cp2k-7.1/tools/autotools/m4/gsl.m4-29- else cp2k-7.1/tools/autotools/m4/gsl.m4:30: GSL_CFLAGS=`$GSL_CONFIG --cflags` cp2k-7.1/tools/autotools/m4/gsl.m4:31: GSL_LIBS=`$GSL_CONFIG --libs` cp2k-7.1/tools/autotools/m4/gsl.m4-32- ############################################## cp2k-7.1/tools/autotools/m4/ax_lib_hdf5.m4-276- dnl Again, pry any remaining -Idir/-Ldir from compiler wrapper cp2k-7.1/tools/autotools/m4/ax_lib_hdf5.m4:277: for arg in `$H5FC -show` cp2k-7.1/tools/autotools/m4/ax_lib_hdf5.m4-278- do ############################################## cp2k-7.1/tools/autotools/m4/pkg.m4-75- PKG_CHECK_EXISTS([$3], cp2k-7.1/tools/autotools/m4/pkg.m4:76: [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` cp2k-7.1/tools/autotools/m4/pkg.m4-77- test "x$?" != "x0" && pkg_failed=yes ], ############################################## cp2k-7.1/tools/autotools/m4/pkg.m4-124- if test $_pkg_short_errors_supported = yes; then cp2k-7.1/tools/autotools/m4/pkg.m4:125: $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` cp2k-7.1/tools/autotools/m4/pkg.m4-126- else cp2k-7.1/tools/autotools/m4/pkg.m4:127: $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` cp2k-7.1/tools/autotools/m4/pkg.m4-128- fi ############################################## cp2k-7.1/tools/autotools/m4/ltsugar.m4-68-m4_define([lt_combine], cp2k-7.1/tools/autotools/m4/ltsugar.m4:69:[m4_if(m4_eval([$# > 3]), [1], cp2k-7.1/tools/autotools/m4/ltsugar.m4-70- [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl ############################################## cp2k-7.1/tools/build_utils/get_revision_number-22- cp2k-7.1/tools/build_utils/get_revision_number:23:REF="`awk '{print $2}' "${GIT_HEAD}"`" cp2k-7.1/tools/build_utils/get_revision_number-24- ############################################## cp2k-7.1/tools/build_utils/get_revision_number-27-if [ -z "${REF}" ] ; then cp2k-7.1/tools/build_utils/get_revision_number:28: echo "git:`head -c 7 "${GIT_HEAD}"`" cp2k-7.1/tools/build_utils/get_revision_number-29-else cp2k-7.1/tools/build_utils/get_revision_number:30: echo "git:`head -c 7 "${GIT_DIR}/${REF}"`" cp2k-7.1/tools/build_utils/get_revision_number-31-fi ############################################## cp2k-7.1/tests/QS/regtest-xc/tidy-4-echo cp2k-7.1/tests/QS/regtest-xc/tidy:5:foreach file (`cvs update -A -P|grep '? '|awk '{print $2}'`) cp2k-7.1/tests/QS/regtest-xc/tidy-6- if ( ${file:e} == 'inp' ) then ############################################## cp2k-7.1/exts/dbcsr/src/acc/libsmm_acc/libcusmm/tune_setup.py-252- cp2k-7.1/exts/dbcsr/src/acc/libsmm_acc/libcusmm/tune_setup.py:253: # Execution cp2k-7.1/exts/dbcsr/src/acc/libsmm_acc/libcusmm/tune_setup.py-254- for exe in all_exe: ############################################## cp2k-7.1/exts/dbcsr/src/cmake/DBCSRConfig.cmake.in-18- cp2k-7.1/exts/dbcsr/src/cmake/DBCSRConfig.cmake.in:19:include("${CMAKE_CURRENT_LIST_DIR}/DBCSRTargets.cmake") ############################################## cp2k-7.1/exts/dbcsr/Makefile-331- rm -rf $(BINDIR) $(LIBDIR) $(PREFIX) cp2k-7.1/exts/dbcsr/Makefile:332: rm -rf `find $(DBCSRHOME) -name "*.pyc"` cp2k-7.1/exts/dbcsr/Makefile:333: rm -rf `find $(DBCSRHOME) -name "*.callgraph"` cp2k-7.1/exts/dbcsr/Makefile-334-OTHER_HELP += "realclean : Remove all files" ############################################## cp2k-7.1/exts/dbcsr/tools/build_utils/fypp/docs/fypp.rst-316- cp2k-7.1/exts/dbcsr/tools/build_utils/fypp/docs/fypp.rst:317: * Line form, starting with ``$:`` (dollar colon):: cp2k-7.1/exts/dbcsr/tools/build_utils/fypp/docs/fypp.rst-318- ############################################## cp2k-7.1/exts/dbcsr/tools/build_utils/fypp/docs/fypp.rst-320- cp2k-7.1/exts/dbcsr/tools/build_utils/fypp/docs/fypp.rst:321: * Inline form, enclosed between ``${`` and ``}$``:: cp2k-7.1/exts/dbcsr/tools/build_utils/fypp/docs/fypp.rst-322- ############################################## cp2k-7.1/exts/dbcsr/tools/build_utils/fypp/docs/fypp.rst-598-A result of a Python expression can be inserted into the code by using eval cp2k-7.1/exts/dbcsr/tools/build_utils/fypp/docs/fypp.rst:599:directives ``$:`` (line form) or ``${`` and ``}$`` (inline form). The expression cp2k-7.1/exts/dbcsr/tools/build_utils/fypp/docs/fypp.rst-600-is evaluated using Python's built-in function `eval()`. If it evaluates to ############################################## cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate-178- cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate:179:cmd=`echo $1 | awk '{ print tolower($0)}'` cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate-180- ############################################## cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate-243- cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate:244:case `echo ${SIMD} | awk '{ print tolower($0)}'` in cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate-245- sse) ############################################## cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate-280- cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate:281:dims_tiny=`echo ${dims_tiny} | tr "\n" " "` # remove \n cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate:282:dims_small=`echo ${dims_small} | tr "\n" " "` # remove \n cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate-283- ############################################## cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate-304-# cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate:305:config_file_name=`basename ${config_file}` cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate-306-work_dir="${base_work_dir}_${config_file_name}" ############################################## cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-106-# Function to run the make command cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash:107:# Execution in several jobs if requested cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-108-# ############################################## cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-167- file=${suffix}_find_${m}_${n}_${k}.out cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash:168: res=`tail -n 1 ${run_dir}/${work_dir}/$file` cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-169- if [ -z "${res}" ]; then cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash:170: res=`tail -n 2 ${run_dir}/${work_dir}/$file` cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-171- fi ############################################## cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-204- printf "%%.f90: \n" cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash:205: printf '\t .././tiny_gen.x `echo $* | awk -F_ '\''{ print $$3" "$$4" "$$5 }'\''`' cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-206- printf " ${transpose_flavor} ${data_type} > \$@ \n\n" ############################################## cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-276- printf "\$(LIBSMM_WORKDIR)/%%.f90: ../${tiny_file} \n" cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash:277: printf '\t .././small_gen.x `echo $* | awk -F_ '\''{ print $$3" "$$4" "$$5 }'\''`' cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-278- printf " ${transpose_flavor} ${data_type} ${SIMD_size} ../${tiny_file} " ############################################## cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-291- printf " libxsmm_" cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash:292: printf '`echo $* | awk -F_ '\''{ print $$6"_"$$7"_"$$8" "$$6" "$$7" "$$8" "$$6" "$$8" "$$6 }'\''` ' cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-293- printf "1 1 0 0 ${SIMD_libxsmm} nopf ${data_libxsmm}" ############################################## cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-349- numsize=$((numsize+1)) cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash:350: maxsize=`echo "$myn $maxsize" | awk '{if ($1>$2) { print $1 } else { print $2 } }'` cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-351- done ############################################## cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-357- eles="(/0" cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash:358: for i in `seq 1 $maxsize` cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-359- do ############################################## cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-520- printf "\$(LIBSMM_WORKDIR)/%%.f90: ../${small_file} ../${tiny_file} \n" cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash:521: printf '\t .././lib_gen.x `echo $* | awk -F_ '\''{ print $$3" "$$4" "$$5 }'\''`' cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-522- printf " ${transpose_flavor} ${data_type} ${SIMD_size} ../${small_file} ../${tiny_file} > \$@\n" ############################################## cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-531- printf " libxsmm_" cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash:532: printf '`echo $* | awk -F_ '\''{ print $$4"_"$$5"_"$$6" "$$4" "$$5" "$$6" "$$4" "$$6" "$$4 }'\''` ' cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-533- printf "1 1 0 0 ${SIMD_libxsmm} nopf ${data_libxsmm}\n" ############################################## cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-603- cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash:604: ndims=`echo ${dims_small} | wc -w` cp2k-7.1/exts/dbcsr/tools/build_libsmm/generate.bash-605- nelements=$((ndims*ndims*ndims)) ############################################## cp2k-7.1/exts/dbcsr/cmake/FindPkgConfig.cmake-39- cp2k-7.1/exts/dbcsr/cmake/FindPkgConfig.cmake:40:include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake) cp2k-7.1/exts/dbcsr/cmake/FindPkgConfig.cmake-41-find_package_handle_standard_args(PkgConfig ############################################## cp2k-7.1/exts/dbcsr/cmake/FindPackageHandleStandardArgs.cmake-131- cp2k-7.1/exts/dbcsr/cmake/FindPackageHandleStandardArgs.cmake:132:include(${CMAKE_CURRENT_LIST_DIR}/FindPackageMessage.cmake) cp2k-7.1/exts/dbcsr/cmake/FindPackageHandleStandardArgs.cmake-133- ############################################## cp2k-7.1/debian/tests/testsuite.sh-12-SUMMARY=$(ls -t TEST-*/summary.txt | head -1) cp2k-7.1/debian/tests/testsuite.sh:13:exit `grep FAILED $SUMMARY | awk '{print $5}'` ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-307- else cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:308: e1=`grep -a "${grep_string}" ${output_old} | tail -1 | ${awk} -v f=${grep_field} '{print $f}'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-309- label="old" ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-311- cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:312: e2=`grep -a "${grep_string}" ${output_new} | tail -1 | ${awk} -v f=${grep_field} '{print $f}'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:313: big=`echo "${e1} ${e2} ${error_tolerance}" | ${awk} '{if($2==0){v=sqrt(($1-$2)^2)}else{v=sqrt((($1-$2)/$2)^2)}; if (v>$3) printf("%16.8e",v); else printf("0") ;}'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-314- ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-378- cp TEST_FILES_RESET ${dir_last}/${dir}/TEST_FILES_RESET cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:379: nreset=`grep '<' ${dir_test}/${dir}/TEST_FILES_RESET.diff | grep -v '#' | ${awk} '{c=c+1}END{print c}'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-380- for ((itest=1;itest<=nreset;itest++)); cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-381- do cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:382: reset_file=`grep '<' ${dir_test}/${dir}/TEST_FILES_RESET.diff | grep -v '#' | ${awk} -v itest=$itest '{c=c+1;if (c==itest) print $2}'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-383- rm -f ${dir_last}/${dir}/${reset_file}.out ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-393- echo ">>> ${dir_test}/tests/${dir}" > ${dir_test}/status/REGTEST_TASK_TESTS-$task cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:394: ntest=`grep -v "#" TEST_FILES | ${awk} '{c=c+1}END{print c}'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-395- t1=`date +%s` ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-400- this_test="" cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:401: input_file=`grep -v "#" TEST_FILES | ${awk} -v itest=$itest '{c=c+1;if (c==itest) print $1}'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:402: test_type=`grep -v "#" TEST_FILES | ${awk} -v itest=$itest '{c=c+1;if (c==itest) print $2}'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-403- # third field allows numerical tolerances to be read from the TEST_FILES cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-404- # if value does not exist set to the default of 1.0E-14 cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:405: test_tolerance=`grep -v "#" TEST_FILES | ${awk} -v itest=$itest -v def_err_tol=$default_err_tolerance '{c=c+1;if (c==itest) if (NF >= 3) { print $3 } else { print def_err_tol } }'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:406: test_ref_value=`grep -v "#" TEST_FILES | ${awk} -v itest=$itest '{c=c+1;if (c==itest) if (NF == 4) { print $4 } }'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-407- ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-495- cp ${output_file} ${output_last} cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:496: timing=`grep -a "CP2K " ${output_file} | tail -n 1 | ${awk} '{printf("%7.2f",$NF)}'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-497- this_test="${this_test} (${timing} sec)" ;; cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-498- "OK" ) cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:499: timing=`grep -a "CP2K " ${output_file} | tail -n 1 | ${awk} '{printf("%7.2f",$NF)}'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-500- this_test="${this_test} (${timing} sec)" ;; ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-512- esac cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:513: dum=`grep -l "${leak_error_string}" ${output_file}` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-514- fi ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-527- if [ -f ${output_file} ]; then cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:528: test_value=`grep -a "${grep_string}" ${output_file} | tail -1 | ${awk} -v f=${grep_field} '{print $f}'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-529- fi ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-583- if (( cp2k_exit_status == 0)); then cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:584: this_test=`printf "OK (%7.2f sec)" ${timing}` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-585- n_correct=$((n_correct+1)) ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-617- esac cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:618: dum=`grep -l "${leak_error_string}" ${output_file}` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-619- fi ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-643-# kills all processes that have a PID of ppid (good for running jobs), removes the lockfile, and exits with code 8 cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:644:pgid=`ps -o "%r" $$ | grep "[0-9]"` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-645-trapcommand="rm -f ${lockfile} ; kill -- -$pgid >& out.kill ; exit 8" ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-842- else cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:843: compile_warnings=`grep "Warning" ${make_out} | wc -l` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-844- echo "${make} -j $((maxbuildtasks)) ${ARCH_SPEC} VERSION=${cp2k_version} went fine (${compile_warnings} warnings)" ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-869- ################################################################################### cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:870: Ntest_types=`awk -v l=1 -v c=1 'BEGIN{FS="!"}{lr=lr+1;if (lr==l) print $c}' ${test_types_file}` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-871- test_grep[0]="" ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-874- while [ $t -le ${Ntest_types} ]; do cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:875: test_grep[t]=`${awk} -v l=$t -v c=1 'BEGIN{FS="!"}{lr=lr+1;if (lr==l+1) print $c}' ${test_types_file}` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:876: test_col[t]=`${awk} -v l=$t -v c=2 'BEGIN{FS="!"}{lr=lr+1;if (lr==l+1) print $c}' ${test_types_file}` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-877- let t=t+1 ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-935- if [[ $doretest == "yes" ]]; then cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:936: last_test_dir=`ls ${dir_out} | grep ^TEST-${dir_triplet}-${cp2k_version}- | tail -2 | head -1` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-937- if [[ "${testdir}" == "${last_test_dir}" ]]; then ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-947- else cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:948: retest_dirs=`grep .inp.out ${dir_out}/${last_test_dir}/error_summary | awk -F/ '{ test = 0; for (i = 1; i < NF; i++) { if (test == 1) { printf "%s/", $i } if ($i ~ /TEST/) test = 1; } printf "\n" }' | sort | sed 's/\/$//' | awk '!x[$0]++'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-949- for t in ${retest_dirs}; do ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-964- # cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:965: cp2kflags=`${cp2k_prefix} --version ${cp2k_postfix} < /dev/null 2>&1 | grep cp2kflags ` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-966- echo "CP2K supports: $cp2kflags" ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-968- # get a list of regtest directories cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:969: dirs=`cat ${dir_test}/tests/TEST_DIRS | grep -v "#" | awk '{print $1}'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-970- ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1020- featurematch="yes" cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:1021: features_required=`cat ${dir_test}/tests/TEST_DIRS | grep -v "#" | awk -v dir="$dir" '{if ($1==dir) for(i=2;i<=NF;i++) printf("%s ",$i)}'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1022- for fr in $features_required ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1029- else cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:1030: res=`echo "" | awk -v mpiranks=$numprocs "{print !($fr)}"` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1031- fi ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1076- idir=$((idir+1)) cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:1077: ntest=`grep -v "#" ${dir_test}/tests/${dir}/TEST_FILES | ${awk} '{c=c+1}END{print c}'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1078- for ((itest=1;itest<=ntest;itest++)); cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1079- do cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:1080: input_file=`grep -v "#" ${dir_test}/tests/${dir}/TEST_FILES | ${awk} -v itest=$itest '{c=c+1;if (c==itest) print $1}'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1081- output_file=${dir_test}/${dir}/${input_file}.out ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1128- sleep 0.1 cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:1129: runningtasks=`ls -1 ${dir_test}/status/REGTEST_RUNNING-* 2>/dev/null | wc -l` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1130- done ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1146- file=${dir_test}/status/REGTEST_TASK_RESULT-$task cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:1147: tmp=`awk '{print $1}' $file` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1148- n_runtime_error=$((n_runtime_error+tmp)) cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:1149: tmp=`awk '{print $2}' $file` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1150- n_wrong_results=$((n_wrong_results+tmp)) cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:1151: tmp=`awk '{print $3}' $file` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1152- n_correct=$((n_correct+tmp)) cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:1153: tmp=`awk '{print $4}' $file` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1154- n_new=$((n_new+tmp)) cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:1155: tmp=`awk '{print $5}' $file` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1156- n_tests=$((n_tests+tmp)) ############################################## cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1179- gfortran*) cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:1180: n_leaking_tests=`grep "XXXXXXXX" ${memory_description_file} | wc | ${awk} '{print $1}'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest:1181: n_leaks=`grep "SUMMARY" ${memory_description_file} | ${awk} 'BEGIN{n=0}{n=n+$7}END{print n}'` cp2k-7.1/.pc/python3.patch/tools/regtesting/do_regtest-1182- printf "Number of LEAKING tests %d\n" ${n_leaking_tests} | tee -a ${summary} ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-307- else cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:308: e1=`grep -a "${grep_string}" ${output_old} | tail -1 | ${awk} -v f=${grep_field} '{print $f}'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-309- label="old" ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-311- cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:312: e2=`grep -a "${grep_string}" ${output_new} | tail -1 | ${awk} -v f=${grep_field} '{print $f}'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:313: big=`echo "${e1} ${e2} ${error_tolerance}" | ${awk} '{if($2==0){v=sqrt(($1-$2)^2)}else{v=sqrt((($1-$2)/$2)^2)}; if (v>$3) printf("%16.8e",v); else printf("0") ;}'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-314- ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-378- cp TEST_FILES_RESET ${dir_last}/${dir}/TEST_FILES_RESET cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:379: nreset=`grep '<' ${dir_test}/${dir}/TEST_FILES_RESET.diff | grep -v '#' | ${awk} '{c=c+1}END{print c}'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-380- for ((itest=1;itest<=nreset;itest++)); cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-381- do cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:382: reset_file=`grep '<' ${dir_test}/${dir}/TEST_FILES_RESET.diff | grep -v '#' | ${awk} -v itest=$itest '{c=c+1;if (c==itest) print $2}'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-383- rm -f ${dir_last}/${dir}/${reset_file}.out ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-393- echo ">>> ${dir_test}/tests/${dir}" > ${dir_test}/status/REGTEST_TASK_TESTS-$task cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:394: ntest=`grep -v "#" TEST_FILES | ${awk} '{c=c+1}END{print c}'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-395- t1=`date +%s` ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-400- this_test="" cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:401: input_file=`grep -v "#" TEST_FILES | ${awk} -v itest=$itest '{c=c+1;if (c==itest) print $1}'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:402: test_type=`grep -v "#" TEST_FILES | ${awk} -v itest=$itest '{c=c+1;if (c==itest) print $2}'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-403- # third field allows numerical tolerances to be read from the TEST_FILES cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-404- # if value does not exist set to the default of 1.0E-14 cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:405: test_tolerance=`grep -v "#" TEST_FILES | ${awk} -v itest=$itest -v def_err_tol=$default_err_tolerance '{c=c+1;if (c==itest) if (NF >= 3) { print $3 } else { print def_err_tol } }'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:406: test_ref_value=`grep -v "#" TEST_FILES | ${awk} -v itest=$itest '{c=c+1;if (c==itest) if (NF == 4) { print $4 } }'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-407- ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-495- cp ${output_file} ${output_last} cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:496: timing=`grep -a "CP2K " ${output_file} | tail -n 1 | ${awk} '{printf("%7.2f",$NF)}'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-497- this_test="${this_test} (${timing} sec)" ;; cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-498- "OK" ) cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:499: timing=`grep -a "CP2K " ${output_file} | tail -n 1 | ${awk} '{printf("%7.2f",$NF)}'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-500- this_test="${this_test} (${timing} sec)" ;; ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-512- esac cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:513: dum=`grep -l "${leak_error_string}" ${output_file}` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-514- fi ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-527- if [ -f ${output_file} ]; then cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:528: test_value=`grep -a "${grep_string}" ${output_file} | tail -1 | ${awk} -v f=${grep_field} '{print $f}'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-529- fi ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-583- if (( cp2k_exit_status == 0)); then cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:584: this_test=`printf "OK (%7.2f sec)" ${timing}` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-585- n_correct=$((n_correct+1)) ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-617- esac cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:618: dum=`grep -l "${leak_error_string}" ${output_file}` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-619- fi ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-643-# kills all processes that have a PID of ppid (good for running jobs), removes the lockfile, and exits with code 8 cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:644:pgid=`ps -o "%r" $$ | grep "[0-9]"` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-645-trapcommand="rm -f ${lockfile} ; kill -- -$pgid >& out.kill ; exit 8" ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-842- else cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:843: compile_warnings=`grep "Warning" ${make_out} | wc -l` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-844- echo "${make} -j $((maxbuildtasks)) ${ARCH_SPEC} VERSION=${cp2k_version} went fine (${compile_warnings} warnings)" ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-869- ################################################################################### cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:870: Ntest_types=`awk -v l=1 -v c=1 'BEGIN{FS="!"}{lr=lr+1;if (lr==l) print $c}' ${test_types_file}` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-871- test_grep[0]="" ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-874- while [ $t -le ${Ntest_types} ]; do cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:875: test_grep[t]=`${awk} -v l=$t -v c=1 'BEGIN{FS="!"}{lr=lr+1;if (lr==l+1) print $c}' ${test_types_file}` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:876: test_col[t]=`${awk} -v l=$t -v c=2 'BEGIN{FS="!"}{lr=lr+1;if (lr==l+1) print $c}' ${test_types_file}` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-877- let t=t+1 ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-935- if [[ $doretest == "yes" ]]; then cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:936: last_test_dir=`ls ${dir_out} | grep ^TEST-${dir_triplet}-${cp2k_version}- | tail -2 | head -1` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-937- if [[ "${testdir}" == "${last_test_dir}" ]]; then ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-947- else cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:948: retest_dirs=`grep .inp.out ${dir_out}/${last_test_dir}/error_summary | awk -F/ '{ test = 0; for (i = 1; i < NF; i++) { if (test == 1) { printf "%s/", $i } if ($i ~ /TEST/) test = 1; } printf "\n" }' | sort | sed 's/\/$//' | awk '!x[$0]++'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-949- for t in ${retest_dirs}; do ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-964- # cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:965: cp2kflags=`${cp2k_prefix} --version ${cp2k_postfix} < /dev/null 2>&1 | grep cp2kflags ` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-966- echo "CP2K supports: $cp2kflags" ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-968- # get a list of regtest directories cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:969: dirs=`cat ${dir_test}/tests/TEST_DIRS | grep -v "#" | awk '{print $1}'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-970- ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1020- featurematch="yes" cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:1021: features_required=`cat ${dir_test}/tests/TEST_DIRS | grep -v "#" | awk -v dir="$dir" '{if ($1==dir) for(i=2;i<=NF;i++) printf("%s ",$i)}'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1022- for fr in $features_required ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1029- else cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:1030: res=`echo "" | awk -v mpiranks=$numprocs "{print !($fr)}"` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1031- fi ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1076- idir=$((idir+1)) cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:1077: ntest=`grep -v "#" ${dir_test}/tests/${dir}/TEST_FILES | ${awk} '{c=c+1}END{print c}'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1078- for ((itest=1;itest<=ntest;itest++)); cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1079- do cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:1080: input_file=`grep -v "#" ${dir_test}/tests/${dir}/TEST_FILES | ${awk} -v itest=$itest '{c=c+1;if (c==itest) print $1}'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1081- output_file=${dir_test}/${dir}/${input_file}.out ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1128- sleep 0.1 cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:1129: runningtasks=`ls -1 ${dir_test}/status/REGTEST_RUNNING-* 2>/dev/null | wc -l` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1130- done ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1146- file=${dir_test}/status/REGTEST_TASK_RESULT-$task cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:1147: tmp=`awk '{print $1}' $file` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1148- n_runtime_error=$((n_runtime_error+tmp)) cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:1149: tmp=`awk '{print $2}' $file` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1150- n_wrong_results=$((n_wrong_results+tmp)) cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:1151: tmp=`awk '{print $3}' $file` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1152- n_correct=$((n_correct+tmp)) cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:1153: tmp=`awk '{print $4}' $file` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1154- n_new=$((n_new+tmp)) cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:1155: tmp=`awk '{print $5}' $file` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1156- n_tests=$((n_tests+tmp)) ############################################## cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1179- gfortran*) cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:1180: n_leaking_tests=`grep "XXXXXXXX" ${memory_description_file} | wc | ${awk} '{print $1}'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest:1181: n_leaks=`grep "SUMMARY" ${memory_description_file} | ${awk} 'BEGIN{n=0}{n=n+$7}END{print n}'` cp2k-7.1/.pc/testsuite_output.patch/tools/regtesting/do_regtest-1182- printf "Number of LEAKING tests %d\n" ${n_leaking_tests} | tee -a ${summary}