Mercurial > hg > Members > innparusu > Gears
view Dockerfile @ 101:8987cf13d5bb
Add Allocate macro
author | innparusu |
---|---|
date | Wed, 02 Mar 2016 19:23:00 +0900 (2016-03-02) |
parents | 4dfa04d14221 |
children | c53f105a48c1 |
line wrap: on
line source
# docker build -t gears . # build container # docker run gears # launch container and attach FROM fedora WORKDIR /root RUN dnf update -y RUN dnf install -y gcc gcc-c++ mercurial git vim zsh tar findutils make gdb cmake RUN hg clone http://firefly.cr.ie.u-ryukyu.ac.jp/hg/CbC/CbC_llvm RUN mkdir /root/llvm_build WORKDIR /root/llvm_build RUN /root/CbC_llvm/configure --enable-assertions RUN make -j 2 RUN make install WORKDIR /root RUN git clone https://github.com/choller/llcov CMD zsh