Marcus Harrison

Results 6 comments of Marcus Harrison

I've been able to confirm that using an X11 server to an X11 client doesn't produce wrong keys, the keys typed are the keys received.

Hello, In my case, I was using `find_library` to find a library I have built with emscripten and installed to a custom, separate prefix, e.g. `~/devel/emsdk-prefix/{lib,include,etc.}`. When I'm using a...

Perfect, I'll have a closer look at configuring the CMake search paths for the `find_*` functions. Tainting the sysroot sounds fragile, but at least it's an option if I can't...

Alright, I was able to find a solution I'm happy with. The emscripten cmake toolchain file sets: ```cmake if (NOT CMAKE_FIND_ROOT_PATH_MODE_LIBRARY) set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) endif() ``` which means the `CMAKE_FIND_ROOT_PATH` is...

Sorry for the pipeline noise, I'll try to get it working on my own remote prior to opening a PR next time.

> I'm unclear how this is intended to be used. It seems like it sets up a hard coded file descriptor 3 which the child can use for reading from...