mirror of
https://github.com/nwchemgit/nwchem.git
synced 2026-07-27 13:45:27 -04:00
freebsd
This commit is contained in:
parent
8fc92375df
commit
9d29c9aaa2
1 changed files with 7 additions and 1 deletions
|
|
@ -352,7 +352,13 @@ if [[ "$?" != "0" ]]; then
|
|||
cat $(find . -name *log)
|
||||
exit 1
|
||||
fi
|
||||
make V=0 -j3 scalapack/fast
|
||||
GOTFREEBSD=$(uname -o 2>&1|awk ' /FreeBSD/ {print "1";exit}')
|
||||
MYMAKE=make
|
||||
if [[ "${GOTFREEBSD}" == 1 ]]; then
|
||||
MAKEJ="MAKE_NB_JOBS=1"
|
||||
MYMAKE=gmake
|
||||
fi
|
||||
$MYMAKE V=0 -j3 scalapack/fast
|
||||
if [[ "$?" != "0" ]]; then
|
||||
echo " "
|
||||
echo "compilation failed"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue