rust/src/comp/rustc.rc

120 lines
1.8 KiB
Plaintext
Raw Normal View History

2010-06-23 21:03:09 -07: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"];
2011-05-05 22:44:00 -04:00
use std (name = "std",
vers = "0.1",
url = "http://rust-lang.org/src/std");
2010-06-23 21:03:09 -07:00
2011-04-19 16:40:46 -07:00
mod middle {
mod trans;
mod ty;
mod ast_map;
2011-04-19 16:40:46 -07:00
mod resolve;
mod typeck;
mod alias;
mod tstate {
mod ck;
mod annotate;
mod aux = "auxiliary.rs";
mod bitvectors;
mod collect_locals;
mod pre_post_conditions;
mod states;
mod ann;
mod tritv;
}
2011-04-19 16:40:46 -07:00
}
mod syntax {
mod ast;
mod fold;
mod walk;
mod visit;
mod codemap;
mod parse {
mod lexer;
mod parser;
mod token;
mod eval;
}
mod ext {
mod base;
mod fmt;
mod env;
mod simplext;
}
mod print {
mod pprust;
mod pp;
}
mod util {
mod interner;
}
2011-04-19 16:40:46 -07:00
}
mod front {
2011-06-29 23:42:35 -07:00
mod attr;
mod config;
mod test;
2010-06-23 21:03:09 -07:00
}
mod back {
mod link;
mod abi;
mod upcall;
mod x86;
}
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 21:03:09 -07:00
mod driver {
mod rustc;
mod session;
2010-06-23 21:03:09 -07:00
}
2010-08-18 11:34:47 -07:00
mod util {
mod common;
mod ppaux;
2010-08-18 11:34:47 -07:00
}
auth middle::metadata = unsafe;
auth middle::trans = unsafe;
auth lib::llvm = unsafe;
2010-07-12 17:47:40 -07:00
mod lib {
mod llvm;
2010-07-12 17:47:40 -07:00
}
2010-06-23 21:03:09 -07:00
// Local Variables:
// fill-column: 78;
// indent-tabs-mode: nil
2010-08-18 11:34:22 -07:00
// c-basic-offset: 4
2010-06-23 21:03:09 -07:00
// buffer-file-coding-system: utf-8-unix
2011-03-31 14:41:35 +00:00
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
2010-06-23 21:03:09 -07:00
// End: