在mac os 10.9.3 mavericks上运行mpi代码时出错

时间:2014-07-23 22:38:35

标签: architecture makefile mpi osx-mavericks x86-64

突然间,我无法运行任何mpi程序。我尝试运行一个简单的mpi示例,我在网上找到并习惯在我的计算机上工作。

这是示例http://mpitutorial.com/mpi-hello-world/

我输入make时遇到的错误如下

ld: can't write output file: mpi_hello_world for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [mpi_hello_world] Error 1

这是制作文件内容

EXECS=mpi_hello_world
MPICC?=mpicc

all: ${EXECS}

mpi_hello_world: mpi_hello_world.c
 ${MPICC} -o mpi_hello_world mpi_hello_world.c

clean:
    rm ${EXECS}

有谁知道出了什么问题?

0 个答案:

没有答案