about summary refs log tree commit diff
path: root/src/comp/back/rpath.rs
AgeCommit message (Collapse)AuthorLines
2012-03-02Move src/comp to src/rustcGraydon Hoare-345/+0
2012-02-23Various cleanups and optimizations in core::strMarijn Haverbeke-2/+2
2012-02-22Remove preconditions from librariesMarijn Haverbeke-2/+0
Closes #1805
2012-02-09Remove some pointless importsMarijn Haverbeke-7/+1
2012-02-07String 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-31Require alts to be exhaustiveTim Chevalier-7/+22
middle::check_alt does the work. Lots of changes to add default cases into alts that were previously inexhaustive.
2012-01-19Remove support for the '.' after a nullary tag in a patternTim 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-14build: Build libraries in the bin directory on win32Brian Anderson-1/+0
2012-01-12Revert "build: Build libraries in the bin directory on win32"Brian Anderson-0/+1
This reverts commit 23e0d16b5fd259dc252b220777f164f1e2eb9c30.
2012-01-12build: Build libraries in the bin directory on win32Brian Anderson-1/+0
2012-01-12Make driver::session::session no longer an objectMarijn 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-11Revert "build: Build libraries in the bin directory on win32"Brian Anderson-0/+1
This reverts commit c00ec5f9c936639ec2fd9291cd484afa56aa24c8.
2012-01-11build: Build libraries in the bin directory on win32Brian Anderson-1/+0
2012-01-09Fix rpath bug.Graydon Hoare-2/+2
2012-01-05rustc: Stop exported back::rpath::testBrian Anderson-3/+1
Tests no longer need to be exported
2012-01-05Moved generic float::min, max to core::math and cleaned up some importsStefan Plantikow-1/+1
2012-01-01freebsd supportUser Jyyou-0/+10
2011-12-22Merge all 3 log syntaxes, tidy up residual misuses.Graydon Hoare-2/+2
2011-12-22Register snapshots and switch logging over to use of log_full or #error / ↵Graydon Hoare-9/+9
#debug.
2011-12-20removed math leftovers from stdStefan Plantikow-2/+1
2011-12-16reorder args to the various vec, option fns so blk comes lastNiko Matsakis-3/+3
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-3/+3
2011-10-27Remove uint::max/min in favor if math::max/minMatt Brubeck-1/+2
2011-10-21Remove last uses of iterators from stdlibMarijn Haverbeke-3/+1
Issue #1056
2011-10-10Adjust function signatures to allow for vecs being immediateMarijn 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-06Hopefully make test_prefix_rpath_abs work on win32Brian Anderson-1/+1
2011-10-06Mac uses @executable_path instead of $ORIGINBrian Anderson-2/+2
2011-10-06Always use an absolute path for the backup install prefix rpathBrian Anderson-5/+12
2011-10-06Mac doesn't seem to support rpath $ORIGINBrian Anderson-9/+28
2011-10-06Configure out rpath tests when not testingBrian Anderson-0/+1
2011-10-06rpathing is based on the target, not host OSBrian Anderson-7/+5
2011-10-05rpath all the things!Brian Anderson-2/+1
2011-10-05Add a FIXME about test exports to rustc::back::rpathBrian Anderson-0/+2
2011-10-05rpath the path to the runtimeBrian 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-05Fix some remaining rpath bugsBrian Anderson-15/+57
2011-10-05Figure out the relative path from output to each crateBrian Anderson-15/+62
2011-10-05Begin work on rpathBrian Anderson-0/+205