OpenFPGA/Dockerfile

12 lines
546 B
Docker
Raw Normal View History

2019-06-11 12:26:44 -05:00
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
2019-07-12 15:56:08 -05:00
RUN apt-get -y install autoconf automake bison build-essential cmake ctags curl doxygen flex fontconfig g++-4.9 gcc-4.9 gdb git gtkwave gperf iverilog 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
2019-06-11 12:26:44 -05:00
2019-07-16 17:30:00 -05:00
RUN mkdir -p build
RUN cd build
RUN cmake .. -DCMAKE_BUILD_TYPE=debug
RUN make