mirror of
				https://git.proxmox.com/git/rustc
				synced 2025-10-31 14:48:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			448 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			448 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-mips-linux-gnu libc6-dev-mips-cross \
 | |
|         qemu-system-mips \
 | |
|         qemu-user \
 | |
|         make \
 | |
|         file
 | |
| 
 | |
| ENV CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_LINKER=mips-linux-gnu-gcc \
 | |
|     CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_RUNNER="qemu-mips -L /usr/mips-linux-gnu" \
 | |
|     OBJDUMP=mips-linux-gnu-objdump | 
