| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | Fix trans_recv | Brian Anderson | 2011-03-22 | 1 | -4/+11 |
| * | Implement trans_send and a broken trans_recv | Brian Anderson | 2011-03-22 | 1 | -4/+42 |
| * | Add codegen for ports and chans | Brian Anderson | 2011-03-22 | 2 | -0/+120 |
| * | Repair some fallout from pcwalton's last few build changes. | Graydon Hoare | 2011-03-21 | 9 | -34/+46 |
| * | Make floating-point operations work (neg, add, sub, mul, div, rem, | Tim Chevalier | 2011-03-21 | 2 | -4/+51 |
| * | Started adding support for floating-point type, floating-point literals, and ... | Tim Chevalier | 2011-03-21 | 9 | -18/+87 |
| * | Support CFG_LLVM_ROOT since CMake-built LLVM has no llvm-config | Patrick Walton | 2011-03-21 | 1 | -8/+24 |
| * | Add .def file support to the new build system (which does nothing at the mome... | Patrick Walton | 2011-03-21 | 1 | -5/+8 |
| * | Change llvmext.dll to rustllvm.dll in the new build system to match the def file | Patrick Walton | 2011-03-21 | 1 | -1/+1 |
| * | Add a suitable .def file for rustrt.dll on Windows | Patrick Walton | 2011-03-21 | 1 | -0/+70 |
| * | Add a "last" function to return the last element of a vector to the standard ... | Patrick Walton | 2011-03-21 | 1 | -0/+12 |
| * | Add a binding to ftell() | Patrick Walton | 2011-03-21 | 4 | -0/+7 |
| * | Minor distcheck fixes | Graydon Hoare | 2011-03-21 | 1 | -4/+10 |
| * | FIx three $-typos in Makefile.in. | Graydon Hoare | 2011-03-21 | 1 | -3/+3 |
| * | Fix CFG_RUN* rules a bit harder. Can now do 'make check' on both boot and sta... | Graydon Hoare | 2011-03-21 | 1 | -2/+3 |
| * | Every upcall needs a task pointer to find the C stack. It is just that when | Rafael Ávila de Espíndola | 2011-03-21 | 3 | -46/+66 |
| * | Adjust run rules to avoid early substitution. Testsuite begins to run. | Graydon Hoare | 2011-03-21 | 1 | -8/+8 |
| * | Include benchmark dirs in test build dirs. | Graydon Hoare | 2011-03-21 | 1 | -1/+2 |
| * | Strip leading $(S)/src off built targets in test; s/rustc/stage0/ in a few pl... | Graydon Hoare | 2011-03-21 | 1 | -21/+21 |
| * | Fix various pathnames. | Graydon Hoare | 2011-03-21 | 1 | -10/+10 |
| * | Port tidy and remainder of pkg/dist rules. | Graydon Hoare | 2011-03-21 | 1 | -0/+53 |
| * | Port testing variables. | Graydon Hoare | 2011-03-21 | 1 | -0/+317 |
| * | Make the wrapper function of native functions private. | Rafael Ávila de Espíndola | 2011-03-21 | 1 | -0/+2 |
| * | The T_taskptr is already included in the n_args, don't add it twice. | Rafael Ávila de Espíndola | 2011-03-21 | 1 | -5/+3 |
| * | Merge branch 'ty-serialization' | Patrick Walton | 2011-03-21 | 2 | -0/+300 |
| |\ |
|
| | * | rustc: Remove uses of Unicode in type deserialization and fix vector-push ope... | Patrick Walton | 2011-03-21 | 1 | -37/+40 |
| | * | rustc: Update type serialization and deserialization for the "mutable?" change | Patrick Walton | 2011-03-21 | 2 | -10/+30 |
| | * | rustc: Merge in type serialization and deserialization | Marijn Haverbeke | 2011-03-21 | 2 | -0/+277 |
| * | | build: Support spaces in CFG_LDPATH. | Patrick Walton | 2011-03-21 | 1 | -2/+2 |
| * | | More conservative rule for clean. | Graydon Hoare | 2011-03-21 | 1 | -9/+29 |
| * | | Split R and T so that tests run under valgrind but compiler doesn't. | Graydon Hoare | 2011-03-21 | 1 | -6/+11 |
| * | | Fix misuse of $(S) before definition, to permit running with valgrind suppres... | Graydon Hoare | 2011-03-21 | 1 | -1/+1 |
| |/ |
|
| * | Add some C99 and C++ compatibility headers for MSVC | Patrick Walton | 2011-03-21 | 3 | -0/+649 |
| * | Make lltaskptr a regular argument element in args in calls to trans_upcall2. | Rafael Ávila de Espíndola | 2011-03-21 | 1 | -8/+8 |
| * | Move calls to PtrToInt out of trans_upcall2. | Rafael Ávila de Espíndola | 2011-03-21 | 1 | -3/+5 |
| * | s/DSYMUTIL/CFG_DSYMUTIL/ | Graydon Hoare | 2011-03-20 | 1 | -3/+3 |
| * | Add -lrt to stateN link commands. | Graydon Hoare | 2011-03-20 | 1 | -6/+6 |
| * | Modify native_item_fn to handle trailing linkage names that differ from the i... | Graydon Hoare | 2011-03-20 | 8 | -18/+33 |
| * | Switch win32 path_sep to '/', add comment explaining a bit. | Graydon Hoare | 2011-03-20 | 1 | -1/+7 |
| * | Add slightly nicer failure message to io.rs when it can't open a file. | Graydon Hoare | 2011-03-20 | 1 | -1/+4 |
| * | Fix multi-stage deps, add rules for stage1 and stage2 outputs. | Graydon Hoare | 2011-03-20 | 1 | -11/+71 |
| * | Depend %.stage0.exe on %.stage0.o. | Graydon Hoare | 2011-03-20 | 1 | -1/+1 |
| * | Fix typo. | Graydon Hoare | 2011-03-20 | 1 | -1/+1 |
| * | rustc: Internalize glue. Cuts libstd size by 8% or so. | Patrick Walton | 2011-03-20 | 1 | -1/+3 |
| * | Begin porting rules for testsuite execution. | Graydon Hoare | 2011-03-20 | 2 | -33/+106 |
| * | Add build rules for stage1. | Graydon Hoare | 2011-03-19 | 1 | -0/+22 |
| * | Set up dynamic library paths properly in builddir. | Graydon Hoare | 2011-03-19 | 1 | -3/+12 |
| * | Correct deps on stage0/glue.bc | Graydon Hoare | 2011-03-19 | 1 | -1/+2 |
| * | Switch path-munge from sed to perl. | Graydon Hoare | 2011-03-19 | 1 | -1/+3 |
| * | Fix indentation in tidy. | Graydon Hoare | 2011-03-19 | 1 | -1/+1 |