Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PNaCl support for Rust

I want to execute intensive computations on client side in chrome with PNaCl (and avoid C++)...Since Rust use llvm as a backend (which is the PNaCl input), it seems an interesting option.

But Rust currently uses a fork of llvm, and the only example of rust code for PNaCl I found is this hello world, and it uses a fork of Rust.

This is a great initiative (I'm trying to make it work), but I wonder if there is any plan to support PNaCl on a smoother/more reliable way (ie: with the standard Rust tool-chain)

Thanks for your help, :-)

like image 860
nicoxx Avatar asked Nov 10 '22 23:11

nicoxx


1 Answers

AFAIK, there are currently no efforts to make Rust work with PNaCl. There are efforts however to eventually remove the necessity of an LLVM fork for Rust. This should make PNaCl support easier when it happens.

like image 133
AndrewBrinker Avatar answered Dec 20 '22 00:12

AndrewBrinker