| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-12-16 | Don't install the fuzzer | Brian Anderson | -7/+0 | |
| It's not an end-user tool | ||||
| 2012-12-14 | Display the full TOC in the manual. Closes #4194 | Brian Anderson | -1/+6 | |
| 2012-12-14 | Add check-stageN-doc target. Closes #4007 | Brian Anderson | -0/+7 | |
| 2012-12-13 | clean.mk: remove snapshot binaries as well. | Graydon Hoare | -1/+1 | |
| 2012-12-10 | Reliciense makefiles and testsuite. Yup. | Graydon Hoare | -0/+140 | |
| 2012-12-08 | Clean the check-fast lib on windows | Brian Anderson | -1/+2 | |
| 2012-12-07 | Fix windows installer license file | Brian Anderson | -2/+2 | |
| 2012-12-07 | Update dist rules for license changes harder | Brian Anderson | -0/+1 | |
| 2012-12-07 | Update dist rules for license changes | Brian Anderson | -1/+3 | |
| 2012-12-06 | Fix dist deps harder | Brian Anderson | -0/+1 | |
| 2012-12-06 | Fix dist deps | Brian Anderson | -5/+5 | |
| 2012-11-30 | Add the check-fast run_pass_stage2 lib to 'make clean' | Brian Anderson | -0/+1 | |
| Should fix the windows bots | ||||
| 2012-11-19 | Fix cargo and rustdoc inputs | Brian Anderson | -2/+2 | |
| 2012-11-13 | Tools should not be build prereqs of tests. Closes #3946 | Brian Anderson | -3/+4 | |
| 2012-11-07 | Attempt to fix tools.mk under cross-compile | Brian Anderson | -57/+68 | |
| 2012-11-07 | Fix make install rules for new libraries | Brian Anderson | -0/+8 | |
| 2012-11-07 | Fix install target for new libraries | Brian Anderson | -4/+22 | |
| 2012-11-07 | Rename src/rustc to src/librustc. Use the driver crate | Brian Anderson | -16/+14 | |
| 2012-11-05 | rt: Remove shape code | Brian Anderson | -1/+0 | |
| 2012-11-04 | make: change to LIB prefixed for fuzzer, carge, rustdoc, rusti uninstall | Daniel Patterson | -4/+4 | |
| 2012-11-04 | Fix rusti check targets some more | Brian Anderson | -1/+1 | |
| 2012-11-04 | Add missing rusti check targets | Brian Anderson | -0/+4 | |
| 2012-11-04 | Librarify rusti, etc. | Brian Anderson | -7/+29 | |
| 2012-11-04 | Fix tidy for new linenoise | Brian Anderson | -0/+2 | |
| 2012-11-04 | Merge remote-tracking branch 'brson/repl' | Brian Anderson | -31/+117 | |
| Conflicts: mk/install.mk src/rt/rustrt.def.in | ||||
| 2012-11-04 | Use a linenoise with win32 support | Brian Anderson | -1/+1 | |
| 2012-11-04 | Remove linenoise files from the tidy check | Zack Corr | -0/+2 | |
| 2012-11-03 | library-tool-conversion: update tests.mk for librustdoc and libcargo | Daniel Patterson | -2/+2 | |
| 2012-11-03 | library-ifying of tools - turning cargo, rustdoc, fuzzer, into libraries, as ↵ | Daniel Patterson | -19/+81 | |
| per #3543 | ||||
| 2012-10-30 | Use correct version of python to run check-summary.py. Issue #3883 | Brian Anderson | -5/+5 | |
| 2012-10-30 | rusti: Remove linenoise module, add to rt, remove core::rl | Zack Corr | -84/+57 | |
| 2012-10-29 | build: Use correct python version. Closes #3883 | Brian Anderson | -4/+4 | |
| 2012-10-27 | Correct makefiles to build linenoise correctly | Zack Corr | -11/+23 | |
| 2012-10-27 | rusti: Add linenoise, wrap into core::rl and add rusti REPL tool | Zack Corr | -12/+111 | |
| Add Brian Leibig to AUTHORS.txt for REPL contributions | ||||
| 2012-10-23 | rt: Remove box annihilator | Brian Anderson | -1/+0 | |
| 2012-10-10 | Attempt to fix the DSYM_GLOB issue again, differently. | Graydon Hoare | -1/+4 | |
| 2012-10-05 | Rename configure --enable-pax-marks flag to --enable-pax-flags flag. | auREAX | -4/+4 | |
| 2012-10-04 | Add GRSecurity compatibility with --enable-pax-marks configure flag; add ↵ | auREAX | -0/+8 | |
| GRSecurity autodetection code to configure. | ||||
| 2012-09-25 | rt: Remove the cycle collector | Patrick Walton | -1/+0 | |
| 2012-09-22 | doc: Split out task tutorail. Add links to sub-tutorials | Brian Anderson | -0/+37 | |
| 2012-09-15 | docs: Make supplemental tutorials testable | Brian Anderson | -0/+81 | |
| 2012-09-15 | docs: Add Niko's borrowed pointers tutorial | Brian Anderson | -0/+10 | |
| 2012-09-07 | gc: Add stack walker for new garbage collector. | Elliott Slaughter | -0/+2 | |
| Safe points are exported in a per-module list via the crate map. A C runtime call walks the crate map at startup and aggregates the list of safe points for the program. Currently the GC doesn't actually deallocate memory on malloc and free. Adding the GC at this stage is primarily of testing value. The GC does attempt to clean up exchange heap and stack-allocated resource on failure. A result of this patch is that the user now needs to be careful about what code they write in destructors, because the GC and/or failure cleanup may need to call destructors. Specifically, calls to malloc are considered unsafe and may result in infinite loops or segfaults. | ||||
| 2012-09-05 | doc: Split out the FFI part of the tutorial | Patrick Walton | -0/+10 | |
| The tutorial should perhaps contain an FFI section, but this one is too long. | ||||
| 2012-09-05 | doc: Split macros out into a separate tutorial | Patrick Walton | -0/+11 | |
| 2012-08-31 | jit: Clean rustllvm code, let rustc expose __morestack instead of linking in ↵ | Zack Corr | -2/+1 | |
| libmorestack and return _rust_main and call it from rustc | ||||
| 2012-08-31 | jit: Link in __morestack and make it resolvable by JIT | Zack Corr | -1/+2 | |
| 2012-08-31 | jit: Add custom memory manager (still segfaulting) | Zack Corr | -167/+0 | |
| 2012-08-29 | Make check-notidy not run tidy, as implied. Close #3105. | Graydon Hoare | -3/+3 | |
| 2012-08-28 | Compress metadata section. Seems a minor speed win, major space win. | Graydon Hoare | -0/+2 | |
