Hal Clark

Results 13 comments of Hal Clark

Thanks for checking in. I spent a bit of time porting to get a minimal openGL window with imgui vertex buffers, and got my code to compile, but none of...

Just to add a bit more detail, the error messages I get when `SDL_init` fails are "No available video device". Not sure if this will help, but here are the...

Lots of great ideas here, thanks. I'll keep working at it. On Thu, Oct 28, 2021, 23:15 Robert Winkler, ***@***.***> wrote: > That looks correct. The SetMainReady() is really only...

Here is an example of a daily CI build failing due to the glibc update on Arch: https://gitlab.com/hdeanclark/DICOMautomaton/-/pipelines/603600818

Indeed. I use Arch builds as a canary for upstream changes like this. Please see https://github.com/linuxdeploy/linuxdeploy/pull/211 . I'm not currently able to test this code.

Note: in case anyone needs a (terribly, hacky) workaround: Step 1: replace system ldd script with a wrapper: ``` mv /usr/sbin/ldd{,_orig} printf '#!/usr/bin/env bash\nldd_orig "$@" | grep -v linux-vdso |...

I'm glad it worked for you. Here is my current workaround inside a bash script: ``` ldd_path="$(which ldd)" printf 'Wrapping system ldd...\n' mv "${ldd_path}"{,_orig} printf '#!/usr/bin/env bash\nldd_orig "$@" | grep...

This commit adds Apache Thrift RPC v0.17.0 runtime libraries (note: not the thrift compiler). The build stage includes a minor 'dynamic patch' to fix Windows case-insensitivity. An upstream patch has...

Also note that I'm planning to use this for `DICOMautomaton`, which already uses MXE for Windows builds. (Thanks!!) Reference issue tracking Thrift additions for `DICOMautomaton`: https://github.com/hdclark/DICOMautomaton/issues/21

@mabrand: is this something you could take a look at?