Re: [RFC PATCH 32/42] docker: Add gentoo-mipsr5900el-cross image

2021-03-17 Thread Maciej W. Rozycki
On Wed, 17 Mar 2021, Philippe Mathieu-Daudé wrote: > Maciej, I tried your suggestion as follow: > > $ mipsel-linux-gnu-gcc --version > mipsel-linux-gnu-gcc (Debian 8.3.0-2) 8.3.0 > Copyright (C) 2018 Free Software Foundation, Inc. > This is free software; see the source for copying conditions. T

Re: [RFC PATCH 32/42] docker: Add gentoo-mipsr5900el-cross image

2021-03-17 Thread Philippe Mathieu-Daudé
Hi Maciej, Alex, On 3/12/21 9:04 PM, Maciej W. Rozycki wrote: > On Fri, 12 Mar 2021, Philippe Mathieu-Daudé wrote: > >>> but your two options to >>> choose from are: >>> >>> 1. Build for the soft-float ABI (`-msoft-float') where any FP calculations >>>are compiled such as to be made by the

Re: [RFC PATCH 32/42] docker: Add gentoo-mipsr5900el-cross image

2021-03-12 Thread Fredrik Noring
On Friday, 12 March 2021, Maciej W. Rozycki wrote: > On Fri, 12 Mar 2021, Philippe Mathieu-Daudé wrote: > > > > but your two options to > > > choose from are: > > > > > > 1. Build for the soft-float ABI (`-msoft-float') where any FP > > > calculations > > >are compiled such as to be made b

Re: [RFC PATCH 32/42] docker: Add gentoo-mipsr5900el-cross image

2021-03-12 Thread Philippe Mathieu-Daudé
On 3/12/21 7:24 PM, Fredrik Noring wrote: > On Friday, 12 March 2021, Maciej W. Rozycki wrote: >> On Fri, 12 Mar 2021, Philippe Mathieu-Daudé wrote: >> >> Is there any way we can do this with a distro that isn't Gentoo >> so that we can get a container build that is fast enough to be >>

Re: [RFC PATCH 32/42] docker: Add gentoo-mipsr5900el-cross image

2021-03-12 Thread Maciej W. Rozycki
On Fri, 12 Mar 2021, Philippe Mathieu-Daudé wrote: > > but your two options to > > choose from are: > > > > 1. Build for the soft-float ABI (`-msoft-float') where any FP calculations > >are compiled such as to be made by the CPU using integer arithmetic. > > With the Debian toolchain I get

Re: [RFC PATCH 32/42] docker: Add gentoo-mipsr5900el-cross image

2021-03-12 Thread Fredrik Noring
On Friday, 12 March 2021, Maciej W. Rozycki wrote: > On Fri, 12 Mar 2021, Philippe Mathieu-Daudé wrote: > > > >>> Is there any way we can do this with a distro that isn't Gentoo > > >>> so that we can get a container build that is fast enough to be > > >>> useful for CI ? > > > > Using the Debian

Re: [RFC PATCH 32/42] docker: Add gentoo-mipsr5900el-cross image

2021-03-12 Thread Philippe Mathieu-Daudé
Hi Maciej, On 3/12/21 6:05 PM, Maciej W. Rozycki wrote: > On Fri, 12 Mar 2021, Philippe Mathieu-Daudé wrote: > > Is there any way we can do this with a distro that isn't Gentoo > so that we can get a container build that is fast enough to be > useful for CI ? >> >> Using the Debian cr

Re: [RFC PATCH 32/42] docker: Add gentoo-mipsr5900el-cross image

2021-03-12 Thread Maciej W. Rozycki
On Fri, 12 Mar 2021, Philippe Mathieu-Daudé wrote: > >>> Is there any way we can do this with a distro that isn't Gentoo > >>> so that we can get a container build that is fast enough to be > >>> useful for CI ? > > Using the Debian cross image I get: > > /home/phil/source/qemu/tests/docker/dock

Re: [RFC PATCH 32/42] docker: Add gentoo-mipsr5900el-cross image

2021-03-12 Thread Philippe Mathieu-Daudé
On 2/20/21 9:01 PM, Philippe Mathieu-Daudé wrote: > On 2/15/21 2:45 PM, Fredrik Noring wrote: >> On Mon, Feb 15, 2021 at 11:59:57AM +, Daniel P. Berrangé wrote: >>> On Sun, Feb 14, 2021 at 06:59:02PM +0100, Philippe Mathieu-Daudé wrote: Add a Docker image providing cross toolchain for the

Re: [RFC PATCH 32/42] docker: Add gentoo-mipsr5900el-cross image

2021-02-20 Thread Philippe Mathieu-Daudé
On 2/15/21 2:45 PM, Fredrik Noring wrote: > On Mon, Feb 15, 2021 at 11:59:57AM +, Daniel P. Berrangé wrote: >> On Sun, Feb 14, 2021 at 06:59:02PM +0100, Philippe Mathieu-Daudé wrote: >>> Add a Docker image providing cross toolchain for the MIPS R5900 CPU >>> (used on the Sony PS2). >>> >>> This

Re: [RFC PATCH 32/42] docker: Add gentoo-mipsr5900el-cross image

2021-02-15 Thread Fredrik Noring
On Mon, Feb 15, 2021 at 11:59:57AM +, Daniel P. Berrangé wrote: > On Sun, Feb 14, 2021 at 06:59:02PM +0100, Philippe Mathieu-Daudé wrote: > > Add a Docker image providing cross toolchain for the MIPS R5900 CPU > > (used on the Sony PS2). > > > > This image is based on Gentoo and the toolchain

Re: [RFC PATCH 32/42] docker: Add gentoo-mipsr5900el-cross image

2021-02-15 Thread Daniel P . Berrangé
On Sun, Feb 14, 2021 at 06:59:02PM +0100, Philippe Mathieu-Daudé wrote: > Add a Docker image providing cross toolchain for the MIPS R5900 CPU > (used on the Sony PS2). > > This image is based on Gentoo and the toolchain is built using crossdev. Is there any way we can do this with a distro that i

[RFC PATCH 32/42] docker: Add gentoo-mipsr5900el-cross image

2021-02-14 Thread Philippe Mathieu-Daudé
Add a Docker image providing cross toolchain for the MIPS R5900 CPU (used on the Sony PS2). This image is based on Gentoo and the toolchain is built using crossdev. Recipe from: https://lists.gnu.org/archive/html/qemu-devel/2018-09/msg03944.html Suggested-by: Fredrik Noring Signed-off-by: Phi