rust/src/comp/rustc.rc

146 lines
2.3 KiB
Plaintext
Raw Normal View History

2010-06-23 23:03:09 -05:00
// -*- rust -*-
#[link(name = "rustc",
vers = "0.1",
uuid = "0ce89b41-2f92-459e-bbc1-8f5fe32f16cf",
url = "http://rust-lang.org/src/rustc")];
#[desc = "The Rust compiler"];
#[license = "BSD"];
#[crate_type = "bin"];
2011-05-05 21:44:00 -05:00
use std (name = "std",
vers = "0.1",
url = "http://rust-lang.org/src/std");
2010-06-23 23:03:09 -05:00
2011-04-19 18:40:46 -05:00
mod middle {
mod trans_common;
mod trans_build;
2011-04-19 18:40:46 -05:00
mod trans;
mod trans_alt;
mod trans_objects;
mod trans_uniq;
mod trans_closure;
2011-09-02 09:09:41 -05:00
mod trans_vec;
2012-01-02 05:21:44 -06:00
mod trans_impl;
2011-04-19 18:40:46 -05:00
mod ty;
mod ast_map;
2011-04-19 18:40:46 -05:00
mod resolve;
mod typeck;
mod fn_usage;
mod check_alt;
mod check_const;
mod mut;
mod alias;
mod last_use;
mod block_use;
mod kind;
2011-07-18 19:26:37 -05:00
mod freevars;
2011-08-04 12:46:10 -05:00
mod shape;
mod gc;
mod debuginfo;
mod capture;
mod tstate {
mod ck;
mod annotate;
#[path = "auxiliary.rs"]
mod aux;
mod bitvectors;
mod collect_locals;
mod pre_post_conditions;
mod states;
mod ann;
mod tritv;
}
2011-04-19 18:40:46 -05:00
}
mod syntax {
mod ast;
mod ast_util;
mod fold;
mod visit;
mod codemap;
mod parse {
mod lexer;
mod parser;
mod token;
mod eval;
}
mod ext {
mod base;
mod expand;
mod fmt;
mod env;
mod simplext;
mod concat_idents;
mod ident_to_str;
mod log_syntax;
}
mod print {
mod pprust;
mod pp;
}
mod util {
mod interner;
}
2011-04-19 18:40:46 -05:00
}
mod front {
2011-06-30 01:42:35 -05:00
mod attr;
mod config;
mod test;
2010-06-23 23:03:09 -05:00
}
mod back {
mod link;
mod abi;
mod upcall;
mod x86;
mod x86_64;
2011-10-04 17:23:32 -05:00
mod rpath;
mod target_strs;
}
mod metadata {
export encoder;
export creader;
export cstore;
export csearch;
mod common;
mod tyencode;
mod tydecode;
mod encoder;
mod decoder;
mod creader;
mod cstore;
mod csearch;
}
2010-06-23 23:03:09 -05:00
mod driver {
mod driver;
mod session;
2010-06-23 23:03:09 -05:00
}
2010-08-18 13:34:47 -05:00
mod util {
mod common;
mod ppaux;
mod filesearch;
2010-08-18 13:34:47 -05:00
}
2010-07-12 19:47:40 -05:00
mod lib {
mod llvm;
2010-07-12 19:47:40 -05:00
}
2010-06-23 23:03:09 -05:00
// Local Variables:
// fill-column: 78;
// indent-tabs-mode: nil
2010-08-18 13:34:22 -05:00
// c-basic-offset: 4
2010-06-23 23:03:09 -05:00
// buffer-file-coding-system: utf-8-unix
2011-03-31 09:41:35 -05:00
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
2010-06-23 23:03:09 -05:00
// End: