mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			229 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			229 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| set -e
 | |
| 
 | |
| export RUSTFLAGS="-Zrun_dsymutil=no"
 | |
| 
 | |
| ./build.sh --without-sysroot "$@"
 | |
| 
 | |
| rm -r target/out || true
 | |
| 
 | |
| scripts/tests.sh no_sysroot
 | |
| 
 | |
| ./build.sh "$@"
 | |
| 
 | |
| scripts/tests.sh base_sysroot
 | |
| scripts/tests.sh extended_sysroot
 | 
