| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-12-06 | Establish 'core' library separate from 'std'. | Graydon Hoare | -133/+0 | |
| 2011-12-02 | stdlib: Actually write the word 'fail' instead of just thinking it | Brian Anderson | -0/+1 | |
| 2011-12-02 | stdlib: Add issue number to win32 fsync FIXME | Brian Anderson | -1/+1 | |
| 2011-12-02 | stdlib: Win32 fsync is just fail | Brian Anderson | -3/+1 | |
| No fsync function on windows. Needs custom implementation. | ||||
| 2011-12-02 | Added cross-platform fsync api to io; win32 impl needs to be refined | Stefan Plantikow | -0/+8 | |
| No tests, need mktmpfile first | ||||
| 2011-12-01 | fix name of SetCurrentDirectory | Niko Matsakis | -1/+1 | |
| 2011-12-01 | libstd: add fs::change_dir() | Elly Jones | -0/+1 | |
| 2011-11-22 | stdlib: win32 fixes for dir handling | Brian Anderson | -3/+3 | |
| 2011-11-22 | Add fs::rmdir() and tempfile/gen_str() tests. | Elly Jones | -0/+1 | |
| 2011-11-22 | std: add fs::mkdir(), rng.gen_str(), tempfile::mkdtemp() | Elly Jones | -0/+4 | |
| Signed-off-by: Elly Jones <elly@leptoquark.net> | ||||
| 2011-11-17 | remove compile-command from local variable blocks | Niko Matsakis | -1/+0 | |
| 2011-11-16 | correct signed-ness and long line | Niko Matsakis | -1/+1 | |
| 2011-11-16 | fix win32 types, make close() use i32 as return type | Niko Matsakis | -35/+36 | |
| 2011-11-16 | Use attributes for native module ABI and link name | Haitao Li | -3/+7 | |
| This patch changes how to specify ABI and link name of a native module. Before: native "cdecl" mod llvm = "rustllvm" {...} After: #[abi = "cdecl"] #[link_name = "rustllvm"] native mod llvm {...} The old optional syntax for ABI and link name is no longer supported. Fixes issue #547 | ||||
| 2011-11-16 | rustc: Use link_name attribute for native function | Haitao Li | -2/+4 | |
| Fixes issue #906 | ||||
| 2011-11-15 | stdlib: Turn function calls into constants. Fix win32 breakage | Brian Anderson | -2/+2 | |
| 2011-11-15 | Replaced constant functions with actual constants in std and updated tests | Stefan Plantikow | -19/+13 | |
| Fixes issue #1165 | ||||
| 2011-11-09 | Rename "c-stack-stdcall" ABI to "stdcall" | Brian Anderson | -1/+1 | |
| 2011-11-09 | Rename "c-stack-cdecl" ABI to "cdecl" | Brian Anderson | -2/+2 | |
| 2011-11-09 | Convert last use of "x86stdcall" ABI to "c-stack-stdcall" | Brian Anderson | -1/+1 | |
| 2011-11-08 | Remove all uses of native cdecl except for those that yield | Brian Anderson | -1/+9 | |
| 2011-11-02 | Make ptr::addr_of return an immutable vec, add mut_addr_of | Marijn Haverbeke | -1/+1 | |
| 2011-10-24 | move more native "rust" to native "c-stack-cdecl" | Niko Matsakis | -1/+1 | |
| 2011-10-04 | Add std::os::get_exe_path | Brian Anderson | -0/+21 | |
| Need this to correctly determine sysroot in rustc | ||||
| 2011-09-12 | Reformat for new mode syntax, step 1 | Marijn Haverbeke | -1/+1 | |
| Long lines were fixed in a very crude way, as I'll be following up with another reformat in a bit. | ||||
| 2011-09-02 | Reformat. Issue #855 | Brian Anderson | -12/+8 | |
| 2011-09-01 | Rename std::istr to std::str. Issue #855 | Brian Anderson | -6/+6 | |
| 2011-09-01 | Convert rust_getcwd to istrs. Issue #855 | Brian Anderson | -2/+2 | |
| 2011-09-01 | Remove last users of str::sbuf. Issue #855 | Brian Anderson | -8/+11 | |
| 2011-08-27 | Convert std::os to istrs. Issue #855 | Brian Anderson | -4/+6 | |
| 2011-08-20 | Reformat | Brian Anderson | -7/+8 | |
| This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[] | ||||
| 2011-08-12 | Remove all usages of std::vec::vbuf | Brian Anderson | -12/+4 | |
| 2011-08-03 | Add some hacks to get stdin piping working more correctly in windows | Brian Anderson | -2/+12 | |
| The way pipes work in windows is not the same as unix, though I'm not entirely clear on the differences. This patch changes the windows pipe method to return non-inheritable fds, and the windows rust_run_program method to duplicate them before spawning the new process. This allows make-check-pretty to work on windows. | ||||
| 2011-07-27 | Reformat for new syntax | Marijn Haverbeke | -34/+34 | |
| 2011-07-26 | Fix win tinderbox breaking typo | Marijn Haverbeke | -1/+1 | |
| 2011-07-26 | Remove all uses of tuples from the compiler and stdlib | Marijn Haverbeke | -4/+4 | |
| 2011-07-21 | Use correct win file open constants, per MinGW | Brian Anderson | -6/+6 | |
| 2011-07-18 | Add setenv to standard library | Brian Anderson | -1/+5 | |
| 2011-07-17 | Revert "Add setenv to standard library" | Brian Anderson | -2/+1 | |
| This reverts commit 6fb168b3dbd733f6fccebd01c2e5416f800a5566. | ||||
| 2011-07-17 | Add setenv to standard library | Brian Anderson | -1/+2 | |
| 2011-07-13 | Feeble attempt at putting out the win tinderbox | Marijn Haverbeke | -2/+2 | |
| 2011-07-12 | stdlib: Make pipe and waitpid use interior vectors | Patrick Walton | -5/+5 | |
| 2011-07-10 | stdlib: Implement an interior-vector version of the io module | Patrick Walton | -0/+7 | |
| 2011-06-28 | Use "" in the native_name as an indication that no extra options have to | Rafael Ávila de Espíndola | -1/+1 | |
| be passed to the "linker". Use that for libc. | ||||
| 2011-06-27 | Record and link with used native libraries. | Rafael Ávila de Espíndola | -1/+1 | |
| 2011-06-17 | stdlib: added getcwd and a convenience function to make relative paths ↵ | Eric Holk | -0/+4 | |
| absolute. This will be helpful for #441. | ||||
| 2011-06-15 | Fix a bunch of compile-command lines to use RBUILD | Graydon Hoare | -1/+1 | |
| 2011-06-15 | Attempt to put out windows tinderbox. | Graydon Hoare | -4/+4 | |
| 2011-06-15 | Reformat source tree (minus a couple tests that are still grumpy). | Graydon Hoare | -37/+29 | |
| 2011-05-17 | Finally rename std::_xxx to std::xxx | Marijn Haverbeke | -4/+4 | |
| Except for _task, which is still a keyword. | ||||
