@@ -19,7 +19,7 @@ use rustc_macros::{Decodable, Encodable, HashStable_Generic};
19
19
use rustc_span:: edition:: { Edition , DEFAULT_EDITION , EDITION_NAME_LIST , LATEST_STABLE_EDITION } ;
20
20
use rustc_span:: source_map:: FilePathMapping ;
21
21
use rustc_span:: { FileName , FileNameDisplayPreference , RealFileName , SourceFileHashAlgorithm } ;
22
- use rustc_target:: spec:: { LinkSelfContainedComponents , LinkerFeatures } ;
22
+ use rustc_target:: spec:: { FramePointer , LinkSelfContainedComponents , LinkerFeatures } ;
23
23
use rustc_target:: spec:: { SplitDebuginfo , Target , TargetTriple } ;
24
24
use std:: collections:: btree_map:: {
25
25
Iter as BTreeMapIter , Keys as BTreeMapKeysIter , Values as BTreeMapValuesIter ,
@@ -2524,6 +2524,15 @@ pub fn build_session_options(early_dcx: &mut EarlyDiagCtxt, matches: &getopts::M
2524
2524
}
2525
2525
}
2526
2526
2527
+ if !nightly_options:: is_unstable_enabled ( matches)
2528
+ && cg. force_frame_pointers == FramePointer :: NonLeaf
2529
+ {
2530
+ early_dcx. early_fatal (
2531
+ "`-Cforce-frame-pointers=non-leaf` also requires `-Zunstable-options` \
2532
+ and a nightly compiler",
2533
+ )
2534
+ }
2535
+
2527
2536
// For testing purposes, until we have more feedback about these options: ensure `-Z
2528
2537
// unstable-options` is required when using the unstable `-C link-self-contained` and `-C
2529
2538
// linker-flavor` options.
0 commit comments