@@ -66,6 +66,7 @@ pub static no_prepopulate_passes: uint = 1 << 25;
66
66
pub static use_softfp: uint = 1 << 26 ;
67
67
pub static gen_crate_map: uint = 1 << 27 ;
68
68
pub static prefer_dynamic: uint = 1 << 28 ;
69
+ pub static no_integrated_as: uint = 1 << 29 ;
69
70
70
71
pub fn debugging_opts_map ( ) -> ~[ ( & ' static str , & ' static str , uint ) ] {
71
72
~[ ( "verbose" , "in general, enable more debug printouts" , verbose) ,
@@ -117,6 +118,8 @@ pub fn debugging_opts_map() -> ~[(&'static str, &'static str, uint)] {
117
118
( "soft-float" , "Generate software floating point library calls" , use_softfp) ,
118
119
( "gen-crate-map" , "Force generation of a toplevel crate map" , gen_crate_map) ,
119
120
( "prefer-dynamic" , "Prefer dynamic linking to static linking" , prefer_dynamic) ,
121
+ ( "no-integrated-as" ,
122
+ "Use external assembler rather than LLVM's integrated one" , no_integrated_as) ,
120
123
]
121
124
}
122
125
@@ -335,6 +338,9 @@ impl Session_ {
335
338
pub fn prefer_dynamic ( & self ) -> bool {
336
339
self . debugging_opt ( prefer_dynamic)
337
340
}
341
+ pub fn no_integrated_as ( & self ) -> bool {
342
+ self . debugging_opt ( no_integrated_as)
343
+ }
338
344
339
345
// pointless function, now...
340
346
pub fn str_of ( & self , id : ast:: Ident ) -> @str {
0 commit comments