Am 09.03.20 um 12:16 schrieb Sven Schreiber:
Am 09.03.2020 um 11:18 schrieb Schmidt, Joachim:
> Dear all,
>
> I am working at a research institute in Germany and I would like to
> realize a project by means of gretl.
Hi, sounds very good.
> Finally my collegue and me will realize the software on a
RaspberryPi 4.
Hi Joachim,
just a week ago I've compiled gretl on a RaspberryPi 4. The list of
required dependencies is:
<Deps>
sudo apt update -qq && apt install -y --no-install-recommends \
gcc \
autoconf \
automake \
cmake \
apt-utils \
build-essential \
libtool \
flex \
bison \
gcc-doc \
libc6-dev \
libc-dev \
gfortran \
gettext \
libglib2.0-dev \
libgtk3-perl \
libgfs-dev \
libpng-dev \
libxslt1-dev \
liblapack-dev \
libfftw3-dev \
libreadline-dev \
zlib1g-dev \
libbz2-dev \
libxml2-dev \
libgmp-dev \
libcurl4-gnutls-dev \
libmpfr-dev \
git \
gnuplot \
imagemagick \
libjson-glib-1.0-0 \
libjson-glib-dev \
openmpi-bin \
openmpi-common \
ca-certificates \
libgtk-3-dev \
libgtksourceview-3.0-dev
</Deps>
In contrast to Ubuntu, the packages g++ and g++-9 are not needed.
Install by:
<>
mkdir -p git && \
git clone
git://git.code.sf.net/p/gretl/git ./git/gretl-git \
&& cd ./git/gretl-git \
&& ./configure \
--enable-openmp \
--with-mpi-lib=/usr/lib/x86_64-linux-gnu/openmpi/lib \
&& make -j$(nproc) \
&& make install \
&& make clean \
&& ldconfig
</>
Best,
Artur