about summary refs log tree commit diff
path: root/src/comp/util/filesearch.rs
AgeCommit message (Collapse)AuthorLines
2012-03-02Move src/comp to src/rustcGraydon Hoare-174/+0
2012-02-22Remove preconditions from librariesMarijn Haverbeke-2/+0
Closes #1805
2012-02-20cargo: Use $sysroot/$libdir/cargo as work dirTycho Sci-3/+3
On win32 environment, it's "$sysroot/bin/cargo". On unix-y environment, it's "$sysroot/lib/cargo".
2012-02-09cargo: 2 modes -> 3 modes, and clarify themTycho Sci-3/+9
* -g or --mode=user to create/use .cargo under $HOME * -G or --mode=system to create/use .cargo under sysroot * by default, `cargo` uses .cargo under current working directory
2012-02-09cargo: Add local mode and use it by defaultTycho Sci-0/+37
2012-02-09Remove some pointless importsMarijn Haverbeke-6/+1
2012-01-31Change option::t to optionTim Chevalier-5/+5
Now that core exports "option" as a synonym for option::t, search-and- replace option::t with option. The only place that still refers to option::t are the modules in libcore that use option, because fixing this requires a new snapshot (forthcoming).
2012-01-23s/block()/fn()/gNiko Matsakis-1/+1
2012-01-18Remove '.' after nullary tags in patternsTim Chevalier-4/+4
Does what it says on the tin. The next commit will remove support for this syntax.
2012-01-14build: Build libraries in the bin directory on win32Brian Anderson-3/+14
2012-01-13Remove all remaining uses of objs from the compilerMarijn Haverbeke-12/+13
2012-01-12Revert "build: Build libraries in the bin directory on win32"Brian Anderson-14/+3
This reverts commit 23e0d16b5fd259dc252b220777f164f1e2eb9c30.
2012-01-12build: Build libraries in the bin directory on win32Brian Anderson-3/+14
2012-01-11Revert "build: Build libraries in the bin directory on win32"Brian Anderson-14/+3
This reverts commit c00ec5f9c936639ec2fd9291cd484afa56aa24c8.
2012-01-11build: Build libraries in the bin directory on win32Brian Anderson-3/+14
2012-01-06rustc: Use std::homedir to locate /home/bandersonBrian Anderson-4/+4
Issue #1359
2012-01-05rustc: Add cargo's lib directory to search pathsBrian Anderson-0/+25
2012-01-05Switch to new param kind bound syntaxMarijn Haverbeke-1/+1
And remove support for the old syntax
2011-12-22Register snapshots and switch logging over to use of log_full or #error / ↵Graydon Hoare-5/+5
#debug.
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-2/+2
2011-11-18Update stdlib, compiler, and tests to new kind systemMarijn Haverbeke-1/+1
This involved adding 'copy' to more generics than I hoped, but an experiment with making it implicit showed that that way lies madness -- unless enforced, you will not remember to mark functions that don't copy as not requiring copyable kind. Issue #1177
2011-11-10Cleanup unused importsHaitao Li-3/+1
2011-10-25Update our code to new type parameter kind syntaxMarijn Haverbeke-2/+2
Closes #1067
2011-10-05Fix some remaining rpath bugsBrian Anderson-1/+1
2011-10-05Begin work on rpathBrian Anderson-2/+9
2011-10-04Use std::os::get_exe_path to determine sysrootBrian Anderson-10/+12
2011-10-04Use util::filesearch to locate intrinsics.bc and main.oBrian Anderson-0/+6
2011-10-04Move the library search into util::filesearchBrian Anderson-0/+25
2011-10-04Encapsulate current sysroot and lib path handling into util::filesearchBrian Anderson-0/+63