<div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr">My apologies, as usual, this was in issue with defining the correct paths to libraries in the include file (make.inc). For anyone interested, I am copying the make.inc file below for what worked on macOS 10.13.6 and 10.14 using the most recent Intel Fortran compilers and mpich. Several libraries from the most recent Intel compiler suite were missing and required manual installation after the parallel studio download (compilers_and_libraries_2019.4.233, update 4), which, with the correct statements in the make.inc resulted in a successful parallel compilation on a MacBook Pro.</div><div dir="ltr"><br></div><div dir="ltr">./configure did not find any of the installed libraries despite defining explicit paths to MKL libs, so manual input did the trick. </div><div dir="ltr"><br></div><div dir="ltr"><br></div><div dir="ltr">--Begin make.inc--<br><div><div><br></div><div># compilation rules</div><div><br></div><div>.SUFFIXES :</div><div>.SUFFIXES : .o .c .f .f90</div><div><br></div><div># most fortran compilers can directly preprocess c-like directives: use</div><div># <span class="gmail-Apple-tab-span" style="white-space:pre"> </span>$(MPIF90) $(F90FLAGS) -c $<</div><div># if explicit preprocessing by the C preprocessor is needed, use:</div><div># <span class="gmail-Apple-tab-span" style="white-space:pre"> </span>$(CPP) $(CPPFLAGS) $< -o $*.F90</div><div>#<span class="gmail-Apple-tab-span" style="white-space:pre"> </span>$(MPIF90) $(F90FLAGS) -c $*.F90 -o $*.o</div><div># remember the tabulator in the first column !!!</div><div><br></div><div>.f90.o:</div><div><span class="gmail-Apple-tab-span" style="white-space:pre"> </span>$(MPIF90) $(F90FLAGS) -c $<</div><div><br></div><div># .f.o and .c.o: do not modify</div><div><br></div><div>.f.o:</div><div><span class="gmail-Apple-tab-span" style="white-space:pre"> </span>$(F77) $(FFLAGS) -c $<</div><div><br></div><div>.c.o:</div><div><span class="gmail-Apple-tab-span" style="white-space:pre"> </span>$(CC) $(CFLAGS) -c $<</div><div><br></div><div><br></div><div><br></div><div># Top QE directory, useful for locating libraries, linking QE with plugins</div><div># The following syntax should always point to TOPDIR:</div><div>TOPDIR = $(dir $(abspath $(filter %make.inc,$(MAKEFILE_LIST))))</div><div># if it doesn't work, uncomment the following line (edit if needed):</div><div><br></div><div># TOPDIR = /Users/wjid/qe</div><div><br></div><div># DFLAGS = precompilation options (possible arguments to -D and -U)</div><div># used by the C compiler and preprocessor</div><div># To use libxc (v>=3.0.1), add -D__LIBXC to DFLAGS</div><div># See include/defs.h.README for a list of options and their meaning</div><div># With the exception of IBM xlf, FDFLAGS = $(DFLAGS)</div><div># For IBM xlf, FDFLAGS is the same as DFLAGS with separating commas</div><div><br></div><div># MANUAL_DFLAGS = additional precompilation option(s), if desired</div><div># BEWARE: it does not work for IBM xlf! Manually edit FDFLAGS</div><div>MANUAL_DFLAGS =</div><div>DFLAGS = -D__FFTW -D__MPI -D__SCALAPACK</div><div>FDFLAGS = $(DFLAGS) $(MANUAL_DFLAGS)</div><div><br></div><div># IFLAGS = how to locate directories with *.h or *.f90 file to be included</div><div># typically -I$(TOPDIR)/include -I/some/other/directory/</div><div># the latter contains .e.g. files needed by FFT libraries</div><div># for libxc add -I/path/to/libxc/include/</div><div><br></div><div>IFLAGS = -I$(TOPDIR)/include -I$(TOPDIR)/FoX/finclude -I$(TOPDIR)/S3DE/iotk/include/</div><div><br></div><div># MOD_FLAG = flag used by f90 compiler to locate modules</div><div><br></div><div>MOD_FLAG = -I</div><div><br></div><div># BASEMOD_FLAGS points to directories containing basic modules,</div><div># while BASEMODS points to the corresponding module libraries</div><div># Each Makefile can add directories to MODFLAGS and libraries to QEMODS</div><div><br></div><div>BASEMOD_FLAGS= $(MOD_FLAG)$(TOPDIR)/iotk/src \</div><div> $(MOD_FLAG)$(TOPDIR)/Modules \</div><div> $(MOD_FLAG)$(TOPDIR)/FFTXlib \</div><div><span class="gmail-Apple-tab-span" style="white-space:pre"> </span> $(MOD_FLAG)$(TOPDIR)/LAXlib \</div><div><span class="gmail-Apple-tab-span" style="white-space:pre"> </span> $(MOD_FLAG)$(TOPDIR)/UtilXlib \</div><div><span class="gmail-Apple-tab-span" style="white-space:pre"> </span> $(MOD_FLAG)$(TOPDIR)/FoX/finclude</div><div><br></div><div># Compilers: fortran-90, fortran-77, C</div><div># If a parallel compilation is desired, MPIF90 should be a fortran-90</div><div># compiler that produces executables for parallel execution using MPI</div><div># (such as for instance mpif90, mpf90, mpxlf90,...);</div><div># otherwise, an ordinary fortran-90 compiler (f90, g95, xlf90, ifort,...)</div><div># If you have a parallel machine but no suitable candidate for MPIF90,</div><div># try to specify the directory containing "mpif.h" in IFLAGS</div><div># and to specify the location of MPI libraries in MPI_LIBS</div><div><br></div><div>MPIF90 = mpif90</div><div>F90 = ifort</div><div>CC = gcc</div><div>F77 = ifort</div><div><br></div><div># GPU architecture (Kepler: 35, Pascal: 60, Volta: 70 )</div><div>GPU_ARCH=</div><div><br></div><div># CUDA runtime (Pascal: 8.0, Volta: 9.0)</div><div>CUDA_RUNTIME=</div><div><br></div><div># CUDA F90 Flags</div><div>CUDA_F90FLAGS=</div><div><br></div><div># C preprocessor and preprocessing flags - for explicit preprocessing,</div><div># if needed (see the compilation rules above)</div><div># preprocessing flags must include DFLAGS and IFLAGS</div><div><br></div><div>CPP = cpp</div><div>CPPFLAGS = -P -traditional $(DFLAGS) $(IFLAGS)</div><div><br></div><div># compiler flags: C, F90, F77</div><div># C flags must include DFLAGS and IFLAGS</div><div># F90 flags must include MODFLAGS, IFLAGS, and FDFLAGS with appropriate syntax</div><div><br></div><div>CFLAGS = -O3 $(DFLAGS) $(IFLAGS)</div><div>F90FLAGS = $(FFLAGS) -nomodule -fpp $(FDFLAGS) $(CUDA_F90FLAGS) $(IFLAGS) $(MODFLAGS)</div><div>FFLAGS = -O2 -assume byterecl -g -traceback</div><div><br></div><div># compiler flags without optimization for fortran-77</div><div># the latter is NEEDED to properly compile dlamch.f, used by lapack</div><div><br></div><div>FFLAGS_NOOPT = -O0 -assume byterecl -g -traceback</div><div><br></div><div># compiler flag needed by some compilers when the main program is not fortran</div><div># Currently used for Yambo</div><div><br></div><div>FFLAGS_NOMAIN = -nofor_main</div><div><br></div><div># Linker, linker-specific flags (if any)</div><div># Typically LD coincides with F90 or MPIF90, LD_LIBS is empty</div><div># for libxc, set LD_LIBS=-L/path/to/libxc/lib/ -lxcf90 -lxc</div><div><br></div><div>LD = mpif90</div><div>LDFLAGS = </div><div>LD_LIBS = </div><div><br></div><div># External Libraries (if any) : blas, lapack, fft, MPI</div><div><br></div><div># If you have nothing better, use the local copy via "--with-netlib" :</div><div># BLAS_LIBS = /your/path/to/espresso/LAPACK/blas.a</div><div># BLAS_LIBS_SWITCH = internal</div><div><br></div><div>BLAS_LIBS = /opt/intel/compilers_and_libraries_2019.4.233/mac/mkl/lib/libmkl_blas95_ilp64.a /opt/intel/compilers_and_libraries_2019.4.233/mac/mkl/lib/libmkl_lapack95_ilp64.a -L/opt/intel/compilers_and_libraries_2019.4.233/mac/mkl/lib/ -lmkl_intel_ilp64 -lmkl_intel_thread -lmkl_core -lpthread -lm -ldl</div><div>BLAS_LIBS_SWITCH = external</div><div><br></div><div># If you have nothing better, use the local copy via "--with-netlib" :</div><div># LAPACK_LIBS = /your/path/to/espresso/LAPACK/lapack.a</div><div># LAPACK_LIBS_SWITCH = internal</div><div># For IBM machines with essl (-D__ESSL): load essl BEFORE lapack !</div><div># remember that LAPACK_LIBS precedes BLAS_LIBS in loading order</div><div><br></div><div>LAPACK_LIBS = /opt/intel/compilers_and_libraries_2019.4.233/mac/mkl/lib/libmkl_blas95_ilp64.a /opt/intel/compilers_and_libraries_2019.4.233/mac/mkl/lib/libmkl_lapack95_ilp64.a -L/opt/intel/compilers_and_libraries_2019.4.233/mac/mkl/lib/ -lmkl_intel_ilp64 -lmkl_intel_thread -lmkl_core -lpthread -lm -ldl</div><div>LAPACK_LIBS_SWITCH = external</div><div><br></div><div>SCALAPACK_LIBS = /opt/intel/compilers_and_libraries_2019.4.233/mac/mkl/lib/libmkl_blas95_ilp64.a /opt/intel/compilers_and_libraries_2019.4.233/mac/mkl/lib/libmkl_lapack95_ilp64.a -L/opt/intel/compilers_and_libraries_2019.4.233/mac/mkl/lib/ -lmkl_scalapack_ilp64 -lmkl_intel_ilp64 -lmkl_intel_thread -lmkl_core -lmkl_blacs_mpich_ilp64 -lpthread -lm -ldl</div><div><br></div><div># nothing needed here if the the internal copy of FFTW is compiled</div><div># (needs -D__FFTW in DFLAGS)</div><div><br></div><div>FFT_LIBS = -L/opt/intel/compilers_and_libraries_2019.4.233/mac/mkl/lib/libfftw3xf_gnu.a</div><div><br></div><div># HDF5</div><div>HDF5_LIB = </div><div>FOX_LIB = -L$(TOPDIR)/FoX/lib -lFoX_dom -lFoX_sax -lFoX_wxml -lFoX_common\</div><div> -lFoX_utils -lFoX_fsys </div><div>FOX_FLAGS = </div><div># For parallel execution, the correct path to MPI libraries must</div><div># be specified in MPI_LIBS (except for IBM if you use mpxlf)</div><div><br></div><div>MPI_LIBS = </div><div><br></div><div># IBM-specific: MASS libraries, if available and if -D__MASS is defined in FDFLAGS</div><div><br></div><div>MASS_LIBS = </div><div><br></div><div># CUDA libraries</div><div>CUDA_LIBS=</div><div>CUDA_EXTLIBS = </div><div><br></div><div># ar command and flags - for most architectures: AR = ar, ARFLAGS = ruv</div><div><br></div><div>AR = ar</div><div>ARFLAGS = ruv</div><div><br></div><div># ranlib command. If ranlib is not needed (it isn't in most cases) use</div><div># RANLIB = echo</div><div><br></div><div>RANLIB = ranlib -c</div><div><br></div><div># all internal and external libraries - do not modify</div><div><br></div><div>FLIB_TARGETS = all</div><div><br></div><div>LIBOBJS = $(TOPDIR)/clib/clib.a $(TOPDIR)/iotk/src/libiotk.a</div><div>LIBXC_LIBS = </div><div>QELIBS = $(CUDA_LIBS) $(SCALAPACK_LIBS) $(LAPACK_LIBS) $(FOX_LIB) $(FFT_LIBS) $(BLAS_LIBS) $(MPI_LIBS) $(MASS_LIBS) $(HDF5_LIB) $(LIBXC_LIBS) $(LD_LIBS)</div><div><br></div><div># wget or curl - useful to download from network</div><div>WGET = curl -o</div><div><br></div><div># Install directory - "make install" copies *.x executables there</div><div>PREFIX = /usr/local</div><div><br></div><div>--End make.inc--</div><div><br></div></div></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Aug 9, 2019 at 2:45 PM Will DeBenedetti <<a href="mailto:wjd74@cornell.edu">wjd74@cornell.edu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">
<div style="word-wrap:break-word">
<div style="margin:0px;font-stretch:normal;line-height:normal">All,</div>
<div style="margin:0px;font-stretch:normal;line-height:normal"><br>
</div>
<div style="margin:0px;font-stretch:normal;line-height:normal">I am attempting to compile Quantum Espresso v6.4.1 against MPICH and the iFort Intel Fortan compiler suite and am running into an odd error that I have not seen before, I am pasting
a truncated undefined symbol error below. I am also listing my machine info and compiler info.</div>
<div style="margin:0px;font-stretch:normal;line-height:normal"><br>
</div>
<div style="margin:0px;font-stretch:normal;line-height:normal"><b>System Info:</b></div>
<div style="margin:0px;font-stretch:normal;line-height:normal">
<div style="margin:0px;font-stretch:normal;line-height:normal"><span style="font-variant-ligatures:no-common-ligatures">Macbook Pro 11,2</span></div>
</div>
<div style="margin:0px;font-stretch:normal;line-height:normal">
<div style="margin:0px">OS:Macintosh OS X</div>
<div style="margin:0px">OSVERSION:10.14.5</div>
<div style="margin:0px">
<div style="margin:0px;font-stretch:normal;line-height:normal"><span style="font-variant-ligatures:no-common-ligatures">Darwin
<a href="http://dhcp-ccc-6847.redrover.cornell.edu" target="_blank">dhcp-ccc-6847.redrover.cornell.edu</a> 18.6.0 Darwin Kernel Version 18.6.0: Thu Apr 25 23:16:27 PDT 2019; root:xnu-4903.261.4~2/RELEASE_X86_64 x86_64</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal"><span style="font-variant-ligatures:no-common-ligatures">Intel(R) Core(TM) i7-4750HQ CPU @ 2.00GHz</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal"><span style="font-variant-ligatures:no-common-ligatures"><br>
</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal"><span style="font-variant-ligatures:no-common-ligatures"><b>Intel Compiler</b></span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal"><span style="font-variant-ligatures:no-common-ligatures">Intel compilers_and_libraries_2019.4.233</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal"><br>
</div>
<div style="margin:0px;font-stretch:normal;line-height:normal"><span style="font-style:normal">The output from the command $make PW is below:</span></div>
<div style="font-family:Menlo;margin:0px;font-stretch:normal;line-height:normal">
<span style="font-variant-ligatures:no-common-ligatures"><br>
</span></div>
<div style="font-family:Menlo;margin:0px;font-stretch:normal;line-height:normal">
<br>
</div>
<div style="font-family:Menlo">Compiler:compilers_and_libraries_2019.4.233 </div>
</div>
</div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures">Undefined symbols for architecture x86_64:</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> "_dfti_commit_descriptor_external", referenced from:</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cft_1z_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cft_2xy_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cfft3d_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> "_dfti_compute_backward_z", referenced from:</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cft_2xy_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cfft3d_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> "_dfti_compute_backward_zz", referenced from:</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cft_1z_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> "_dfti_compute_forward_z", referenced from:</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cft_2xy_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cfft3d_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> "_dfti_compute_forward_zz", referenced from:</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cft_1z_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> "_dfti_create_descriptor_1d", referenced from:</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cft_1z_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> "_dfti_create_descriptor_highd", referenced from:</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cft_2xy_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cfft3d_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> "_dfti_free_descriptor_external", referenced from:</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cft_1z_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cft_2xy_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cfft3d_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> "_dfti_set_value_dblval", referenced from:</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cft_1z_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cft_2xy_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cfft3d_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> "_dfti_set_value_intval", referenced from:</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cft_1z_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cft_2xy_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"> _fft_scalar_dfti_mp_cfft3d_ in libqefft.a(fft_scalar.DFTI.o)</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures">ld: symbol(s) not found for architecture x86_64</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures">make[2]: *** [pw.x] Error 1</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures">make[1]: *** [pw] Error 1</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures">make: *** [pw] Error 1</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"><br>
</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal"><span style="font-variant-ligatures:no-common-ligatures">I will note that I receive a very similar message when attempting to compile VASP against the same compiler suite,
although this message is returned from the file: fftw3xf.lst</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"><br>
</span></div>
<div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures">
<div style="font-family:Helvetica;margin:0px;font-stretch:normal;line-height:normal">
All of my Paths are set to the correct libraries <i>etc</i></div>
<div style="font-family:Helvetica;margin:0px;font-stretch:normal;line-height:normal">
<br>
</div>
<div style="font-family:Helvetica;margin:0px;font-stretch:normal;line-height:normal">
Many thanks,</div>
</span></div>
<div><span style="font-variant-ligatures:no-common-ligatures"><br>
</span></div>
<div><span style="font-variant-ligatures:no-common-ligatures">Will DeBenedetti</span></div>
<div><span style="font-variant-ligatures:no-common-ligatures">Cornell University</span></div>
</div>
_______________________________________________<br>
Quantum ESPRESSO is supported by MaX (<a href="http://www.max-centre.eu/quantum-espresso" rel="noreferrer" target="_blank">www.max-centre.eu/quantum-espresso</a>)<br>
users mailing list <a href="mailto:users@lists.quantum-espresso.org" target="_blank">users@lists.quantum-espresso.org</a><br>
<a href="https://lists.quantum-espresso.org/mailman/listinfo/users" rel="noreferrer" target="_blank">https://lists.quantum-espresso.org/mailman/listinfo/users</a></blockquote></div></div></div>