S***P 发帖数: 335 | 1 想装在PC上,现在撞了unix shell
装了visual fortran compiler,但是
始终不知道相对应的makefile
有经验的XDJM支个招,谢了。 |
d*****w 发帖数: 124 | 2 What is the error message when you make?
【在 S***P 的大作中提到】 : 想装在PC上,现在撞了unix shell : 装了visual fortran compiler,但是 : 始终不知道相对应的makefile : 有经验的XDJM支个招,谢了。
|
S***P 发帖数: 335 | 3 我还没有到编译和运行的那一步。
在这之前,先得把相应的makefile 从
build子目录考到source子目录之下,问题
是不知道该用哪一个。
浏览了一下,好像列出的makefile没有是
针对fortran 90 compiler的。
【在 d*****w 的大作中提到】 : What is the error message when you make?
|
d*****w 发帖数: 124 | 4 If you want to run DL-POLY on your PC, the easiest way is using intel fortran
compiler in linux.
Surely you have to modify the original makefile. The typical compile part of
Makefile may look like:
ifc-fftw: dpp
$(MAKE) FC=ifort LD="ifort -O3 -assume underscore -tpp7 -axN -o" \
FFLAGS="-c -O3 -assume underscore -tpp7 -axN" \
CPFLAGS="-D$(STRESS) -DSERIAL -DINTEL -DUNDSCO -D'pointer=integer*8'
-DFFTW" \
LDFLAGS="-lfftw -lsvml -L$(FFTW_LIBRARY)" EX=$(EX) BINROOT=$(B
【在 S***P 的大作中提到】 : 我还没有到编译和运行的那一步。 : 在这之前,先得把相应的makefile 从 : build子目录考到source子目录之下,问题 : 是不知道该用哪一个。 : 浏览了一下,好像列出的makefile没有是 : 针对fortran 90 compiler的。
|