mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-30 19:15:42 +00:00 
			
		
		
		
	 cf9b6d215e
			
		
	
	
		cf9b6d215e
		
	
	
	
	
		
			
			A newer compiler is needed to build tests for Power10 instructions. As done for arm64 onc729a99d27, a new '-test-cross' image is created for ppc64 and ppc64le. As done on936fda4d77, a test for compiler support is added to verify that the toolchain in use has '-mpower10'. Finally, Unused images (docker-power-cross and docker-ppc64-cross) are removed. Signed-off-by: Matheus Ferst <matheus.ferst@eldorado.org.br> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20210423205757.1752480-2-matheus.ferst@eldorado.org.br> Message-Id: <20210512102051.12134-27-alex.bennee@linaro.org>
		
			
				
	
	
		
			18 lines
		
	
	
		
			461 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			461 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| #
 | |
| # Docker powerpc/ppc64/ppc64le cross-compiler target
 | |
| #
 | |
| # This docker target builds on the debian Bullseye base image.
 | |
| #
 | |
| FROM qemu/debian11
 | |
| 
 | |
| RUN apt update && \
 | |
|     DEBIAN_FRONTEND=noninteractive eatmydata \
 | |
|     apt install -y --no-install-recommends \
 | |
|         gcc-powerpc-linux-gnu \
 | |
|         libc6-dev-powerpc-cross \
 | |
|         gcc-10-powerpc64-linux-gnu \
 | |
|         libc6-dev-ppc64-cross \
 | |
|         gcc-10-powerpc64le-linux-gnu \
 | |
|         libc6-dev-ppc64el-cross
 | |
| 
 |