Added gdb x86 and x86_64 recipes
This commit is contained in:
parent
e0ffd8e604
commit
a6dbd2719c
5 changed files with 331 additions and 0 deletions
recipes/gdb/linux_x86
24
recipes/gdb/linux_x86/Dockerfile
Normal file
24
recipes/gdb/linux_x86/Dockerfile
Normal file
|
@ -0,0 +1,24 @@
|
|||
FROM ubuntu:xenial
|
||||
RUN apt-get update && \
|
||||
apt upgrade -yy && \
|
||||
apt install -yy \
|
||||
automake \
|
||||
cmake \
|
||||
build-essential \
|
||||
checkinstall \
|
||||
libgmp-dev \
|
||||
libmpfr-dev \
|
||||
libmpc-dev \
|
||||
wget \
|
||||
git \
|
||||
pkg-config \
|
||||
python \
|
||||
binutils-dev \
|
||||
lib32z1-dev \
|
||||
byacc \
|
||||
flex \
|
||||
texinfo
|
||||
RUN mkdir /build
|
||||
ADD . /build
|
||||
RUN chmod +x /build/build_x86.sh
|
||||
CMD /build/build_x86.sh
|
Loading…
Add table
Add a link
Reference in a new issue