24小时热门版块排行榜    

查看: 1542  |  回复: 11
当前只显示满足指定条件的回帖,点击这里查看本话题的所有回帖

zhangzhaojin

金虫 (初入文坛)

[求助] siesta编译

`FoX/FoX-config --libs --wcml` -L/home/hu/intel/mkl/10.0.2.018/lib/em64t -lmkl_scalapack_lp64 -L/home/hu/intel/mkl/10.0.2.018/lib/em64t -lmkl_blacs_openmpi_lp64 -L/home/hu/intel/mkl/10.0.2.018/lib/em64t -lmkl_sequential -lmkl_core -L/home/hu/intel/mkl/10.0.2.018/lib/em64t -lmkl_solver_lp64 -lmkl_intel_lp64 -lguide  
/home/hu/intel/mkl/10.0.2.018/lib/em64t/libmkl_scalapack_lp64.a: could not read symbols: File format not recognized
make: *** [siesta] 错误 1
在make时 出现这个问题 我在lib里发现有libmkl_scalapack_lp64.a 但为什么会出现这种情况 请指点 谢谢
回复此楼

» 猜你喜欢

已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

zhangzhaojin

金虫 (初入文坛)

引用回帖:
7楼: Originally posted by 贺仪 at 2011-11-02 13:54:27:
改里面的为这个试试:

BLAS_LIBS=-L/home/hu/intel/mkl/10.0.2.018/lib/em64t -lmkl_solver_lp64 -lmkl_intel_lp64  -lmkl_blacs_openmpi_lp64 -lguide -pthread
LAPACK_LIBS=-L/home/hu/intel/mkl/10.0.2.01 ...

我试了一下 还是一样的错误 但还是谢谢你啊
9楼2011-11-02 14:57:09
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
查看全部 12 个回答

hnuzhoulin

金虫 (小有名气)

【答案】应助回帖

★ ★ ★
franch(金币+3): 谢谢回帖交流 2011-10-31 20:59:54
诶,肯定是库文件问题,
楼主贴一下arch.make文件出栏看看吧

» 本帖已获得的红花(最新10朵)

2楼2011-10-31 14:12:23
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

zhangzhaojin

金虫 (初入文坛)

★ ★
送鲜花一朵
fzx2008(金币+2): 谢谢指教 2011-11-01 21:46:10
引用回帖:
2楼: Originally posted by hnuzhoulin at 2011-10-31 14:12:23:
诶,肯定是库文件问题,
楼主贴一下arch.make文件出栏看看吧

#  
# 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- .
#  
# 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=Ifort(10.1.021)+MKL(10.0.2.018)+OpenMPI(1.2.6)@openSUSE-10.3_X86-64

FPP=
FPP_OUTPUT=  
FC=mpif90
RANLIB=ranlib

SYS=nag

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

FFLAGS= -O2 -i-static   
FFLAGS_DEBUG= -g
LDFLAGS=-Vaxlib
FPPFLAGS= -DFC_HAVE_FLUSH -DFC_HAVE_ABORT -DMPI

ARFLAGS_EXTRA=

FCFLAGS_fixed_f=
FCFLAGS_free_f90=
FPPFLAGS_fixed_F=
FPPFLAGS_free_F90=

BLAS_LIBS=-L/home/hu/intel/mkl/10.0.2.018/lib/em64t -lmkl_solver_lp64
-lmkl_intel_lp64 -lguide
LAPACK_LIBS=-L/home/hu/intel/mkl/10.0.2.018/lib/em64t -lmkl_sequential
-lmkl_core
BLACS_LIBS=-L/home/hu/intel/mkl/10.0.2.018/lib/em64t
-lmkl_blacs_openmpi_lp64
SCALAPACK_LIBS=-L/home/hu/intel/mkl/10.0.2.018/lib/em64t
-lmkl_scalapack_lp64

COMP_LIBS=

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/hu/software/openmpi-1.2.6/include

#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)  $<
3楼2011-11-01 10:39:05
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

hnuzhoulin

金虫 (小有名气)

【答案】应助回帖


zhangzhaojin(金币+2): 2011-11-01 18:53:22
fzx2008(金币+1): 谢谢交流 2011-11-01 21:45:49
COMP_LIBS=dc_lapack.a  liblapack.a libblas.a
SCALAPACK_LIBS=-L/home/zhn/intel/mkl/10.1.0.015/lib/em64t -lmkl_scalapack_lp64 -pthread

第一句你加一下,第二个的话其实最后一个-pthread不加没什么的,你姑且加一下吧。
然后我要说的是你的openmpi是用ifort编译的吗?

mpif90 -v 输出是什么?
4楼2011-11-01 13:14:47
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[考研] 一志愿 南京航空航天大学大学 ,080500材料科学与工程学硕 +4 @taotao 2026-03-20 4/200 2026-03-20 10:37 by EBSD
[考研] 0856调剂,是学校就去 +7 sllhht 2026-03-19 8/400 2026-03-20 09:30 by 每天只摆一小会
[考研] 085410人工智能专硕317求调剂(0854都可以) +4 xbxudjdn 2026-03-18 4/200 2026-03-20 09:07 by 不168
[考博] 东华理工大学化材专业26届硕士博士申请 +8 zlingli 2026-03-13 8/400 2026-03-19 16:32 by 轻松不少随
[考研] 化学求调剂 +3 临泽境llllll 2026-03-17 4/200 2026-03-19 13:59 by houyaoxu
[考研] 一志愿华中科技大学,080502,354分求调剂 +4 守候夕阳CF 2026-03-18 4/200 2026-03-18 22:16 by li123456789.
[考研] 085601专硕,总分342求调剂,地区不限 +5 share_joy 2026-03-16 5/250 2026-03-18 14:48 by haxia
[考研] 311求调剂 +6 26研0 2026-03-15 6/300 2026-03-18 14:43 by haxia
[考研] 收复试调剂生 +4 雨后秋荷 2026-03-18 4/200 2026-03-18 14:16 by elevennnne
[考研] 0854,计算机类招收调剂 +3 胡辣汤放糖 2026-03-15 6/300 2026-03-18 12:09 by 上岸上岸……..
[考研] 303求调剂 +4 睿08 2026-03-17 6/300 2026-03-18 11:01 by Iveryant
[考研] 0703化学调剂 +3 妮妮ninicgb 2026-03-17 3/150 2026-03-18 10:29 by macy2011
[考研] 278求调剂 +5 烟火先于春 2026-03-17 5/250 2026-03-18 08:43 by 星空星月
[考研] 332求调剂 +6 Zz版 2026-03-13 6/300 2026-03-17 17:03 by ruiyingmiao
[基金申请] 今年的国基金是打分制吗? 50+3 zhanghaozhu 2026-03-14 3/150 2026-03-16 17:07 by 北京莱茵润色
[考研] 一志愿211 0703方向310分求调剂 +3 努力奋斗112 2026-03-15 3/150 2026-03-16 16:44 by houyaoxu
[考研] 0703化学调剂 290分有科研经历,论文在投 +7 腻腻gk 2026-03-14 7/350 2026-03-16 10:12 by houyaoxu
[考研] 22408总分284求调剂 +3 InAspic 2026-03-13 3/150 2026-03-15 11:10 by zhq0425
[考研] 289求调剂 +4 这么名字咋样 2026-03-14 6/300 2026-03-14 18:58 by userper
[考研] 一志愿哈工大材料324分求调剂 +5 闫旭东 2026-03-14 5/250 2026-03-14 14:53 by 木瓜膏
信息提示
请填处理意见