- Use recent 'missing' from libtool,
- Fix 'ylwrap' permissions
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
Shippable runs 'clang --version'.
.../dockerfiles/debian-tricore-cross.docker | 23 ++++++++++++++++---
1 file changed, 20 insertions(+), 3 deletions(-)
diff --git a/tests/docker/dockerfiles/debian-tricore-cross.docker b/tests/docker/dockerfiles/debian-tricore-cross.docker
index 898b8dd511..f833a6ca16 100644
--- a/tests/docker/dockerfiles/debian-tricore-cross.docker
+++ b/tests/docker/dockerfiles/debian-tricore-cross.docker
@@ -7,16 +7,33 @@
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
-FROM debian:9
+FROM debian:9-slim
MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org>
+# Install common build utilities
+RUN apt-get update && \
+ DEBIAN_FRONTEND=noninteractive apt-get install -yy eatmydata && \
+ DEBIAN_FRONTEND=noninteractive eatmydata \
+ apt-get install -y --no-install-recommends \
+ automake \
+ bison \
+ build-essential \
+ ca-certificates \
+ flex \
+ git \
+ libtool && \
+ ln -s /usr/bin/cc /usr/bin/clang && \
+ ln -s /usr/bin/gcc /usr/bin/tricore-gcc
+
RUN git clone --single-branch \
https://github.com/bkoppelmann/tricore-binutils.git \
/usr/src/binutils && \
- cd /usr/src/binutils && chmod +x missing && \
+ cd /usr/src/binutils && \
+ cp /usr/share/libtool/build-aux/missing . && \
+ chmod +x ylwrap binutils/ylwrap && \
CFLAGS=-w ./configure --prefix=/usr --disable-nls --target=tricore && \
- make && make install && \
+ make all install && \
rm -rf /usr/src/binutils
# Specify the cross prefix for this image (see tests/docker/common.rc)
--
2.18.0
Philippe Mathieu-Daudé <f4bug@amsat.org> writes: > - Use recent 'missing' from libtool, > - Fix 'ylwrap' permissions > > Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> > --- > Shippable runs 'clang --version'. > > .../dockerfiles/debian-tricore-cross.docker | 23 ++++++++++++++++--- > 1 file changed, 20 insertions(+), 3 deletions(-) > > diff --git a/tests/docker/dockerfiles/debian-tricore-cross.docker b/tests/docker/dockerfiles/debian-tricore-cross.docker > index 898b8dd511..f833a6ca16 100644 > --- a/tests/docker/dockerfiles/debian-tricore-cross.docker > +++ b/tests/docker/dockerfiles/debian-tricore-cross.docker > @@ -7,16 +7,33 @@ > # > # SPDX-License-Identifier: GPL-2.0-or-later > # > -FROM debian:9 > +FROM debian:9-slim > > MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org> > > +# Install common build utilities > +RUN apt-get update && \ > + DEBIAN_FRONTEND=noninteractive apt-get install -yy eatmydata && \ > + DEBIAN_FRONTEND=noninteractive eatmydata \ > + apt-get install -y --no-install-recommends \ > + automake \ > + bison \ > + build-essential \ > + ca-certificates \ > + flex \ > + git \ > + libtool && \ > + ln -s /usr/bin/cc /usr/bin/clang && \ > + ln -s /usr/bin/gcc /usr/bin/tricore-gcc Erm what is this trying to do? > + > RUN git clone --single-branch \ > https://github.com/bkoppelmann/tricore-binutils.git \ > /usr/src/binutils && \ > - cd /usr/src/binutils && chmod +x missing && \ > + cd /usr/src/binutils && \ > + cp /usr/share/libtool/build-aux/missing . && \ > + chmod +x ylwrap binutils/ylwrap && \ > CFLAGS=-w ./configure --prefix=/usr --disable-nls --target=tricore && \ > - make && make install && \ > + make all install && \ > rm -rf /usr/src/binutils > > # Specify the cross prefix for this image (see tests/docker/common.rc) -- Alex Bennée
© 2016 - 2025 Red Hat, Inc.