突然间,我无法运行任何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}
有谁知道出了什么问题?