| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 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 | |
| 2012-08-20 | Rename the template for version_info.html | Kevin Cantu | -1/+1 | |
| 2012-08-07 | Remove rust_cond_lock and sys::condition (rename to little_lock) | Ben Blum | -1/+0 | |
| 2012-07-25 | Add check-notidy target. Close #2943. | Graydon Hoare | -0/+3 | |
| 2012-07-19 | Add a badge to the tutorial and reference docs indicating which Rust version ↵ | Paul Stansifer | -2/+10 | |
| they pertain to. | ||||
| 2012-07-13 | Even simpler attempt at solving the .dSYM mess. | Graydon Hoare | -2/+2 | |
| 2012-07-13 | Revert "Try less complicated trick for solving the dSYM glob portability issue." | Graydon Hoare | -2/+13 | |
| This reverts commit 86dfca278dd5f9f589cecfe6de91ad8264c300d0. | ||||
| 2012-07-12 | Fix make-install target on mac. release-0.3 0.3 | Graydon Hoare | -2/+2 | |
| 2012-07-11 | Try less complicated trick for solving the dSYM glob portability issue. | Graydon Hoare | -13/+2 | |
| 2012-07-11 | Revert "Reorganize lib-glob code to avoid accidentally duplicating lib/ ↵ | Graydon Hoare | -37/+44 | |
| subdirectory." This reverts commit 2cf6bf87c348f4a1079aa1c17e51eb45d9b89a5f. | ||||
| 2012-07-11 | Reorganize lib-glob code to avoid accidentally duplicating lib/ subdirectory. | Graydon Hoare | -44/+37 | |
| 2012-07-10 | Makefile nit for distchec. | Graydon Hoare | -2/+1 | |
| 2012-06-29 | Switch back to USE_SNAPSHOT_CORELIB=0. | Michael Sullivan | -1/+1 | |
| 2012-06-28 | Make fmt use a bitmask instead of a vector of flags. Closes #1993. | Michael Sullivan | -1/+1 | |
| 2012-06-25 | build: Remove bogus -fno-strict-aliasing flags. Issue #2701 | Brian Anderson | -4/+1 | |
| 2012-06-19 | Adding a lock/condition variable to libcore. | Eric Holk | -0/+1 | |
| 2012-06-18 | Put type descriptors in strings created by the runtime. Progress on #2638. | Michael Sullivan | -0/+1 | |
| 2012-06-16 | Revert "Adding a lock/condition variable to libcore." | Tim Chevalier | -1/+0 | |
| This reverts commit e394ebda37bf6bbe4c516e2b9381aac8bd964dcc. | ||||
| 2012-06-15 | Adding a lock/condition variable to libcore. | Eric Holk | -0/+1 | |
| 2012-06-14 | Update the build system to handle dependency on header files. Closes #2547. | Michael Sullivan | -23/+20 | |
| 2012-06-13 | Revert "Update the build system to handle dependency on header files. Closes ↵ | Michael Sullivan | -16/+19 | |
| #2547." This reverts commit 31f4b63dffb49e65d3de4ecbef573e15b0f44e36. | ||||
| 2012-06-13 | Update the build system to handle dependency on header files. Closes #2547. | Michael Sullivan | -19/+16 | |
| 2012-06-13 | Minor makefile cleanup. | Michael Sullivan | -8/+4 | |
| 2012-06-11 | rt: Turn on frame pointers for stack walking | Brian Anderson | -0/+6 | |
| 2012-06-08 | Rename some misleading variables | Ben Striegel | -4/+4 | |
| 2012-06-08 | `make install` fix to address #2555 | Ben Striegel | -1/+1 | |
| 2012-06-07 | fix compiletest deadlock on freebsd | Jyun-Yan You | -6/+0 | |
| 2012-06-02 | Begin running cargo tests | Brian Anderson | -0/+28 | |
| 2012-06-01 | build: Fix bogus test teps | Brian Anderson | -2/+2 | |
| 2012-06-01 | test: Move tests with rustc deps into run-pass-fulldeps | Brian Anderson | -3/+61 | |
| These tests require a lot more to be built before running so are not part of check-lite | ||||
| 2012-06-01 | build: Add check-lite target | Brian Anderson | -0/+5 | |
| Runs the core, std, run-pass, run-fail, compile-fail tests for stage2 and builds only their dependencies. We'll use this on the bots' try branch. | ||||
| 2012-05-31 | Rename librustsyntax to libsyntax | Kevin Cantu | -17/+17 | |
| Per issue #2418. | ||||
| 2012-05-31 | mk: Stop using snapshot rt/core/std | Brian Anderson | -3/+3 | |
| 2012-05-30 | build: Fix rules for non-target std when using snapshot std | Brian Anderson | -0/+1 | |
| 2012-05-30 | build: Fix mac build errors | Brian Anderson | -1/+1 | |
| 2012-05-30 | build: Add USE_SNAPSHOT_STDLIB. Set to 1 | Brian Anderson | -7/+36 | |
