24小时热门版块排行榜    

CyRhmU.jpeg
查看: 1133  |  回复: 3

lu_wei07

银虫 (小有名气)

[求助] siesta 安装出错

==> Incorporating information about present compilation (compiler and flags)
make[1]: Entering directory `/home/weilu/siesta2/siesta-3.1/Obj'
/home/weilu/intel/impi/3.2.0.011/bin64/mpif90 -c -g     `FoX/FoX-config --fcflags` -DMPI -DFC_HAVE_FLUSH -DFC_HAVE_ABORT -DTRANSIESTA   compinfo.F90
make[1]: Leaving directory `/home/weilu/siesta2/siesta-3.1/Obj'
#@rm -f compinfo.F90

make[1]: Entering directory `/home/weilu/siesta2/siesta-3.1/Obj/MPI'
/home/weilu/intel/impi/3.2.0.011/bin64/mpif90 -c -g   -I/home/weilu/intel/impi/3.2.0.011/include64/   /home/weilu/siesta2/siesta-3.1/Src/MPI/mpi__include.f90
if [ -z "4 8" ] ; then  make kind_explorer ; fi
The kind numbers for single and double precision reals follow
sh /home/weilu/siesta2/siesta-3.1/Src/MPI/generate.sh "4 8"
===> Generating module files from templates...
4 8
/home/weilu/intel/impi/3.2.0.011/bin64/mpif90 -c -g   -I/home/weilu/intel/impi/3.2.0.011/include64/   Interfaces.f90
/home/weilu/intel/impi/3.2.0.011/bin64/mpif90 -c -g   -I/home/weilu/intel/impi/3.2.0.011/include64/ -DMPI -DFC_HAVE_FLUSH -DFC_HAVE_ABORT   /home/weilu/siesta2/siesta-3.1/Src/MPI/mpi.F
Error: Can't open included file 'V_S.uses'
Error: Can't open included file 'VS.uses'
make[1]: *** [mpi.o] Error 1
make[1]: Leaving directory `/home/weilu/siesta2/siesta-3.1/Obj/MPI'
make: *** [libmpi_f90.a] Error 2
回复此楼

» 收录本帖的淘帖专辑推荐

第一性原理相关文档

» 猜你喜欢

» 本主题相关价值贴推荐,对您同样有帮助:

这只是一场游戏
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

love5264

木虫 (正式写手)

【答案】应助回帖

感谢参与,应助指数 +1
你还是贴出来 make文件 让大家帮你看看吧
谋定而动
2楼2012-07-10 04:20:44
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

lu_wei07

银虫 (小有名气)

#
# This file is part of the SIESTA package.
#
# Copyright (c) Fundacion General Universidad Autonoma de Madrid:
# E.Artacho, J.Gale, A.Garcia, J.Junquera, P.Ordejon, D.Sanchez-Portal
# and J.M.Soler, 1996-2006.
#
# Use of this software constitutes agreement with the full conditions
# given in the SIESTA license, as signed by all legitimate users.
#
.SUFFIXES:
.SUFFIXES: .f .F .o .a .f90 .F90

SIESTA_ARCH=x86_64-unknown-linux-gnu--Intel

FPP=
FPP_OUTPUT=
FC=/home/weilu/intel/impi/3.2.0.011/bin64/mpif90
RANLIB=ranlib

SYS=nag

SP_KIND=4
DP_KIND=8
KINDS=$(SP_KIND) $(DP_KIND)

FFLAGS=-g  
FPPFLAGS=-DMPI -DFC_HAVE_FLUSH -DFC_HAVE_ABORT
LDFLAGS=

ARFLAGS_EXTRA=

FCFLAGS_fixed_f=
FCFLAGS_free_f90=
FPPFLAGS_fixed_F=
FPPFLAGS_free_F90=

#BLAS_LIBS=libblas.a
#LAPACK_LIBS=dc_lapack.a liblapack.a
#BLACS_LIBS=
#SCALAPACK_LIBS=
LIBS=-L/home/weilu/intel/Compiler/11.1/072/mkl/lib/em64t  -lmkl_scalapack_lp64 -lmkl_blacs_intelmpi_lp64  -lmkl_lapack -lmkl_intel_lp64 -lmkl_sequential -lmkl_lapack -lmkl_core -lpthread -i-static
#COMP_LIBS=dc_lapack.a liblapack.a libblas.a

NETCDF_LIBS=
NETCDF_INTERFACE=

#LIBS=$(SCALAPACK_LIBS) $(BLACS_LIBS) $(LAPACK_LIBS) $(BLAS_LIBS) $(NETCDF_LIBS)

#SIESTA needs an F90 interface to MPI
#This will give you SIESTA's own implementation
#If your compiler vendor offers an alternative, you may change
#to it here.
MPI_INTERFACE=libmpi_f90.a
MPI_INCLUDE=/home/weilu/intel/impi/3.2.0.011/include64/
DEFS_MPI=-DMPI


#Dependency rules are created by autoconf according to whether
#discrete preprocessing is necessary or not.
.F.o:
        $(FC) -c $(FFLAGS) $(INCFLAGS) $(FPPFLAGS) $(FPPFLAGS_fixed_F)  $<
.F90.o:
        $(FC) -c $(FFLAGS) $(INCFLAGS) $(FPPFLAGS) $(FPPFLAGS_free_F90) $<
.f.o:
        $(FC) -c $(FFLAGS) $(INCFLAGS) $(FCFLAGS_fixed_f)  $<
.f90.o:
        $(FC) -c $(FFLAGS) $(INCFLAGS) $(FCFLAGS_free_f90)  $<

这是我第二次装siesta,第一次成功了,直接拷贝的第一次的arch.make 感觉没地方要改的啊???
这只是一场游戏
3楼2012-07-10 10:19:02
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

lu_wei07

银虫 (小有名气)

搞定了,这不是arch.make 的问题,VS.uses ,V_S.uses是Obj/MPI 下新生成的,原来的Src/MPI 里面没有,所以我们要做的就是 吧Obj/MPI 下的这两个文件拷贝到Src/MPI ,然后 make 就好了
这只是一场游戏
4楼2012-07-12 11:45:09
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
相关版块跳转 我要订阅楼主 lu_wei07 的主题更新
信息提示
请填处理意见