Added gdb and gdbserver recipes
This commit is contained in:
parent
ac79dfa852
commit
bfc93fd919
8 changed files with 378 additions and 14 deletions
recipes/gdb/linux_aarch64
25
recipes/gdb/linux_aarch64/Dockerfile
Normal file
25
recipes/gdb/linux_aarch64/Dockerfile
Normal file
|
@ -0,0 +1,25 @@
|
|||
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 \
|
||||
qemu
|
||||
RUN mkdir /build
|
||||
ADD . /build
|
||||
RUN chmod +x /build/build_aarch64.sh
|
||||
CMD /build/build_aarch64.sh
|
Loading…
Add table
Add a link
Reference in a new issue