Pierre Krieger
Pierre Krieger
If you need some guidelines, you can take a look at: http://ashleysommer.com.au/how-to/articles/asm-js-code-using-rust-and-emscripten You no longer need to modify the source code of emscripten as they tell you in step 1,...
Thanks for the message! For the moment I'm encountering a compilation issue with the 3.5 merge (that I've posted in the fastcompo repo). If you want to try this, I...
I'm not compiling Rust with any specific option. I'm just using the regular Rust. In fact `ad9e75938` is one of the nightlies that were released a few days ago. I'm...
> From this document it looks like Rust is using LLVM 3.3. You're looking at the wrong branch. I think Rust 1.0 uses LLVM 3.6, and the nightlies and maybe...
I was trying to figure out how to write an object file and I found this issue. In case someone else is in the same situation: the `TargetMachine::write_to_file` or `TargetMachine::write_to_memory_buffer`...
`HashMap` is usually replaced with `hashbrown::HashMap`. The `hashbrown` library is actually used by the Rust standard library for its own implementation. For the `Error` trait, personally I just don't bother...
For what it's worth, my `wasm-timer`, while fully-working, is not meant to be a proper long-term solution. In my opinion, there are only two possible ways to properly handle the...
I didn't read the whole topic, but I advocated for the same thing in Rust in the past, for exactly the same reasons as the OP.
Thanks for the issue. It is very unlikely that this an osx-only issue though. The code is totally cross platform.
> Would VK_KHR_external_fence_fd extension allow us to bind a Fence to a POSIX fd, and connect vulkano with mio/tokio/futures? Probably yes, although I don't really know mio.