Add target_triple to session::options. Use host triple by default, accept --target on command line.

This commit is contained in:
Graydon Hoare 2011-09-21 08:46:18 -07:00
parent 07eb29dbce
commit 68d50b5928
3 changed files with 45 additions and 28 deletions

27
configure vendored
View File

@ -175,20 +175,6 @@ then
exit 0
fi
step_msg "making directories"
for i in \
doc \
rt rt/isaac rt/bigint rt/sync rt/test rt/arch/i386 \
rt/libuv rt/libuv/src/ares rt/libuv/src/eio rt/libuv/src/ev \
rustllvm \
dl stage0 stage1 stage2 stage3 \
stage0/lib stage1/lib stage2/lib stage3/lib \
test/run-pass test/run-fail test/compile-fail \
test/bench test/perf test/pretty
do
make_dir $i
done
step_msg "writing out basic parameters"
putvar CFG_SRC_DIR
putvar CFG_BUILD_DIR
@ -316,6 +302,19 @@ perl -i.bak -p -e 's@ ([a-zA-Z]):[/\\]@ /\1/@go;' \
-e 's@\\@/@go;' config.mk
rm -f config.mk.bak
step_msg "making directories"
for i in \
doc \
rt rt/isaac rt/bigint rt/sync rt/test rt/arch/i386 \
rt/libuv rt/libuv/src/ares rt/libuv/src/eio rt/libuv/src/ev \
rustllvm \
dl stage{0,1,2,3}{,/lib,/lib/$CFG_LLVM_TRIPLE} \
test/run-pass test/run-fail test/compile-fail \
test/bench test/perf test/pretty
do
make_dir $i
done
copy ${CFG_SRC_DIR}Makefile.in ./Makefile
copy ${CFG_SRC_DIR}src/rt/libuv/Makefile rt/libuv/Makefile

View File

@ -32,10 +32,12 @@ fn default_configuration(sess: session::session, argv0: str, input: str) ->
let mk = attr::mk_name_value_item_str;
ret [ // Target bindings.
mk("target_os", std::os::target_os()), mk("target_arch", "x86"),
mk("target_os", std::os::target_os()),
mk("target_arch", "x86"),
mk("target_libc", libc),
// Build bindings.
mk("build_compiler", argv0), mk("build_input", input)];
mk("build_compiler", argv0),
mk("build_input", input)];
}
fn build_configuration(sess: session::session, argv0: str, input: str) ->
@ -224,6 +226,7 @@ fn version(argv0: str) {
let env_vers = #env["CFG_VERSION"];
if str::byte_len(env_vers) != 0u { vers = env_vers; }
io::stdout().write_str(#fmt["%s %s\n", argv0, vers]);
io::stdout().write_str(#fmt["host: %s\n", host_triple()]);
}
fn usage(argv0: str) {
@ -257,6 +260,7 @@ fn usage(argv0: str) {
--time-passes time the individual phases of the compiler
--time-llvm-passes time the individual phases of the LLVM backend
--sysroot <path> override the system root (default: rustc's directory)
--target <triple> target to compile for (default: host triple)
--no-typestate don't run the typestate pass (unsafe!)
--test build test harness
--gc garbage collect shared data (experimental/temporary)
@ -295,26 +299,25 @@ fn get_default_sysroot(binary: str) -> str {
ret dirname;
}
fn build_target_config() -> @session::config {
let triple: str = str::str_from_cstr(llvm::llvm::LLVMRustGetHostTriple());
fn build_target_config(sopts: @session::options) -> @session::config {
let target_cfg: @session::config =
@{os: get_os(triple),
arch: get_arch(triple),
@{os: get_os(sopts.target_triple),
arch: get_arch(sopts.target_triple),
int_type: ast::ty_i32,
uint_type: ast::ty_u32,
float_type: ast::ty_f64};
ret target_cfg;
}
fn host_triple() -> str {
str::str_from_cstr(llvm::llvm::LLVMRustGetHostTriple())
}
fn build_session_options(binary: str, match: getopts::match, binary_dir: str)
-> @session::options {
let library = opt_present(match, "lib");
let static = opt_present(match, "static");
let library_search_paths = [binary_dir + "/lib"];
let lsp_vec = getopts::opt_strs(match, "L");
for lsp: str in lsp_vec { library_search_paths += [lsp]; }
let parse_only = opt_present(match, "parse-only");
let no_trans = opt_present(match, "no-trans");
@ -336,6 +339,7 @@ fn build_session_options(binary: str, match: getopts::match, binary_dir: str)
let time_llvm_passes = opt_present(match, "time-llvm-passes");
let run_typestate = !opt_present(match, "no-typestate");
let sysroot_opt = getopts::opt_maybe_str(match, "sysroot");
let target_opt = getopts::opt_maybe_str(match, "target");
let opt_level: uint =
if opt_present(match, "O") {
if opt_present(match, "OptLevel") {
@ -361,6 +365,17 @@ fn build_session_options(binary: str, match: getopts::match, binary_dir: str)
none. { get_default_sysroot(binary) }
some(s) { s }
};
let target =
alt target_opt {
none. { host_triple() }
some(s) { s }
};
let library_search_paths = [binary_dir + "/lib", // FIXME: legacy
binary_dir + "/lib/" + target ];
let lsp_vec = getopts::opt_strs(match, "L");
for lsp: str in lsp_vec { library_search_paths += [lsp]; }
let cfg = parse_cfgspecs(getopts::opt_strs(match, "cfg"));
let test = opt_present(match, "test");
let do_gc = opt_present(match, "gc");
@ -378,6 +393,7 @@ fn build_session_options(binary: str, match: getopts::match, binary_dir: str)
output_type: output_type,
library_search_paths: library_search_paths,
sysroot: sysroot,
target_triple: target,
cfg: cfg,
test: test,
parse_only: parse_only,
@ -387,7 +403,7 @@ fn build_session_options(binary: str, match: getopts::match, binary_dir: str)
}
fn build_session(sopts: @session::options) -> session::session {
let target_cfg = build_target_config();
let target_cfg = build_target_config(sopts);
let cstore = cstore::mk_cstore();
ret session::session(target_cfg, sopts, cstore,
@{cm: codemap::new_codemap(), mutable next_id: 0},
@ -412,9 +428,10 @@ fn opts() -> [getopts::opt] {
optflag("ls"), optflag("parse-only"), optflag("no-trans"),
optflag("O"), optopt("OptLevel"), optmulti("L"), optflag("S"),
optflag("c"), optopt("o"), optflag("g"), optflag("save-temps"),
optopt("sysroot"), optflag("stats"), optflag("time-passes"),
optflag("time-llvm-passes"), optflag("no-typestate"),
optflag("noverify"), optmulti("cfg"), optflag("test"),
optopt("sysroot"), optopt("target"), optflag("stats"),
optflag("time-passes"), optflag("time-llvm-passes"),
optflag("no-typestate"), optflag("noverify"),
optmulti("cfg"), optflag("test"),
optflag("lib"), optflag("static"), optflag("gc")];
}

View File

@ -34,6 +34,7 @@
output_type: back::link::output_type,
library_search_paths: [str],
sysroot: str,
target_triple: str,
cfg: ast::crate_cfg,
test: bool,
parse_only: bool,