about summary refs log tree commit diff
path: root/src/comp/driver
AgeCommit message (Expand)AuthorLines
2011-07-14rustc: Move much of metadata reading over to interior vectorsPatrick Walton-7/+6
2011-07-14Flag --test implies '--cfg test'. Issue #428Brian Anderson-6/+53
2011-07-13Make resolve and the typechecker check for a main fn of theTim Chevalier-1/+8
2011-07-11Move macro expansion to a separate phase, change macro syntax, and add parse_...Paul Stansifer-14/+23
2011-07-11Only print up to six lines on error. Print ^~~~~ to highlight error span.Josh Matthews-0/+1
2011-07-08Add just enough logic to the driver so that we can link std statically.Rafael Ávila de Espíndola-2/+10
2011-07-08Move external crate/lib resolution to its own passBrian Anderson-0/+2
2011-07-08Move used_link_args from session to cstoreBrian Anderson-9/+2
2011-07-08Move used_libraries from session to cstoreBrian Anderson-21/+4
2011-07-08Move used_crate_files from session to cstoreBrian Anderson-17/+4
2011-07-08Replace the crate cache in session with the one in cstoreBrian Anderson-8/+1
2011-07-08Introduce metadata::cstoreBrian Anderson-1/+4
2011-07-07Implement --lib --static.Rafael Ávila de Espíndola-8/+8
2011-07-07Use an early exit to reduce indentation.Rafael Ávila de Espíndola-72/+74
2011-07-07Command line changes for adding support for static libraries.Rafael Ávila de Espíndola-12/+14
2011-07-06Generate a main fn for test running. Issue #428Brian Anderson-1/+1
2011-07-06rustc: Make meta items into interior vectorsPatrick Walton-11/+10
2011-07-06Begin adding unit testing infrastructure to the compilerBrian Anderson-4/+12
2011-07-06Remove temporary stdlib placeholders, use actual stdlib functionsMarijn Haverbeke-1/+1
2011-07-05Change ast::meta_name_value to accept any literal, not just stringBrian Anderson-1/+1
2011-07-05Don't thread the local crate number through the sessionMarijn Haverbeke-7/+2
2011-07-05Move everything syntax-related to syntax/, break deps on rest of compilerMarijn Haverbeke-71/+46
2011-07-05Move pretty-printing 'modes' into a callback hookMarijn Haverbeke-6/+53
2011-07-04Use metadata to avoid always passing -Lrustllvm to the linker.Rafael Ávila de Espíndola-8/+17
2011-07-04Simplify the code a bit.Rafael Ávila de Espíndola-8/+3
2011-07-01Introduce --cfg argument for providing additional configuration. Issue #489Brian Anderson-4/+27
2011-07-01Remove the environment concept from front::evalBrian Anderson-16/+20
2011-06-30Add a pass to fold out items that do not belong in the current configurationBrian Anderson-0/+2
2011-06-30Second try to remove -lssp.Rafael Ávila de Espíndola-5/+2
2011-06-29Be more strategic about linking to rust cratesBrian Anderson-1/+26
2011-06-29Display an error when linking failsBrian Anderson-2/+13
2011-06-29Add session.note methodBrian Anderson-0/+3
2011-06-29session.err shouldn't take a spanBrian Anderson-2/+2
2011-06-29Eliminate the --check-claims compiler flagTim Chevalier-6/+2
2011-06-29Revert ""Try" push without -lssp on windows to see what needs it."Rafael Ávila de Espíndola-1/+1
2011-06-29"Try" push without -lssp on windows to see what needs it.Rafael Ávila de Espíndola-1/+1
2011-06-28Implement "claim"Tim Chevalier-2/+6
2011-06-28Move glue.o to stageN/lib.Rafael Ávila de Espíndola-1/+1
2011-06-28Use "" in the native_name as an indication that no extra options have toRafael Ávila de Espíndola-0/+3
2011-06-27Rename middle::metadata to metadata::cwriter. Move creader to metadataBrian Anderson-2/+2
2011-06-27Record and link with used native libraries.Rafael Ávila de Espíndola-3/+24
2011-06-20Merge remote branch 'upstream/master'Rafael Ávila de Espíndola-10/+11
2011-06-20Fix line length.Rafael Ávila de Espíndola-2/+2
2011-06-20Make trans use the new ast_map instead of building its ownMarijn Haverbeke-2/+2
2011-06-20Use ast_map in typeck, instead of building another indexMarijn Haverbeke-2/+2
2011-06-20Add a separate AST mapping phaseMarijn Haverbeke-2/+5
2011-06-20Get rid of def_ids and anns in AST nodes, use single node_idMarijn Haverbeke-4/+2
2011-06-20Remember the library files we used in rustc and pass them to the "linker".Rafael Ávila de Espíndola-2/+19
2011-06-20Remove flags that are not used during linking.Rafael Ávila de Espíndola-5/+4
2011-06-19rustc: Re-introduce session.span_err, session.errBrian Anderson-2/+16