Ben Schattinger
Ben Schattinger
Trying to compile [a sample app](https://github.com/lights0123/example-nspire/tree/master/hello-world) for [a custom ARM target](https://github.com/lights0123/example-nspire/blob/master/armv5te-nspire-eabi.json), I get the following linker error: ``` = note: arm-none-eabi-ld: /home/benschattinger/.src/Ndless/ndless-sdk/toolchain/install/lib/gcc/arm-none-eabi/9.2.0/libgcc.a(_arm_addsubdf3.o): in function `__floatundidf': /home/benschattinger/.src/Ndless/ndless-sdk/toolchain/build/arm-none-eabi/libgcc/../../../gcc-9.2.0/libgcc/config/arm/ieee754-df.S:541: multiple definition of `__aeabi_ul2d';...
Instead of relying on a feature for `Arc`, just use `#[cfg(target_has_atomic = "ptr")]`, which is what the alloc crate uses anyways. This can be introduced as a non-breaking change as...
I'm still working on getting my game published, so I'll either get a link to you in an hour or tomorrow. I load three different GLTF files, which you can...
This is currently blocked waiting for [an LLVM bug](https://gitter.im/avr-rust/Lobby?at=5f1ca63fbc41f3681724bbba) to be fixed, but we can work on other things to get ready. [They tried to fix it](https://reviews.llvm.org/D82536), but there were...
This is required for many graphical things, e.g. GDM. Ubuntu doesn't use tmpfs on /tmp by default, so it requires the sticky bit to be set on the actual folder...
Now that I've started writing my own cargo subcommand as you recommended [on the forums](https://users.rust-lang.org/t/post-processing-of-compiled-binaries/41945/6?u=lights0123), I thought I'd share some of my findings. https://github.com/rust-console/cargo-n64/blob/1dbff85e58b2234bc58192f4c9684904a96be42c/cargo-n64/src/cargo.rs#L137 You can pass `--message-format=json-render-diagnostics` instead of...
When I edit vite.config.ts while vite is running, it prints the following error: ``` [vite] vite.config.ts changed, restarting server... TypeError: Cannot read properties of null (reading 'name') ``` This error...
As far as I can tell, currently, there is no direct, safe way to convert a `ToNapiValue` value (like a custom struct with `#[napi(object)]` to e.g. `JsUnknown`. You could round-about...
Let me start with this: I'm happy to write all this myself, but I'd like to know if this would be accepted upstream (and thus I should keep it as...
https://github.com/EventEmitter2/EventEmitter2/blob/b1fe33154283a7335ddd7f313f782dd095acecf7/eventemitter2.d.ts#L48 Otherwise, some TypeScript versions report this error when `export`ing a `EventEmitter2`: ``` error TS4082: Default export of the module has or is using private name 'WaitForFilter'. ```