[rust-dev] Published Rust Book?

2014-12-28 Thread Ivo Balbaert
Hi,

I heard Packt Publishing is working on a Rust book to appear around Apr
2015.

Best regards,

Ivo
-Original Message-
From: Rust-dev [mailto:rust-dev-boun...@mozilla.org] On Behalf Of
rust-dev-requ...@mozilla.org
Sent: vrijdag 26 december 2014 21:00
To: rust-dev@mozilla.org
Subject: Rust-dev Digest, Vol 54, Issue 21

Send Rust-dev mailing list submissions to
rust-dev@mozilla.org

To subscribe or unsubscribe via the World Wide Web, visit
https://mail.mozilla.org/listinfo/rust-dev
or, via email, send a message with subject or body 'help' to
rust-dev-requ...@mozilla.org

You can reach the person managing the list at
rust-dev-ow...@mozilla.org

When replying, please edit your Subject line so it is more specific than
"Re: Contents of Rust-dev digest..."


Today's Topics:

   1.  Published Rust Book? (Tom Browder)
   2. Re:  Published Rust Book? (yati sagade)


--

Message: 1
Date: Fri, 26 Dec 2014 09:57:39 -0600
From: Tom Browder 
To: rust-dev@mozilla.org
Subject: [rust-dev] Published Rust Book?
Message-ID:

Content-Type: text/plain; charset="utf-8"

I am very excited by Rust and its wonderful, integrated tool set, etc.  I
wonder if a published book is in the planning?  I found no reference to such
in the Gmane archives of this list, nor did I see anything planned at
Manning pubs.

Best regards,

-Tom
-- next part --
An HTML attachment was scrubbed...
URL:


--

Message: 2
Date: Fri, 26 Dec 2014 21:34:27 +0530
From: yati sagade 
To: Tom Browder 
Cc: rust-dev@mozilla.org
Subject: Re: [rust-dev] Published Rust Book?
Message-ID:

Content-Type: text/plain; charset="utf-8"

Hi

I think this is because the language was evolving  very rapidly until
recently. I guess books can be expected around the time Rust 1.0 is
released.
On Dec 26, 2014 9:27 PM, "Tom Browder"  wrote:

> I am very excited by Rust and its wonderful, integrated tool set, etc.  
> I wonder if a published book is in the planning?  I found no reference 
> to such in the Gmane archives of this list, nor did I see anything 
> planned at Manning pubs.
>
> Best regards,
>
> -Tom
>
> ___
> Rust-dev mailing list
> Rust-dev@mozilla.org
> https://mail.mozilla.org/listinfo/rust-dev
>
>
-- next part --
An HTML attachment was scrubbed...
URL:


--

Subject: Digest Footer

___
Rust-dev mailing list
Rust-dev@mozilla.org
https://mail.mozilla.org/listinfo/rust-dev


--

End of Rust-dev Digest, Vol 54, Issue 21



---
Dit e-mailbericht is gecontroleerd op virussen met Avast antivirussoftware.
http://www.avast.com

___
Rust-dev mailing list
Rust-dev@mozilla.org
https://mail.mozilla.org/listinfo/rust-dev


Re: [rust-dev] Published Rust Book?

2014-12-28 Thread Alfie John
On Sun, Dec 28, 2014 at 11:23:39AM +0100, Ivo Balbaert wrote:
>
> I heard Packt Publishing is working on a Rust book to appear around Apr
> 2015.

If the author(s) are looking for technical reviewers, contact me off list as
I'd be happy to help out if needed.

Alfie

--
Alfie John
https://www.alfie.wtf

___
Rust-dev mailing list
Rust-dev@mozilla.org
https://mail.mozilla.org/listinfo/rust-dev


Re: [rust-dev] Published Rust Book?

2014-12-28 Thread Hartmut Prochaska
Hi,

>> I heard Packt Publishing is working on a Rust book to appear around Apr
>> 2015.
> 
> If the author(s) are looking for technical reviewers, contact me off list as
> I'd be happy to help out if needed.

as I am a beginner in Rust I would be happy to help too.

best regards
Hartmut


-- 
Ideas are the only things that can change the world.
The rest is details. -- Scott Adams

new Key ID since 26.07.13: 0xD8C361E6
Fingerprint: E5B3 302B 1BE1 D0B4 F190 E739 A365 60A9 D8C3 61E6
___
Rust-dev mailing list
Rust-dev@mozilla.org
https://mail.mozilla.org/listinfo/rust-dev


[rust-dev] Rust build farm

2014-12-28 Thread Tom Browder
I notice bugs referring to pdf and build platforms without pdf capability,
which I am very interested in. Is there a system for contributing a build
host to possibly help the situation?

Best regards,

-Tom
___
Rust-dev mailing list
Rust-dev@mozilla.org
https://mail.mozilla.org/listinfo/rust-dev


Re: [rust-dev] Published Rust Book?

