| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-03-02 | Move src/comp to src/rustc | Graydon Hoare | -345/+0 | |
| 2012-02-23 | Various cleanups and optimizations in core::str | Marijn Haverbeke | -2/+2 | |
| 2012-02-22 | Remove preconditions from libraries | Marijn Haverbeke | -2/+0 | |
| Closes #1805 | ||||
| 2012-02-09 | Remove some pointless imports | Marijn Haverbeke | -7/+1 | |
| 2012-02-07 | String split renaming: | Kevin Cantu | -2/+2 | |
| * Renamed str::split -> str::split_byte * Renamed str::splitn -> str::splitn_byte * Renamed str::split_func -> str::split * Renamed str::split_char -> str::split_char * Renamed str::split_chars_iter -> str::split_char_iter * Added u8::is_ascii * Fixed the behavior of str::split_str, so that it matches split_chars and split (i.e. ["", "XXX", "YYY", ""] == split_str(".XXX.YYY.", ".")) * Fixed str::split_byte and str::splitn_byte so that they handle splitting UTF-8 strings on a given UTF-8/ASCII byte and also handle "" as the others do | ||||
| 2012-01-31 | Require alts to be exhaustive | Tim Chevalier | -7/+22 | |
| middle::check_alt does the work. Lots of changes to add default cases into alts that were previously inexhaustive. | ||||
| 2012-01-19 | Remove support for the '.' after a nullary tag in a pattern | Tim Chevalier | -3/+3 | |
| (Commit also includes lots of changes to remove '.'s that a git merge messed up, or else it was monkeys.) | ||||
| 2012-01-14 | build: Build libraries in the bin directory on win32 | Brian Anderson | -1/+0 | |
| 2012-01-12 | Revert "build: Build libraries in the bin directory on win32" | Brian Anderson | -0/+1 | |
| This reverts commit 23e0d16b5fd259dc252b220777f164f1e2eb9c30. | ||||
| 2012-01-12 | build: Build libraries in the bin directory on win32 | Brian Anderson | -1/+0 | |
| 2012-01-12 | Make driver::session::session no longer an object | Marijn Haverbeke | -6/+6 | |
| Rather, it is now a struct where properties like opts are accessed directly, and the error-reporting methods are part of a static impl (with the same name as the type). | ||||
| 2012-01-11 | Revert "build: Build libraries in the bin directory on win32" | Brian Anderson | -0/+1 | |
| This reverts commit c00ec5f9c936639ec2fd9291cd484afa56aa24c8. | ||||
| 2012-01-11 | build: Build libraries in the bin directory on win32 | Brian Anderson | -1/+0 | |
| 2012-01-09 | Fix rpath bug. | Graydon Hoare | -2/+2 | |
| 2012-01-05 | rustc: Stop exported back::rpath::test | Brian Anderson | -3/+1 | |
| Tests no longer need to be exported | ||||
| 2012-01-05 | Moved generic float::min, max to core::math and cleaned up some imports | Stefan Plantikow | -1/+1 | |
| 2012-01-01 | freebsd support | User Jyyou | -0/+10 | |
| 2011-12-22 | Merge all 3 log syntaxes, tidy up residual misuses. | Graydon Hoare | -2/+2 | |
| 2011-12-22 | Register snapshots and switch logging over to use of log_full or #error / ↵ | Graydon Hoare | -9/+9 | |
| #debug. | ||||
| 2011-12-20 | removed math leftovers from std | Stefan Plantikow | -2/+1 | |
| 2011-12-16 | reorder args to the various vec, option fns so blk comes last | Niko Matsakis | -3/+3 | |
| 2011-12-13 | Copy first batch of material from libstd to libcore. | Graydon Hoare | -3/+3 | |
| 2011-10-27 | Remove uint::max/min in favor if math::max/min | Matt Brubeck | -1/+2 | |
| 2011-10-21 | Remove last uses of iterators from stdlib | Marijn Haverbeke | -3/+1 | |
| Issue #1056 | ||||
| 2011-10-10 | Adjust function signatures to allow for vecs being immediate | Marijn Haverbeke | -2/+2 | |
| Some code was relying on vectors being implicitly by-reference (as non-immediate value). This adds the necessary &&-sigils. Closes #1021 | ||||
| 2011-10-06 | Hopefully make test_prefix_rpath_abs work on win32 | Brian Anderson | -1/+1 | |
| 2011-10-06 | Mac uses @executable_path instead of $ORIGIN | Brian Anderson | -2/+2 | |
| 2011-10-06 | Always use an absolute path for the backup install prefix rpath | Brian Anderson | -5/+12 | |
| 2011-10-06 | Mac doesn't seem to support rpath $ORIGIN | Brian Anderson | -9/+28 | |
| 2011-10-06 | Configure out rpath tests when not testing | Brian Anderson | -0/+1 | |
| 2011-10-06 | rpathing is based on the target, not host OS | Brian Anderson | -7/+5 | |
| 2011-10-05 | rpath all the things! | Brian Anderson | -2/+1 | |
| 2011-10-05 | Add a FIXME about test exports to rustc::back::rpath | Brian Anderson | -0/+2 | |
| 2011-10-05 | rpath the path to the runtime | Brian Anderson | -1/+14 | |
| We don't currently rpath native libs, but we do know where rustrt is located and everything needs to link to it. | ||||
| 2011-10-05 | Fix some remaining rpath bugs | Brian Anderson | -15/+57 | |
| 2011-10-05 | Figure out the relative path from output to each crate | Brian Anderson | -15/+62 | |
| 2011-10-05 | Begin work on rpath | Brian Anderson | -0/+205 | |
