| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-11-17 | rt: Remove debug printf in rust_start | Brian Anderson | -1/+0 | |
| 2011-11-17 | remove compile-command from local variable blocks | Niko Matsakis | -106/+0 | |
| 2011-11-17 | Register snapshots | Brian Anderson | -0/+5 | |
| 2011-11-17 | rt: Make morestack link on x86_64. Still utterly broken | Brian Anderson | -4/+10 | |
| 2011-11-17 | rt: Make stack growth code build on Linux | Brian Anderson | -7/+7 | |
| 2011-11-17 | rt: More work on morestack | Patrick Walton | -30/+144 | |
| 2011-11-17 | tutorial: Fix type mismatch in example FFI code | Haitao Li | -1/+1 | |
| Compile error: time.rs:13:23: 13:43 error: mismatched types: expected *R[tv_sec=mMltv_usec=mMl] but found *R[tv_sec=Mltv_usec=Ml] (record elements differ in mutability) time.rs:13 libc::gettimeofday(std::ptr::addr_of(x), std::ptr::null()); ^~~~~~~~~~~~~~~~~~~~ error: aborting due to previous errors rust: upcall fail 'explicit failure', ../src/comp/driver/session.rs:70 rust: domain main @0x9dfd178 root task failed | ||||
| 2011-11-17 | rustc: Add a flag '--warn-unused-imports' | Haitao Li | -4/+16 | |
| Followup of issue #889 | ||||
| 2011-11-17 | rustc: Fix warn on unused import bug | Haitao Li | -11/+10 | |
| rustc generates incorrect warning for cascaded import declarations like: use std; import std::io; import io::println; fn main() { println("hello"); } warning: unused import io A followup of issue #889 | ||||
| 2011-11-16 | remove unused flag (thanks lht) | Niko Matsakis | -1/+1 | |
| 2011-11-16 | Removed --no-typestate flag from rutsc | Stefan Plantikow | -16/+3 | |
| Fixes issue #1139 | ||||
| 2011-11-16 | Revert "rt: More work on morestack" | Brian Anderson | -144/+30 | |
| This reverts commit 68aff2ad6d55a051e9347aa38f945d114f282691. | ||||
| 2011-11-16 | Revert "rt: Make stack growth code build on Linux" | Brian Anderson | -7/+7 | |
| This reverts commit da4b7da4e142a4c2119312c0e24b7c20bbe74e60. | ||||
| 2011-11-16 | rustc: Fix help text for --sysroot | Brian Anderson | -1/+1 | |
| 2011-11-16 | rt: Make stack growth code build on Linux | Brian Anderson | -7/+7 | |
| 2011-11-16 | rt: More work on morestack | Patrick Walton | -30/+144 | |
| 2011-11-16 | rt: Remove an unnecessary check from rust_task::yield | Brian Anderson | -3/+1 | |
| 2011-11-16 | rt: Remove rust_task::notify_tasks_wating_to_join | Brian Anderson | -22/+0 | |
| 2011-11-16 | Disconnect ports before draining them. Issue #1155 | Brian Anderson | -2/+55 | |
| 2011-11-16 | fix minor merge errors | Niko Matsakis | -31/+28 | |
| 2011-11-16 | wrap long line | Niko Matsakis | -2/+2 | |
| 2011-11-16 | correct signed-ness and long line | Niko Matsakis | -1/+1 | |
| 2011-11-16 | apply calling convention at call site too | Niko Matsakis | -1/+1 | |
| 2011-11-16 | temp workaround for failure to pass ulonglong successfully | Niko Matsakis | -2/+15 | |
| 2011-11-16 | fix prereqs | Niko Matsakis | -18/+18 | |
| 2011-11-16 | missed merges | Niko Matsakis | -5/+0 | |
| 2011-11-16 | remove wrappers from intrinsics | Niko Matsakis | -301/+335 | |
| 2011-11-16 | fix win32 types, make close() use i32 as return type | Niko Matsakis | -53/+54 | |
| 2011-11-16 | make stdcall use shim | Niko Matsakis | -43/+26 | |
| 2011-11-16 | Various fixes for x86_64 on linux | Brian Anderson | -11/+31 | |
| Configure LLVM correctly, use the right data layout, add the readlink function back, fix C constants, etc. | ||||
| 2011-11-16 | fix natives with user-specified link names, remove unused imports | Niko Matsakis | -9/+18 | |
| 2011-11-16 | fix mismatched types---make check passes on x86_64! | Niko Matsakis | -17/+18 | |
| 2011-11-16 | refactor all unix types | Niko Matsakis | -138/+192 | |
| 2011-11-16 | fix bug in shape where s_int/s_uint were not customized to platform | Niko Matsakis | -12/+29 | |
| 2011-11-16 | wrap long line; | Niko Matsakis | -1/+2 | |
| 2011-11-16 | temporarily disable these tests b/c they crash rustc | Niko Matsakis | -4/+4 | |
| 2011-11-16 | fix prereqs | Niko Matsakis | -5/+2 | |
| 2011-11-16 | adjust alignment, size of tag variant id and make it easy to | Niko Matsakis | -15/+17 | |
| adjust in the future | ||||
| 2011-11-16 | enable comments in generated asm, ll | Niko Matsakis | -6/+36 | |
| 2011-11-16 | correct translation of neg. numbers in 64-bit architectures | Niko Matsakis | -17/+11 | |
| 2011-11-16 | remove fixed FIXME | Niko Matsakis | -1/+0 | |
| 2011-11-16 | fix alignment for chan_handle structs; rust equiv is translated | Niko Matsakis | -3/+3 | |
| to char[16], not struct{long,long} | ||||
| 2011-11-16 | correct (I think) prereqs | Niko Matsakis | -1/+1 | |
| 2011-11-16 | correct pre-reqs | Niko Matsakis | -1/+1 | |
| 2011-11-16 | temp. disable cycle coll. on x86_64 | Niko Matsakis | -0/+2 | |
| 2011-11-16 | enum does not have a size consistent with a tag, so use unsigned long instead | Niko Matsakis | -4/+3 | |
| 2011-11-16 | make check-stage2-perf target work again, along with rustc, std | Niko Matsakis | -14/+19 | |
| 2011-11-16 | more consistent naming convention | Niko Matsakis | -2/+3 | |
| 2011-11-16 | reverse sense of check | Niko Matsakis | -2/+2 | |
| 2011-11-16 | make CFG_OPTIMIZE_CXX an option | Niko Matsakis | -0/+1 | |
