aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Remove obsolete Makefiles.Graydon Hoare2011-03-241-985/+0
|
* Support for 'float' in type signatures.Lindsey Kuper2011-03-231-1/+2
|
* Further support for floating-point. Literals with exponents workTim Chevalier2011-03-221-1/+2
| | | | | | and literals with the 'f32' or 'f64' suffixes work as well. In addition, logging things with the f32 or f64 type works. (float is still assumed to be a synonym for f64).
* Add a test case for empty mutable vector literals, XFAIL'd in rustbootPatrick Walton2011-03-221-0/+1
|
* Added test case for floatsTim Chevalier2011-03-221-0/+5
|
* Add a regression test for channels of nil, which happens to work in rustc, ↵Brian Anderson2011-03-221-0/+1
| | | | but not in rustboot
* Un-XFAIL task-comm-4, 5 & 6Brian Anderson2011-03-221-3/+0
|
* Repair some fallout from pcwalton's last few build changes.Graydon Hoare2011-03-211-4/+4
|
* rustc: Implement "mutable?". Add a test case and XFAIL it in rustboot for now.Patrick Walton2011-03-181-0/+1
|
* rustc: Add str_from_cstr() and str_from_buf() functions to the standard ↵Patrick Walton2011-03-161-0/+1
| | | | library, as well as a test case
* Disable built-in rules in makefile, speed up win32 build.Graydon Hoare2011-03-161-0/+10
|
* Switch all vases of vec += elt to vec += vec. Prohibit former in rustboot. ↵Graydon Hoare2011-03-161-1/+0
| | | | Tweak std lib vec fns in process.
* rustc: Add support for LLVM memory buffer creation via a wrapper functionPatrick Walton2011-03-151-1/+2
|
* Improve depfile generation for rustc.Graydon Hoare2011-03-151-2/+5
|
* Fix ld flag order for fussy win32 linker.Graydon Hoare2011-03-151-2/+2
|
* llvmext: Add Mach-O object file reading support to LLVM's BFD workalikePatrick Walton2011-03-141-1/+1
|
* Bump LLVM version strings to 3.0svn, we're effectively tied to it now anyways.Graydon Hoare2011-03-141-1/+1
|
* Add fannkuchredux shootout benchmarkBrian Anderson2011-03-141-0/+1
|
* Rename binary trees benchmark to match the original shootout sourceBrian Anderson2011-03-141-1/+1
|
* Implement the rest of the binary trees shootout benchmarkBrian Anderson2011-03-141-0/+1
|
* Add 99-bottles benchmarks to testsuiteBrian Anderson2011-03-141-5/+11
|
* Integrate shootout benchmarks into testsuiteBrian Anderson2011-03-141-3/+12
|
* Reorganize makefile targetsBrian Anderson2011-03-141-21/+8
|
* Add functionality for running external programs to the std libMarijn Haverbeke2011-03-141-0/+1
| | | | See lib/run_program.rs.
* Add llvmext/include to the list of include directories to hopefully put out ↵Patrick Walton2011-03-111-1/+1
| | | | the burning tinderbox
* Rename libsupport to librustllvmPatrick Walton2011-03-111-8/+8
|
* rustc: Add a binding to LLVM's object file reader. Until it's sent upstream, ↵Patrick Walton2011-03-111-3/+31
| | | | add an explicit "support" library for our LLVM extensions.
* Include glob in crate depfile deps, to handle file-add events with cached ↵Graydon Hoare2011-03-111-1/+7
| | | | depfiles. Closes #269.
* Remove redundant entry from MakefileGraydon Hoare2011-03-111-1/+0
|
* Re-XFAIL size-and-align.rs to put out burning tinderboxPatrick Walton2011-03-111-0/+1
|
* rustc: Load structural loop variables in iterators. Un-XFAIL ↵Patrick Walton2011-03-111-1/+0
| | | | foreach-put-structured.rs.
* rustc: Un-XFAIL test/run-pass/foreach-simple-outer-slot.rsPatrick Walton2011-03-111-1/+0
|
* Switch rustboot from element-wise copying to take+drop+memcpy. Un-XFAIL ↵Graydon Hoare2011-03-111-1/+0
| | | | size-and-align.rs for rustc.
* rustc: Un-XFAIL generic-iter-frame.rsPatrick Walton2011-03-111-1/+0
|
* Un-XFAIL test/run-pass/foreach-nested.rs and test/run-pass/foreach-nested-2.rsPatrick Walton2011-03-111-2/+0
|
* rustc: Populate the upvar environment when calling iterator bodies. Un-XFAIL ↵Patrick Walton2011-03-111-1/+0
| | | | test/run-pass/iter-range.rs.
* Help extinguish fires.Graydon Hoare2011-03-101-1/+1
|
* Move the glue code to a .o file. This reduces how much asm we printGraydon Hoare2011-03-101-14/+15
| | | | | | | | | in each "translation unit". Part of it is not repetitive and should probably be moved to a .ll file, but for now we autogen all of it. (Modified somewhat by graydon while integrating).
* rustc: Use the generic info from the item in bind thunks just as calls do. ↵Patrick Walton2011-03-101-1/+0
| | | | Un-XFAIL drop-parametric-closure-with-bound-box.rs.
* rustc: Fix off-by-one error and logic error regarding type parameters in the ↵Patrick Walton2011-03-101-1/+0
| | | | translation of bind expressions. Un-XFAIL bind-obj-ctor.rs.
* Add failing test for tag-leaking case.Graydon Hoare2011-03-101-0/+1
|
* rustc: Run cleanups on while expressions' condition blocks. Un-XFAIL ↵Patrick Walton2011-03-101-1/+0
| | | | while-prelude-drop.rs.
* Implement deep structural comparison through boxes and sequences.Graydon Hoare2011-03-091-0/+2
|
* Un-XFAIL a couple export-related tests.Graydon Hoare2011-03-091-2/+0
|
* rustc: Have tag patterns use the type parameter information from the ↵Patrick Walton2011-03-091-1/+0
| | | | typechecker instead of trying to deduce it in trans. Un-XFAIL test/run-pass/generic-tag-values.rs.
* rustc: Make tag pattern translation generic-aware. Un-XFAIL generic-tag-alt.rs.Patrick Walton2011-03-091-1/+0
|
* rustc: Typecheck the base part of record extension expressions. Un-XFAIL ↵Patrick Walton2011-03-081-1/+0
| | | | rec-extend.rs.
* Un-XFAIL obj-return-polytypes.rsGraydon Hoare2011-03-081-1/+0
|
* rustc: Have trans get the type parameters from the annotation instead of ↵Patrick Walton2011-03-081-1/+0
| | | | trying to deduce them itself. Un-XFAIL generic-fn-twice.rs.
* Fix generic-bind support for bound aliases and generics.Graydon Hoare2011-03-081-0/+1
|