我正在尽我所能从源代码安装 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
,而不会提示我做任何其他事情。我怎样才能完成从源代码安装这个包?有没有办法指定安装目的地?