David DeSimone

Results 107 comments of David DeSimone

I'm also unable to reproduce this on Ubuntu. I may need some time to make a similar setup with Debian/gcc9 to try to reproduce.

We need to be careful with this - I use Cargo.lock to pin us to a version of our Deno fork. Instead of doing that, I can have different versions...

One thing our project does different then mainline is we default to using -DEMACS_EXTERNAL_INLINE . That might be related? Just a thought. We define that so we can call inline...

https://github.com/emacs-ng/emacs-ng/pull/64 addressed our JavaScript layer's usage of static mut, however there are still a number of uses in the codebase, including the code generated from `#[lisp_fn]`, the `Lisp_Fwd` struct, and...

I would call this complete, but I vote to leave it open for visibility until we can further document it somehow, or it just becomes wider known how to use...

On the JS side, I made an MVP a few months ago with https://deno.land/x/[email protected] The downside is that the user needs to install the shared library prior to executing the...

We had a similar issue with https://github.com/emacs-ng/emacs-ng/issues/25, which we fixed by merging in upstream. This may be due to an issue with the current commit of mainline emacs we are...

I am able to reproduce this issue. I was able to work around this by adding `./configure --with-nativecomp` and compiling and installing with native comp. You will need zlib and...

Update 2: Anything that performs `(require 'comp)` in the nativecomp branch that isn't compiled --with-nativecomp will result in this error. This is not specific to emacs-ng, however I vote to...

I'm curious to see if we grafted JavaScript.rs and required dependencies onto that branch if we still see the performance decrease. Correct me if I'm wrong, but I thought that...