qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [RFC PATCH for-3.1 1/2] docker: Fix TriCore binutils bu


From: Alex Bennée
Subject: Re: [Qemu-devel] [RFC PATCH for-3.1 1/2] docker: Fix TriCore binutils build
Date: Thu, 12 Jul 2018 11:47:23 +0100
User-agent: mu4e 1.1.0; emacs 26.1.50

Philippe Mathieu-Daudé <address@hidden> writes:

> - Use recent 'missing' from libtool,
> - Fix 'ylwrap' permissions
>
> Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
> ---
> 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é <address@hidden>
>
> +# 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]