gpt4 book ai didi

visual-studio-2010 - 错误 LNK2019 : unresolved external symbol MPI_INIT referenced in function

转载 作者:行者123 更新时间:2023-12-01 12:52:17 27 4
gpt4 key购买 nike

我正在尝试在 Windows 中首次使用 Visual Studio 2010 和 Intel Composer XE 2011 SP1 的试用版、ifort visual fortran 编译器编译一个名为 FDMNES 的软件包,用于在 Windows 中使用 MPI 进行 X 射线吸收光谱建模与 Intel Parrelel Studio 2011 结合使用。我已经设法使用 64 位版本的 ifort 编译了所有目标文件,但是当需要链接文件时,我收到以下错误:

1>------ Build started: Project: Console2, Configuration: Release x64 ------
1>Linking...
1>main.obj : error LNK2019: unresolved external symbol MPI_INIT referenced in function MAIN__
1>main.obj : error LNK2019: unresolved external symbol MPI_COMM_SIZE referenced in function MAIN__
1>main.obj : error LNK2019: unresolved external symbol MPI_COMM_RANK referenced in function MAIN__
1>general.obj : error LNK2019: unresolved external symbol MPI_BCAST referenced in function RESEAU
1>potential.obj : error LNK2001: unresolved external symbol MPI_BCAST
1>main.obj : error LNK2001: unresolved external symbol MPI_BCAST
......etc
1>x64\Release\Console2.exe : fatal error LNK1120: 7 unresolved externals
1>
1>Build log written to "file://C:\Users\Arturo\Documents\Visual Studio 2010\Projects\Console2\Console2\x64\Release\BuildLog.htm"
1>Console2 - 18 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

我尝试通过添加命令/L"C:\PathtoMPILibrary\"链接到 64 位英特尔 MPI 库以及 MPICH2 64 位库,但无济于事。我也尝试过使用这个 makefile,使用 mingw32 包中的 gmake 运行:

#Make file for the fdmnes package
objects = main.obj clemf0.obj coabs.obj convolution.obj dirac.obj fdm.obj fprime.obj general.obj hubbard.obj lecture.obj mat.obj metric.obj minim.obj potential.obj scf.obj selec.obj spgroup.obj sphere.obj sub_util.obj tab_data.obj tddft.obj tensor.obj
compiler = mpif90 -O3 -c
fdmnes_mpi : $(objects)
mpif90 -o fdmnes_mpi $(objects)
main.obj : main.f
$(compiler) main.f
clemf0.obj : clemf0.f
$(compiler) clemf0.f
.....etc

但是当我运行 gmake 时,出现以下错误:

Intel(R) Visual Fortran Intel(R) 64 Compiler XE for applications running on Intel(R) 64,
Version 12.1.0.233 Build 20110811
Copyright (C) 1985-2011 Intel Corporation. All rights reserved.

ifort: error #10037: could not find 'link'

我已经用尽了论坛,我需要在 64 位 Windows 下用 MPI 编译它。任何帮助将不胜感激!谢谢。

最佳答案

这里微软对Linker Tools Error LNK2019做了一些解释,希望对您有所帮助。
Linker Tools Error LNK2019


解决这个问题的另一种方法是进入项目的属性->链接器->输入->附加
依赖,在这里添加你需要的lib
例如,如果您使用 timeGetDevCaps 函数并且出现 LNK2019 错误,那么您可以将 Winmm.lib 添加到 Additional Dependencies,在那之后,一切都会正常工作。

关于visual-studio-2010 - 错误 LNK2019 : unresolved external symbol MPI_INIT referenced in function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11548902/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com