blob: 8d5de8e04ce3fcf703c8389eca413df6c68ddef2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#!/usr/bin/env bash
#
# Copyright 2021 The WarpX Community
#
# License: BSD-3-Clause-LBNL
# Authors: Axel Huebl
set -eu -o pipefail
sudo apt-get -qqq update
sudo apt-get install -y \
build-essential \
ca-certificates \
ccache \
clang \
cmake \
gnupg \
libblas-dev \
libboost-math-dev \
libfftw3-dev \
libfftw3-mpi-dev \
libhdf5-openmpi-dev \
liblapack-dev \
libopenmpi-dev \
make \
ninja-build \
pkg-config \
python3 \
python3-pip \
python3-setuptools \
wget
# cmake-easyinstall
#
sudo curl -L -o /usr/local/bin/cmake-easyinstall https://git.io/JvLxY
sudo chmod a+x /usr/local/bin/cmake-easyinstall
export CEI_SUDO="sudo"
# BLAS++ & LAPACK++
cmake-easyinstall \
--prefix=/usr/local \
git+https://bitbucket.org/icl/blaspp.git \
-Duse_openmp=OFF \
-Dbuild_tests=OFF \
-DCMAKE_VERBOSE_MAKEFILE=ON
cmake-easyinstall \
--prefix=/usr/local \
git+https://bitbucket.org/icl/lapackpp.git \
-Duse_cmake_find_lapack=ON \
-Dbuild_tests=OFF \
-DCMAKE_VERBOSE_MAKEFILE=ON
|