@@ -77,10 +77,10 @@ pub struct Config {
77
77
// libstd features
78
78
pub debug_jemalloc : bool ,
79
79
pub use_jemalloc : bool ,
80
- pub use_alloc_frame : bool ,
81
80
pub backtrace : bool , // support for RUST_BACKTRACE
82
81
83
82
// misc
83
+ pub rustc_alloc_frame : bool ,
84
84
pub channel : String ,
85
85
pub quiet_tests : bool ,
86
86
// Fallback musl-root for all targets
@@ -177,7 +177,7 @@ struct Rust {
177
177
debuginfo_lines : Option < bool > ,
178
178
debug_jemalloc : Option < bool > ,
179
179
use_jemalloc : Option < bool > ,
180
- use_alloc_frame : Option < bool > ,
180
+ rustc_alloc_frame : Option < bool > ,
181
181
backtrace : Option < bool > ,
182
182
default_linker : Option < String > ,
183
183
default_ar : Option < String > ,
@@ -205,7 +205,7 @@ impl Config {
205
205
let mut config = Config :: default ( ) ;
206
206
config. llvm_optimize = true ;
207
207
config. use_jemalloc = true ;
208
- config. use_alloc_frame = false ;
208
+ config. rustc_alloc_frame = false ;
209
209
config. backtrace = true ;
210
210
config. rust_optimize = true ;
211
211
config. rust_optimize_tests = true ;
@@ -301,9 +301,9 @@ impl Config {
301
301
set ( & mut config. rust_rpath , rust. rpath ) ;
302
302
set ( & mut config. debug_jemalloc , rust. debug_jemalloc ) ;
303
303
set ( & mut config. use_jemalloc , rust. use_jemalloc ) ;
304
- set ( & mut config. use_alloc_frame , rust. use_alloc_frame ) ;
305
304
set ( & mut config. backtrace , rust. backtrace ) ;
306
305
set ( & mut config. channel , rust. channel . clone ( ) ) ;
306
+ set ( & mut config. rustc_alloc_frame , rust. rustc_alloc_frame ) ;
307
307
config. rustc_default_linker = rust. default_linker . clone ( ) ;
308
308
config. rustc_default_ar = rust. default_ar . clone ( ) ;
309
309
config. musl_root = rust. musl_root . clone ( ) . map ( PathBuf :: from) ;
@@ -389,7 +389,7 @@ impl Config {
389
389
( "DEBUGINFO_LINES" , self . rust_debuginfo_lines) ,
390
390
( "JEMALLOC" , self . use_jemalloc) ,
391
391
( "DEBUG_JEMALLOC" , self . debug_jemalloc) ,
392
- ( "FRAME_ALLOC " , self . use_alloc_frame ) ,
392
+ ( "RUSTC_ALLOC_FRAME " , self . rustc_alloc_frame ) ,
393
393
( "RPATH" , self . rust_rpath) ,
394
394
( "OPTIMIZE_TESTS" , self . rust_optimize_tests) ,
395
395
( "DEBUGINFO_TESTS" , self . rust_debuginfo_tests) ,