mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	This includes a qemu update from 8.2.2 to 9.2.1 which should hopefully fix some bugs we have encountered. PowerPC64LE is skipped for now because the new version seems to cause a number of new SIGILLs.
		
			
				
	
	
		
			17 lines
		
	
	
		
			617 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			617 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
ARG IMAGE=ubuntu:25.04
 | 
						|
FROM $IMAGE
 | 
						|
 | 
						|
RUN apt-get update && \
 | 
						|
    apt-get install -y --no-install-recommends \
 | 
						|
    gcc libc6-dev qemu-user-static ca-certificates \
 | 
						|
    gcc-riscv64-linux-gnu libc6-dev-riscv64-cross \
 | 
						|
    qemu-system-riscv64
 | 
						|
 | 
						|
ENV TOOLCHAIN_PREFIX=riscv64-linux-gnu-
 | 
						|
ENV CARGO_TARGET_RISCV64GC_UNKNOWN_LINUX_GNU_LINKER="$TOOLCHAIN_PREFIX"gcc \
 | 
						|
    CARGO_TARGET_RISCV64GC_UNKNOWN_LINUX_GNU_RUNNER=qemu-riscv64-static \
 | 
						|
    AR_riscv64gc_unknown_linux_gnu="$TOOLCHAIN_PREFIX"ar \
 | 
						|
    CC_riscv64gc_unknown_linux_gnu="$TOOLCHAIN_PREFIX"gcc \
 | 
						|
    QEMU_LD_PREFIX=/usr/riscv64-linux-gnu \
 | 
						|
    RUST_TEST_THREADS=1
 |