从源安装 Petsc,指定的 destDir 与当前相同 PETSC_DIR/PETSC_ARCH
Installing Petsc from source, Specified destDir same as current PETSC_DIR/PETSC_ARCH
我正在尽力从源代码安装 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
,但不会提示我执行任何其他操作。我怎样才能从源代码完成安装这个包?有没有办法指定安装目的地?
如果要设置目标目录,请使用前缀。否则,mae install
没有意义,因为您已经将它安装在目标目录中。
./configure --prefix=/usr/local/petsc
make all
make install
我正在尽力从源代码安装 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
,但不会提示我执行任何其他操作。我怎样才能从源代码完成安装这个包?有没有办法指定安装目的地?
如果要设置目标目录,请使用前缀。否则,mae install
没有意义,因为您已经将它安装在目标目录中。
./configure --prefix=/usr/local/petsc
make all
make install