Meriel Luna Mittelbach
Meriel Luna Mittelbach
bump. the funniest thing among all this is that ~/.steampath doesn't even point to any valid path. it goes to ~/.steam/sdk32/steam which doesn't exist
It's been nearly a year, has anything happened since?
yeah I'd be more than fine with those caveats. I actually use `nonotify` anyway and I've never seen anything I use care about the exit status of an interactive shell...
Also running into this, need to use a fallback font. U+276F is fine with the nerdfont release (or at least already has a fallback?) but U+2726 required installing extra fonts...
Compiled version `0.11-8402-d1a6e6b74` and it seems to work fine for me (on Arch Linux). Did also verify that the version used in the original post was broken on this machine...
I don't know what recording settings mGBA exposes, but I think the easiest would be to be able to save a set of default settings (or possibly multiple profiles thereof)...
Is this fixed as of the last tagged release (0.9.4)? I am running into this with a Rust file that has a "large" (400 lines) multi-line comment and slows the...
Per https://github.com/mesonbuild/meson/blob/master/docs/markdown/Release-notes-for-0.63.0.md#compiler-options-can-be-set-per-subproject it should be possible to override *all* compiler options (of which `c_args` is one) I noticed that specfiying `c_std` and `c_winlibs` works, but `c_args` and `c_link_args` doesn't. Meson...
Ended up specifying `ld` in the cross file and doing a version check: ```meson # Assume GNU binutils (ld.bfd) if find_program('ld', version: '>=2.39', required: false).found() add_project_link_arguments('-Wl,--no-warn-rwx-segments', language: 'c') endif ```...
`compiler.links` would indeed work, albeit be a little verbose, and the "minimum linkable product" code obviously can/will differ from toolchain to toolchain. What would be a good way to improve...