therealkenc

Results 43 comments of therealkenc

The ffmpeg Ballmer commandline plays without error for me with mintty on WSL, for what it's worth. I configured with `--enable-libsixel --enable-libquvi --enable-openssl`. I do have a question regarding the...

Thanks. Apologies for my ignorance about Sixel being palette based only. The libgl demo starts up instantly on my computer with WSL. though there appears to be a memory leak...

I confirmed the leak with Cygwin. It's easy to reproduce. If you run `img2sixel egret.jpg` just once, you'll see the commit size for mintty go up by around 1kb. If...

Sorry I should have thought to check that upfront. 2.6.1 that ships with Cygwin is fine. Wsltty shipped off [master](https://github.com/mintty/wsltty/blob/master/makefile#L35) on Sept 19th so that explains why I'm seeing the...

Weird. Mintty off master is indeed fine, but I just double-checked wsltty [0.6.0](https://github.com/mintty/wsltty/releases) prebuilt leaks. No idea why. So apologies for the confusion. I saw wsltty pulls off master and...

I would like to use this scenario also. The Linux-ish platform I am using is [WSL](https://github.com/Microsoft/BashOnWindows), which is capable of running gdbserver but not VS Code. I have tried using...

Remote gdb debugging (old school) to WSL works well, as does VC++ for Linux. I should have been more clear; it works, I just haven't had "much luck" because there's...

I think [`AllKeys`](https://github.com/google/jni-bind/blob/main/implementation/proxy.h#L53) is the culprit too, but I don't get entirely what is causing the collision, since on llvm/clang x86_64-pc-windows-msvc, `jint` is a 32-bit `long` and `jlong` is `__int64`....

> 32 bit but only on Windows No, `jint` is 32-bit on WIndows and 32-bit on Linux. Because Java `int` is 32-bits everywhere in the universe. The difference is Linux...

I took this a _little_ further, but couldn't take it home. Some ascii art annotations on the error message inline commented with `AllKeys` from [`proxy.h`](https://github.com/google/jni-bind/blob/main/implementation/proxy.h#L53): ``` // error: static assertion...