mirror of
				https://git.proxmox.com/git/rustc
				synced 2025-10-31 18:10:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			469 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			469 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM ubuntu:24.04
 | |
| 
 | |
| RUN apt-get update && apt-get install -y --no-install-recommends \
 | |
|         gcc libc6-dev qemu-user ca-certificates \
 | |
|         gcc-powerpc-linux-gnu libc6-dev-powerpc-cross \
 | |
|         qemu-system-ppc make file
 | |
| 
 | |
| ENV CARGO_TARGET_POWERPC_UNKNOWN_LINUX_GNU_LINKER=powerpc-linux-gnu-gcc \
 | |
|     CARGO_TARGET_POWERPC_UNKNOWN_LINUX_GNU_RUNNER="qemu-ppc -cpu Vger -L /usr/powerpc-linux-gnu" \
 | |
|     CC=powerpc-linux-gnu-gcc \
 | |
|     OBJDUMP=powerpc-linux-gnu-objdump
 | 