2014-12-28 Thread Tuncer Ayaz
On Sun, Dec 28, 2014 at 3:30 PM, Hartmut Prochaska wrote:
> Hi,
>
> > > I heard Packt Publishing is working on a Rust book to appear
> > > around Apr 2015.
> >
> > If the author(s) are looking for technical reviewers, contact me
> > off list as I'd be happy to help out if needed.
>
> as I am a beginner in Rust I would be happy to help too.

Do we know who's writing and how to get in contact?
___
Rust-dev mailing list
Rust-dev@mozilla.org
https://mail.mozilla.org/listinfo/rust-dev


[rust-dev] (FFI) Compile a dylib to x86 from a x86_64 machine and rust toolchain

2014-12-28 Thread Alfredo Di Napoli
Hello Rustacean,

I’ll go straight to the point: I’m building a small FFI library which needs
to be called
from a C++ x86 project. I cannot change the arch of the latter (it’s Doom3,
and relies on x86 arch entirely).
Thus linker reject my Rust library as “file was built for x86_64 which is
not the architecture being linked (i386)”.

Thus my question: It’s possible (without rebuilding the toolchain) to
instruct cargo to generate a x86 dylib?
Something like (fantasy syntax):

cargo build —arch-type=x86

Thanks in advance!
Alfredo
___
Rust-dev mailing list
Rust-dev@mozilla.org
https://mail.mozilla.org/listinfo/rust-dev


Re: [rust-dev] (FFI) Compile a dylib to x86 from a x86_64 machine and rust toolchain

2014-12-28 Thread Corey Richardson
You need at least a 32-bit stdlib, but you can build with `cargo build
--target i686-unknown-linux-gnu` and it will "Just Work" assuming you have
the proper libs in $PREFIX/lib/rustlib/i686-unknown-linux-gnu.
http://doc.rust-lang.org/src/rustc_back/target/mod.rs.html#330 has a list
of the built-in targets, and
http://doc.rust-lang.org/rustc_back/target/index.html has docs on how to
create your own.

On Sun, Dec 28, 2014 at 2:11 PM, Alfredo Di Napoli <
alfredo.dinap...@gmail.com> wrote:

> Hello Rustacean,
>
> I’ll go straight to the point: I’m building a small FFI library which
> needs to be called
> from a C++ x86 project. I cannot change the arch of the latter (it’s
> Doom3, and relies on x86 arch entirely).
> Thus linker reject my Rust library as “file was built for x86_64 which is
> not the architecture being linked (i386)”.
>
> Thus my question: It’s possible (without rebuilding the toolchain) to
> instruct cargo to generate a x86 dylib?
> Something like (fantasy syntax):
>
> cargo build —arch-type=x86
>
> Thanks in advance!
> Alfredo
> ___
> Rust-dev mailing list
> Rust-dev@mozilla.org
> https://mail.mozilla.org/listinfo/rust-dev
>
>


-- 
http://octayn.net/
___
Rust-dev mailing list
Rust-dev@mozilla.org
https://mail.mozilla.org/listinfo/rust-dev


Re: [rust-dev] (FFI) Compile a dylib to x86 from a x86_64 machine and rust toolchain

2014-12-28 Thread Alfredo Di Napoli
Thanks Corey,

I will have a look into this ;)

Alfredo

On Sunday, 28 December 2014, Corey Richardson  wrote:
> You need at least a 32-bit stdlib, but you can build with `cargo build
--target i686-unknown-linux-gnu` and it will "Just Work" assuming you have
the proper libs in $PREFIX/lib/rustlib/i686-unknown-linux-gnu.
http://doc.rust-lang.org/src/rustc_back/target/mod.rs.html#330 has a list
of the built-in targets, and
http://doc.rust-lang.org/rustc_back/target/index.html has docs on how to
create your own.
>
> On Sun, Dec 28, 2014 at 2:11 PM, Alfredo Di Napoli <
alfredo.dinap...@gmail.com> wrote:
>>
>> Hello Rustacean,
>>
>> I’ll go straight to the point: I’m building a small FFI library which
needs to be called
>> from a C++ x86 project. I cannot change the arch of the latter (it’s
Doom3, and relies on x86 arch entirely).
>> Thus linker reject my Rust library as “file was built for x86_64 which
is not the architecture being linked (i386)”.
>>
>> Thus my question: It’s possible (without rebuilding the toolchain) to
instruct cargo to generate a x86 dylib?
>> Something like (fantasy syntax):
>>
>> cargo build —arch-type=x86
>>
>> Thanks in advance!
>> Alfredo
>> ___
>> Rust-dev mailing list
>> Rust-dev@mozilla.org
>> https://mail.mozilla.org/listinfo/rust-dev
>>
>
>
>
> --
> http://octayn.net/
___
Rust-dev mailing list
Rust-dev@mozilla.org
https://mail.mozilla.org/listinfo/rust-dev