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