mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 12:36:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			327 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			327 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| set -e
 | |
| 
 | |
| cd "$(dirname "$0")/../"
 | |
| 
 | |
| source ./scripts/setup_rust_fork.sh
 | |
| 
 | |
| echo "[TEST] Bootstrap of rustc"
 | |
| pushd rust
 | |
| rm -r compiler/rustc_codegen_cranelift/{Cargo.*,src}
 | |
| cp ../Cargo.* compiler/rustc_codegen_cranelift/
 | |
| cp -r ../src compiler/rustc_codegen_cranelift/src
 | |
| 
 | |
| ./x.py build --stage 1 library/std
 | |
| popd
 | 
