Page 1 of 1

Error while compiling VASP.6.3.2

Posted: Fri Jan 06, 2023 11:26 am
by neetu_kumari
How to resolve these errors? Please help us.

make[2]: Entering directory '/mnt/d/VASP/src/vasp.6.3.2/build/std'
mpif90 -ffree-form -ffree-line-length-none -w -ffpe-summary=none -march=native -O2 -I/mnt/d/VASP/Orig_Files/Additional_Files/fftw-2.1.5/include -c wannier_interpol.f90
f951: Warning: Nonexistent include directory ‘/mnt/d/VASP/Orig_Files/Additional_Files/fftw-2.1.5/include’ [-Wmissing-include-dirs]
wannier_interpol.F:741: Error: Can't open included file 'fftw3.f'
make[2]: *** [makefile:166: wannier_interpol.o] Error 1
make[2]: Leaving directory '/mnt/d/VASP/src/vasp.6.3.2/build/std'
cp: cannot stat 'vasp': No such file or directory
make[1]: *** [makefile:129: all] Error 1
make[1]: Leaving directory '/mnt/d/VASP/src/vasp.6.3.2/build/std'
make: *** [makefile:17: std] Error 2

Re: Error while compiling VASP.6.3.2

Posted: Sat Jan 07, 2023 12:08 am
by andreas.singraber
Hello!

Well, the compiler tells you that it is unable to open the include directory for the FFTW library:

Code: Select all

f951: Warning: Nonexistent include directory ‘/mnt/d/VASP/Orig_Files/Additional_Files/fftw-2.1.5/include’ [-Wmissing-include-dirs]
Therefore, the compiler cannot open the fftw3.f file which is necessary to proceed.
Please make sure that the directory above exists and contains a valid installation of the FFTW library.

Best,
Andreas Singraber

Re: Error while compiling VASP.6.3.2

Posted: Sun Jan 08, 2023 4:51 am
by neetu_kumari
Issue resolved, Thanks for your response.