从源安装Petsc,指定的destDir与当前的PETSC_DIR / PETSC_ARCH相同

时间:2017-07-26 16:01:23

标签: macos unix makefile petsc

我正尽力从源头安装petsc。这就是我的所作所为:

$ git clone -b maint https://bitbucket.org/petsc/petsc petsc
$ cd petsc/
$ pwd
/Users/kilojoules/install_petsc/petsc
$ export PETSC_DIR=/Users/kilojoules/install_petsc/petsc
$ make 
   # everything runs fine
$ make install
*** Using PETSC_DIR=/Users/kilojoules/install_petsc/petsc PETSC_ARCH=arch-darwin-c-debug ***
********************************************************************
Incorrect prefix usage. Specified destDir same as current PETSC_DIR/PETSC_ARCH
********************************************************************
make: *** [install] Error 1

我不明白我做错了什么。 Petsc documentation没有说明指定目标目录。当我make all时,它会提示我执行make test,这会提示我执行make streams,这不会提示我做任何其他操作。如何从源代码完成此软件包的安装?有没有办法指定安装目的地?

1 个答案:

答案 0 :(得分:0)

如果要设置目标目录,请使用前缀。否则,mae install没有意义,因为您已将其安装在目标目录中。

./configure --prefix=/usr/local/petsc
make all
make install