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 53 54 55 56 57 58 59
|
FROM debian:9
MAINTAINER Maxime Arthaud <maxime.arthaud@nasa.gov>
ARG njobs=2
ARG build_type=Release
# Installs the following versions (note that it might be out of date):
# cmake 3.7.2
# gmp 6.1.2
# boost 1.62.0
# python 2.7.13
# sqlite 3.16.2
# tbb 8006
# llvm 9.0.1
# clang 9.0.1
# gcc 6.3.0
# Upgrade
RUN apt-get update
RUN apt-get upgrade -y
# Add ppa for llvm 9.0
RUN echo "deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch-9 main" >> /etc/apt/sources.list
# Add llvm repository key
RUN apt-get install -y wget gnupg
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
# Refresh cache
RUN apt-get update
# Install all dependencies
RUN apt-get install -y gcc g++ cmake libgmp-dev libboost-dev \
libboost-filesystem-dev libboost-thread-dev libboost-test-dev python \
python-pygments libsqlite3-dev libtbb-dev libz-dev libedit-dev \
llvm-9 llvm-9-dev llvm-9-tools clang-9
# Add ikos source code
ADD . /root/ikos
# Build ikos
RUN rm -rf /root/ikos/build && mkdir /root/ikos/build
WORKDIR /root/ikos/build
ENV MAKEFLAGS "-j$njobs"
RUN cmake \
-DCMAKE_INSTALL_PREFIX="/opt/ikos" \
-DCMAKE_BUILD_TYPE="$build_type" \
-DLLVM_CONFIG_EXECUTABLE="/usr/lib/llvm-9/bin/llvm-config" \
..
RUN make
RUN make install
# Run the tests
RUN make check
# Add ikos to the path
ENV PATH "/opt/ikos/bin:$PATH"
# Done
WORKDIR /
|