Redfire

Results 29 comments of Redfire

I just found that in https://discourse.mozilla.org/t/upgrading-embedding-from-115esr-to-128esr-any-big-changes/133427/2 and decided to point it out.

The errors seem to be caused by a C++ ABI issue, which is annoying, as per usual. The moment the `Range` passes to C++, all hell breaks loose and the...

Code Samples are difficult since most of will be identical with just a few functions changed. The best way would be to see what changes there are with servo itself....

The API, as implemented, is as follows: ```rs impl Heap { pub unsafe fn new(v: T) -> Heap; // New, replaces `Heap::ptr` being a pub field. pub fn pinned(v: T)...

The current version of that test already does not test for all the different variants of TypedArrays. For example, none of the `Int*Array` and `Float*Array` are tested. As such, if...

According the to the Firefox [Supported Build Targets](https://firefox-source-docs.mozilla.org/contributing/build/supported.html#tier-3-targets), mingw-gcc is not supported due to clang-bindgen. Even mingw-clang is only tier 2. If Firefox doesn't support it, I don't really think...

The issue is `CXXFLAGS` being passed to both bindgen and cc/makefile.cargo, not bindgen itself.

I would like to suggest having a feature flag or similar to enable/disable static/dynamic library-ness.