From e65e1716a7086c365214e1b1c551c4d16af933d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20=C3=81vila=20de=20Esp=C3=ADndola?= Date: Wed, 16 Mar 2011 11:46:51 -0400 Subject: Revert 6fdb81fa17b3c7147a69edc5217c9f93ff485410, it is causing failures in the bots. --- src/comp/front/creader.rs | 23 +++-------------------- 1 file changed, 3 insertions(+), 20 deletions(-) (limited to 'src/comp/front/creader.rs') diff --git a/src/comp/front/creader.rs b/src/comp/front/creader.rs index b8ad5a94..b922b378 100644 --- a/src/comp/front/creader.rs +++ b/src/comp/front/creader.rs @@ -22,29 +22,12 @@ type env = @rec( // TODO: return something fn load_crate(ast.ident ident, vec[str] library_search_paths) -> @() { - auto filename = os.dylib_filename(ident); for (str library_search_path in library_search_paths) { - auto path = fs.connect(library_search_path, filename); - auto pb = _str.buf(path); - auto llmb = llvmext.LLVMRustCreateMemoryBufferWithContentsOfFile(pb); - if ((llmb as int) != 0) { - auto llof = mk_object_file(llmb); - if ((llof.llof as int) != 0) { - auto llsi = mk_section_iter(llof.llof); - while ((llvmext.LLVMIsSectionIteratorAtEnd(llof.llof, - llsi.llsi) as int) == 0) { - // TODO: check name, pass contents off. - - llvmext.LLVMMoveToNextSection(llsi.llsi); - } - } - } + auto path = fs.connect(library_search_path, ident); + // TODO } - // TODO: write line number of "use" statement - log #fmt("can't find a crate named '%s' (looked for '%s' in %s)", - ident, filename, _str.connect(library_search_paths, ", ")); - fail; + ret @(); } fn fold_view_item_use(&env e, &span sp, ast.ident ident, -- cgit v1.2.3