From d7b3c6225dbbe86520ffa47d1d2b51d57ff07c46 Mon Sep 17 00:00:00 2001 From: Evgeny Posenitskiy <45995097+q-posev@users.noreply.github.com> Date: Mon, 13 Dec 2021 12:30:48 +0100 Subject: [PATCH] use GNU compiler instead of verificarlo ones to build TREXIO --- tools/ci_install.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tools/ci_install.sh b/tools/ci_install.sh index ecc5c0c..faed475 100755 --- a/tools/ci_install.sh +++ b/tools/ci_install.sh @@ -8,9 +8,10 @@ export VERSION=2.0 wget https://github.com/TREX-CoE/trexio/releases/download/v${VERSION}/trexio-${VERSION}.0.tar.gz tar -zxf trexio-${VERSION}.0.tar.gz cd trexio-${VERSION}.0 -./configure --prefix=/usr --host=x86_64 CC="verificarlo-c" FC="verificarlo-f" -make -j4 -sudo make install +./configure --prefix=/usr CC="gcc-7" FC="gfortran-7" +# modify LDFLAGS to include -lhdf5_hl because autoconf sometime fails to detect the HL component +make LDFLAGS="-L/usr/lib/x86_64-linux-gnu/hdf5/serial -lhdf5_hl" +make install cd .. ./autogen.sh