April 22, 2015
Thanks to reddit, I looked into how we could emulate Java Applets using D for Chrome.

For those who don't know, Chrome supports two plugin architectures (ignoring npapi). NaCL and PNaCL.
PNaCL is the interesting one. It is "portable". Basically it uses llvm bitcode. There are some limitations[0].

So the question, has anyone played around with PNaCL with ldc? (I'm not setup to do this myself and don't intend to)

[0] https://developer.chrome.com/native-client/reference/pnacl-bitcode-abi
April 30, 2015
On Wednesday, 22 April 2015 at 03:13:57 UTC, Rikki Cattermole wrote:
> Thanks to reddit, I looked into how we could emulate Java Applets using D for Chrome.
>
> For those who don't know, Chrome supports two plugin architectures (ignoring npapi). NaCL and PNaCL.
> PNaCL is the interesting one. It is "portable". Basically it uses llvm bitcode. There are some limitations[0].
>
> So the question, has anyone played around with PNaCL with ldc? (I'm not setup to do this myself and don't intend to)
>
> [0] https://developer.chrome.com/native-client/reference/pnacl-bitcode-abi

Hi Rikki!

See https://github.com/ldc-developers/ldc/issues/827 and https://github.com/ldc-developers/ldc/issues/800.

Contributions are always welcome!

Regards,
Kai