Antonio Nuno Monteiro

Results 226 comments of Antonio Nuno Monteiro

Lumo still doesn't run on ARM. I've tried to cross-compile Lumo for ARM before but didn't succeed at first and didn't spend too much time on it. This is theoretically...

That is great, and a step in the direction of having Lumo on the rPi. However, I think we should try to cross-compile for ARM. That way we can do...

@hughjfchen your help is much appreciated. My problem with cross compiling was about which packages to install and which options we needed to pass to Node.js's configure (through Nexe).

https://chrislea.com/2018/08/20/cross-compiling-node-js-for-arm-on-ubuntu/

```clj (s/def ::foo string?) ::f ``` still doesn't autocomplete to `::foo` cc @arichiardi

this is unfortunate, and I'm aware of it. The root cause of this issue is that Alpine doesn't include `glibc` (it uses `musl` instead) and Lumo is not currently compiled...

@vikeri there's also a Lumo image at https://hub.docker.com/r/anmonteiro/lumo/

This is still an upstream issue. Apparently https://dev.clojure.org/jira/browse/CLJS-2024 wasn't enough to fix it.

Submitted a fix in https://dev.clojure.org/jira/browse/CLJS-2419, will close this when a released version of ClojureScript includes the patch.

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction > Note that GeneratorFunction is not a global object. It could be obtained by evaluating the following code. ```js Object.getPrototypeOf(function*(){}).constructor ```