11 lines
543 B
Docker
11 lines
543 B
Docker
|
FROM ubuntu:16.04
|
||
|
|
||
|
RUN apt-get update -qq -y
|
||
|
RUN apt-get -y install python3 python3-dev tcl tcl8.6-dev gawk libreadline-dev
|
||
|
|
||
|
RUN apt-get -y install autoconf automake bison build-essential cmake ctags curl doxygen flex fontconfig g++-4.9 gcc-4.9 gdb git gperf libffi-dev libcairo2-dev libevent-dev libfontconfig1-dev liblist-moreutils-perl libncurses5-dev libx11-dev libxft-dev libxml++2.6-dev perl texinfo time valgrind zip qt5-default
|
||
|
|
||
|
RUN git clone https://github.com/LNIS-Projects/OpenFPGA.git OpenFPGA
|
||
|
RUN cd OpenFPGA && make
|
||
|
|