mirror of
https://gitlab.com/scemama/qmcchem.git
synced 2024-11-15 18:43:39 +01:00
22 lines
280 B
Bash
Executable File
22 lines
280 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
set -e
|
|
set -u
|
|
|
|
declare -i i
|
|
i=$(gcc -dumpversion | cut -d '.' -f 2)
|
|
if [[ i -lt 6 ]]
|
|
then
|
|
echo "GCC version $(gcc -dumpversion) too old. GCC >= 4.6 required."
|
|
exit 1
|
|
fi
|
|
|
|
set +u
|
|
source ../qmcchemrc
|
|
set -u
|
|
opam install zmq
|
|
rm -f _build/ocaml_zmq.log
|
|
exit 0
|
|
|
|
|