mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	Update paths and submodules to fix `libm-test` and `util` building so we will be able to add them to the workspace.
		
			
				
	
	
		
			10 lines
		
	
	
		
			220 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			220 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
#[path = "../libm/configure.rs"]
 | 
						|
mod configure;
 | 
						|
use configure::Config;
 | 
						|
 | 
						|
fn main() {
 | 
						|
    println!("cargo:rerun-if-changed=../libm/configure.rs");
 | 
						|
    let cfg = Config::from_env();
 | 
						|
    configure::emit_test_config(&cfg);
 | 
						|
}
 |