Re: [rust-dev] Needed Small-to-Medium Projects

2014-05-19 Thread Urban Hafner
You are much more altruistic than me Aaron ;) I just started my own projecthttps://github.com/ujh/iomrascalaithat probably adds nothing to the eco system. If you don't find something to work on you could just join. I'm also a Rust newbie and so is the other dev (although he knows more about it

Re: [rust-dev] Why explicit named lifetimes?

2014-05-19 Thread Brian Anderson
On 05/15/2014 09:30 PM, Tommi wrote: On 2014-05-16, at 7:14, Daniel Micay danielmi...@gmail.com wrote: On 16/05/14 12:10 AM, Tommi wrote: I was just wondering, why do we have to explicitly specify the lifetimes of references returned from functions? Couldn't the compiler figure those

Re: [rust-dev] Rust-dev Digest, Vol 47, Issue 19

2014-05-19 Thread walter lynsdale
, and JavaScript projects More at http://urbanhafner.com -- next part -- An HTML attachment was scrubbed... URL: http://mail.mozilla.org/pipermail/rust-dev/attachments/20140519/77bba042/attachment-0001.html -- Message: 2 Date: Mon, 19 May 2014

Re: [rust-dev] Seattle Rust Meetup interest?

2014-05-19 Thread benjamin adamson
I'll be there! I don't have a particular project I am working on at the moment though! On Thu, May 15, 2014 at 8:36 PM, Eric Reed ecr...@cs.washington.edu wrote: I'm down for a meetup. I may be able to bring some others from UW CSE with me. On Thu, May 15, 2014 at 1:46 PM, Paul Nathan

[rust-dev] Using gdb on rust

2014-05-19 Thread Ricardo Brandão
Hi All, Today I've tried to use gdb to debug rust programs. I compiled with -g: rustc -g hello.rs and ran gdb hello On Ubuntu it worked fine, but in Mac (OS 10.8) doesn't. Anyone already faced this issue on Mac? Thanks in advance -- Ricardo Brandão http://www.programonauta.com.br

Re: [rust-dev] Using gdb on rust

2014-05-19 Thread Isaac Hollander McCreery
Hi Ricardo, Can you provide more information about how it fails? OS X 10.9 no longer ships with gdb, instead preferring lldb, (the whole system has shifted over to LLVM's ecosystem, e.g. clang instead of gcc). Have you tried lldb? Regards, Ike On Mon, May 19, 2014 at 5:43 PM, Ricardo Brandão

Re: [rust-dev] Using gdb on rust

2014-05-19 Thread Brian Anderson
The exact versions of the tooling here is pretty important - our ability to support debugging is extremely version dependent, especially when it comes to lldb. On mac I believe we are not putting any particular effort into supporting gdb at this point since lldb is the future. Newer lldb's

Re: [rust-dev] Using gdb on rust

2014-05-19 Thread Eric Christopher
On Mon, May 19, 2014 at 3:01 PM, Brian Anderson bander...@mozilla.com wrote: The exact versions of the tooling here is pretty important - our ability to support debugging is extremely version dependent, especially when it comes to lldb. On mac I believe we are not putting any particular