| # syntax = docker/dockerfile:1.0-experimental |
| FROM centos:centos6 as build |
| |
| |
| # install gcc 6 |
| RUN yum -y install centos-release-scl && \ |
| yum -y install devtoolset-6 devtoolset-6-libatomic-devel |
| ENV CC=/opt/rh/devtoolset-6/root/usr/bin/gcc \ |
| CPP=/opt/rh/devtoolset-6/root/usr/bin/cpp \ |
| CXX=/opt/rh/devtoolset-6/root/usr/bin/g++ \ |
| PATH=/opt/rh/devtoolset-6/root/usr/bin:$PATH \ |
| LD_LIBRARY_PATH=/opt/rh/devtoolset-6/root/usr/lib64:/opt/rh/devtoolset-6/root/usr/lib:/opt/rh/devtoolset-6/root/usr/lib64/dyninst:/opt/rh/devtoolset-6/root/usr/lib/dyninst:/opt/rh/devtoolset-6/root/usr/lib64:/opt/rh/devtoolset-6/root/usr/lib:$LD_LIBRARY_PATH |
| |
| # install dependencies |
| RUN yum install -y wget git zlib-devel tcl-devel swig bison flex |
| |
| |
| # download public key for github.com |
| RUN mkdir -p -m 0600 ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts |
| |
| # Installing cmake for build dependency |
| RUN wget https://cmake.org/files/v3.9/cmake-3.9.0-Linux-x86_64.sh && \ |
| chmod +x cmake-3.9.0-Linux-x86_64.sh && \ |
| ./cmake-3.9.0-Linux-x86_64.sh --skip-license --prefix=/usr/local |
| |
| # download CUDD |
| RUN wget https://www.davidkebo.com/source/cudd_versions/cudd-3.0.0.tar.gz && \ |
| tar -xvf cudd-3.0.0.tar.gz && \ |
| cd cudd-3.0.0 && \ |
| ./configure && \ |
| make && \ |
| make install |
| |
| # get Resizer |
| RUN git clone --recursive https://github.com/The-OpenROAD-Project/OpenSTA \ |
| && git checkout e7d8689f70497eda1ad2686ecfcd628ffccb3a2e |
| |
| |
| WORKDIR OpenSTA |
| |
| |
| RUN mkdir /build |
| RUN mkdir build |
| WORKDIR build |
| RUN cmake -DCMAKE_INSTALL_PREFIX=/build -DCUDD=/usr/local .. |
| |
| RUN make -j$(nproc) |
| |
| RUN mkdir -p /build/bin/ && \ |
| cp ../app/sta /build/bin |
| # cp verilog2def /build/bin |
| |
| RUN mkdir -p /build/version |
| RUN date +"Build Timestamp: %Y-%m-%d_%H-%M-%S" > /build/version/opensta.version |
| RUN git rev-parse HEAD >> /build/version/opensta.version |
| RUN tar -czf /build.tar.gz /build |