mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	Fixed x86_64-apple-darwin freezing. Bump all docker to Ubuntu-24.04 (except for emulated and armv7)
		
			
				
	
	
		
			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 |