<div dir="ltr">I'm not sure where this error is coming from.  I've compiled CP2K many times and haven't run into this before.  It seems like GFortran is looking for files associated with compile date when creating the executable files.  I've seen this with graph.popt, dbcsr_example_1.popt, dbcsr_example_2.popt, dbcsr_example_3.popt, dbcsr_performance_driver.popt, dbcsr_test_csr_conversions.popt, dbcsr_test_driver.popt, cp2k.popt, and cp2k_shell.popt.  I can manually compile the executable by going to the associated object folder location and compiling manually from the command line.  I'm using the latest 2.6 branch version from the SVN repository (v2.6.2  rev 15893).  All of the executables work after compiling them manually without any issues.  However, when using make ARCH=${ARCH_FILE} VERSION=popt from the makefiles folder I get the following errors:<div><br></div><div><div>gfortran: error: Nov: No such file or directory</div><div>gfortran: error: 18: No such file or directory</div><div>gfortran: error: 18:54:57: No such file or directory</div><div>gfortran: error: EST: No such file or directory</div><div>gfortran: error: 2015\"": No such file or directory</div></div><div><br></div><div><br></div><div>Below is my ARCH file:</div><div>"""</div><div><div>MKL_ROOT = /p/home/apps/intel/composer_xe_2015.3.187/mkl</div><div>MKL_LIB  = $(MKLROOT)/lib/intel64</div><div>MKL_INC  = $(MKLROOT)/include</div><div>FFTW_LIB = /app/COST/fftw3/3.3.4/gnu/lib</div><div>FFTW_INC = /app/COST/fftw3/3.3.4/gnu/include</div><div>CCM_LIB  = /app/ccm/lib</div><div>MPI_INC  = /p/home/apps/sgi/mpt-2.12-sgi712r26/include</div><div>MPI_LIB  = /p/home/apps/sgi/mpt-2.12-sgi712r26/lib</div><div>#</div><div>CC       = gcc</div><div>CPP      =</div><div>FC       = mpif90</div><div>LD       = mpif90</div><div>AR       = ar -r</div><div>CPPFLAGS = -I$(FFTW_INC) -I$(MKLROOT)/include -I$(MKLROOT)/include/intel64/lp64 -I$(MPI_INC)</div><div>DFLAGS   = -D__parallel -D__SCALAPACK -D__BLACS -D__FFTW3 -D__GFORTRAN \</div><div>           -D__HAS_NO_MPI_MOD -D__MKL -D__HAS_smm_dnn -D__HAS_smm_dnt \</div><div>           -D__HAS_smm_dtn -D__HAS_smm_dtt -D__HAS_smm_snn -D__HAS_smm_snt \</div><div>           -D__HAS_smm_stn -D__HAS_smm_stt -D__HAS_smm_vec</div><div>FCFLAGS  = -O3 -m64 -ffast-math -funroll-loops -ftree-vectorize -march=native \</div><div>           -ffree-form  $(DFLAGS)  -g $(CPPFLAGS)</div><div>LDFLAGS  = $(FCFLAGS) -L$(MKL_LIB) -L$(FFTW_LIB) -L$(CCM_LIB) -L$(LD_LIBRARY_PATH)</div><div>LIBS     = $(MKL_LIB)/libmkl_blas95_lp64.a $(MKL_LIB)/libmkl_lapack95_lp64.a  \</div><div>           $(MKL_LIB)/libmkl_scalapack_lp64.a -Wl,--start-group $(MKL_LIB)/libmkl_gf_lp64.a \</div><div>           $(MKL_LIB)/libmkl_core.a $(MKL_LIB)/libmkl_sequential.a $(MKL_LIB)/libmkl_blacs_sgimpt_lp64.a \</div><div>           -Wl,--end-group -lfftw3_threads -lfftw3 -lpthread -lm -lquadmath \</div><div>           $(CCM_LIB)/libsmm_dnn_sgi-ice.gnu.mkl.a $(CCM_LIB)/libsmm_dnt_sgi-ice.gnu.mkl.a \</div><div>           $(CCM_LIB)/libsmm_dtn_sgi-ice.gnu.mkl.a $(CCM_LIB)/libsmm_dtt_sgi-ice.gnu.mkl.a \</div><div>           $(CCM_LIB)/libsmm_snn_sgi-ice.gnu.mkl.a $(CCM_LIB)/libsmm_snt_sgi-ice.gnu.mkl.a \</div><div>           $(CCM_LIB)/libsmm_stn_sgi-ice.gnu.mkl.a $(CCM_LIB)/libsmm_stt_sgi-ice.gnu.mkl.a</div></div><div>"""</div><div><br></div><div><br></div></div>