0

我正在尽我所能从源代码安装 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文档没有说明指定目标目录。当我这样做时make all,它会提示我做 a make test,这会提示我做 a make streams,而不会提示我做任何其他事情。我怎样才能完成从源代码安装这个包?有没有办法指定安装目的地?

4

1 回答 1

0

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

./configure --prefix=/usr/local/petsc
make all
make install
于 2017-07-26T22:06:04.493 回答