1
Fork 0

add -Z emit-stack-sizes

This commit is contained in:
Jorge Aparicio 2018-09-13 19:43:15 +02:00
parent c3a1a0d340
commit 3c0907ce51
4 changed files with 10 additions and 2 deletions

View file

@ -196,6 +196,7 @@ pub fn target_machine_factory(sess: &Session, find_features: bool)
let features = CString::new(features).unwrap();
let is_pie_binary = !find_features && is_pie_binary(sess);
let trap_unreachable = sess.target.target.options.trap_unreachable;
let emit_stack_size_section = sess.opts.debugging_opts.emit_stack_sizes;
let asm_comments = sess.asm_comments();
@ -213,6 +214,7 @@ pub fn target_machine_factory(sess: &Session, find_features: bool)
trap_unreachable,
singlethread,
asm_comments,
emit_stack_size_section,
)
};