not related to gamedev

Started by
1 comment, last by holdon 11 years, 12 months ago
Hello everyone! by trying to use MPI to MergeSort i got these kind of errors on Visual Studio 2010 Prof

1>MergeSort2.obj : error LNK2019: unresolved external symbol _MPI_Finalize referenced in function _main
1>MergeSort2.obj : error LNK2019: unresolved external symbol _MPI_Send referenced in function _main
[/quote]
all required lib and .h files directories are set up correctly
thanks
Advertisement
Those errors mean it can't find the definitions for the Finalize and Send MPI functions, which means that you probably aren't linking to the library (or at least the correct library). You can't just set up the directories correctly. You also need to actually link to the libs.
[size=2][ I was ninja'd 71 times before I stopped counting a long time ago ] [ f.k.a. MikeTacular ] [ My Blog ] [ SWFer: Gaplessly looped MP3s in your Flash games ]
i did link the libs and .h files and add mpi.lib to the Additional Dependencies too it's still showing the same errors

This topic is closed to new replies.

Advertisement