mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			200 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			200 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
| @echo off
 | |
| echo [BUILD] build system >&2
 | |
| mkdir build 2>nul
 | |
| rustc build_system/main.rs -o build\y.exe -Cdebuginfo=1 --edition 2021 || goto :error
 | |
| build\y.exe %* || goto :error
 | |
| goto :EOF
 | |
| 
 | |
| :error
 | |
| exit /b
 | 
