@@ -79,6 +79,7 @@ fn build_configuration(sess: session, argv0: str, input: input) ->
79
79
fn parse_cfgspecs ( cfgspecs : [ str ] ) -> ast:: crate_cfg {
80
80
// FIXME: It would be nice to use the parser to parse all varieties of
81
81
// meta_item here. At the moment we just support the meta_word variant.
82
+ // #2399
82
83
let mut words = [ ] ;
83
84
for cfgspecs. each { |s| words += [ attr:: mk_word_item( s) ] ; }
84
85
ret words;
@@ -99,6 +100,7 @@ fn parse_input(sess: session, cfg: ast::crate_cfg, input: input)
99
100
}
100
101
str_input ( src) {
101
102
// FIXME: Don't really want to box the source string
103
+ // #2319
102
104
parse:: parse_crate_from_source_str (
103
105
anon_src ( ) , @src, cfg, sess. parse_sess )
104
106
}
@@ -369,7 +371,7 @@ fn host_triple() -> str {
369
371
// normalize all ix86 architectures to i386.
370
372
// FIXME: Instead of grabbing the host triple we really should be
371
373
// grabbing (at compile time) the target triple that this rustc is
372
- // built with and calling that (at runtime) the host triple.
374
+ // built with and calling that (at runtime) the host triple. (#2400)
373
375
let ht = #env ( "CFG_HOST_TRIPLE" ) ;
374
376
ret if ht != "" {
375
377
ht
@@ -654,7 +656,7 @@ fn build_output_filenames(input: input,
654
656
// FIXME: We might want to warn here; we're actually not going to
655
657
// respect the user's choice of library name when it comes time to
656
658
// link, we'll be linking to lib<basename>-<hash>-<version>.so no
657
- // matter what.
659
+ // matter what. (#2401)
658
660
}
659
661
660
662
if odir != none {
0 commit comments