source: BOL/script_install_amaury/arch_local/arch-X64_ADASTRA-GNU.env @ 4929

Last change on this file since 4929 was 4929, checked in by abarral, 2 months ago

fix adastra env names
add cosp & ecrad to tests
cleanup install
fix bench for adastra

File size: 720 bytes
Line 
1#!/bin/bash
2module purge
3module load PrgEnv-gnu
4module load cray-hdf5-parallel
5module load netcdf-hdf5parallel/gnu/10.3
6
7# netcdf-hdf5parallel has weird naming conventions => hotfix...
8# Used in netcdf95 cmake compilation
9rm -rf netcdf-hdfparallel-hotfix
10mkdir -p netcdf-hdfparallel-hotfix
11cp -r /opt/cray/pe/netcdf-hdf5parallel/4.9.0.5/gnu/10.3/lib/pkgconfig/netcdf*_parallel.pc netcdf-hdfparallel-hotfix
12cd netcdf-hdfparallel-hotfix || exit 1
13mv netcdf-fortran_parallel.pc netcdf-fortran.pc
14PKG_CONFIG_PATH="$(readlink -f .):$PKG_CONFIG_PATH"
15# Another similar hotfix to find mpich.pc
16PKG_CONFIG_PATH="/opt/cray/pe/mpich/8.1.28/ofi/crayclang/16.0/lib/pkgconfig/:$PKG_CONFIG_PATH"
17export PKG_CONFIG_PATH
18cd - || exit 1
Note: See TracBrowser for help on using the repository browser.