0

我正在尝试使用Magick++库编译我的 C++ 代码,以使用分布式方式操作图像,openMPI当我尝试编译它时出现一些错误。

这是我的代码:

#include "mpi.h"
#include <stdio.h>
#include <iostream>
#include <Magick++.h>
using namespace std; 
using namespace Magick; 

int main(int argc, char **argv){

int rank, numtask;

InitializeMagick(*argv);

Image image;
try { 
    // Read a file into image object 
    image.read( "test_image.jpg" );
    image.type( GrayscaleType );
    Blob blob; 
    image.magick( "JPEG" ); // Set JPEG output format 
    image.write( &blob );

} 
catch( Exception &error_ ){ 
    cout << "Caught exception: " << error_.what() << endl; 
    return 1; 
 } 

//Now in the "distributed enviroment" I just print an hello world to test it. 
MPI_Init(&argc,&argv);

MPI_Comm_rank(MPI_COMM_WORLD, &rank);
MPI_Comm_size(MPI_COMM_WORLD, &numtask);

cout<<"HelloWorld\n";

MPI_Finalize();

}

这是我在 shell 上输入的命令

mpiCC openmpi_project.cc -o openmpi_project

这是shell的输出

openmpi_project.cc:(.text+0x1d): 未定义引用“Magick::InitializeMagick(char const*)”

openmpi_project.cc:(.text+0x29): 未定义对“Magick::Image::Image()”的引用

openmpi_project.cc:(.text+0x5d): 未定义对“Magick::Image::read(std::string const&)”的引用

openmpi_project.cc:(.text+0x86): 未定义对“Magick::Image::type(MagickCore::ImageType)”的引用

openmpi_project.cc:(.text+0x92): rundefined 对“Magick::Blob::Blob()”的引用

openmpi_project.cc:(.text+0xc6): 未定义对“Magick::Image::magick(std::string const&)”的引用

openmpi_project.cc:(.text+0xf1): 未定义对“Magick::Image::write(Magick::Blob*)”的引用

openmpi_project.cc:(.text+0xfd): 未定义对“Magick::Blob::~Blob()”的引用

openmpi_project.cc:(.text+0x158): 未定义对“Magick::Image::~Image()”的引用

openmpi_project.cc:(.text+0x1d3): 未定义对“Magick::Blob::~Blob()”的引用

openmpi_project.cc:(.text+0x261): 未定义对“Magick::Image::~Image()”的引用

/tmp/ccqFzUdy.o:(.gcc_except_table+0x58): 未定义对“Magick::Exception 的类型信息”的引用

4

1 回答 1

2

ImageMagick 附带配置实用程序。对于 Magick++,此实用程序是Magick++-config. 请参阅API 文档下的使用小节。

LDFLAGS=$(Magick++-config --ldflags)
CXXFLAGS=$(Magick++-config --cxxflags)
$(CC) $CXXFLAGS openmpi_project.cc $LDFLAGS -o openmpi_project

跳转到 MPI编译/链接文档,并将 Magick++ 的附加标志集成到 mpiCC

LDFLAGS=$(Magick++-config --ldflags)
CXXFLAGS=$(Magick++-config --cxxflags)
mpiCC --with-wrapper-cxxflags=$CXXFLAGS openmpi_project.cc \
      --with-wrapper-ldflags=$LDFLAGS -o openmpi_project
于 2015-01-26T12:24:37.293 回答