File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -21,17 +21,17 @@ pub struct Thunk {
21
21
impl Thunk {
22
22
/// Thunk the Rust program. Call it in build script.
23
23
pub fn thunk ( & self ) {
24
- println ! ( "cargo::warning=VC_LTL Enabled: {}" , self . vc_ltl_path) ;
24
+ println ! ( "cargo::warning=VC-LTL5 Enabled: {}" , self . vc_ltl_path) ;
25
25
println ! ( "cargo::rustc-link-search={}" , self . vc_ltl_path) ;
26
26
27
27
if let Some ( yy_thunks_obj) = & self . yy_thunks_obj {
28
- println ! ( "cargo:warning=YY-Thunks Enabled: {}" , yy_thunks_obj) ;
29
- println ! ( "cargo:rustc-link-arg=/SUBSYSTEM:{}" , self . subsystem) ;
28
+ println ! ( "cargo:: warning=YY-Thunks Enabled: {}" , yy_thunks_obj) ;
29
+ println ! ( "cargo:: rustc-link-arg=/SUBSYSTEM:{}" , self . subsystem) ;
30
30
if self . subsystem . contains ( "WINDOWS" ) {
31
31
// https://github.com/rust-lang/rust/blob/bf8801d36dfd28de7d3b0279b53d38593acdfd14/compiler/rustc_codegen_ssa/src/back/linker.rs#L1011
32
- println ! ( "cargo:rustc-link-arg=/ENTRY:mainCRTStartup" ) ;
32
+ println ! ( "cargo:: rustc-link-arg=/ENTRY:mainCRTStartup" ) ;
33
33
}
34
- println ! ( "cargo:rustc-link-arg={}" , yy_thunks_obj) ;
34
+ println ! ( "cargo:: rustc-link-arg={}" , yy_thunks_obj) ;
35
35
}
36
36
}
37
37
}
You can’t perform that action at this time.
0 commit comments