dtromb
dtromb
I'm trying to compile the release 2.1.0 on msys2. Although config/config.guess is correctly determining the platform triple (x86_64-pc-mingw64), the build fails immediately with the following error: > gcc -fno-builtin -DGLEW_NO_GLU...
Hypothetically, there are two ways that Prev/Next iterators/cursors can be implemented. It would be nice if the documentation specified which of the following two semantics occur: Situation "1": cursor positions...
I found the following text in the README.md a little bit confusing, and it ended up costing me a bunch of time / wasted code consequently: ``` Read-only transactions and...
Right now the source must by modified to use a custom malloc. From dict.c: void* (*dict_malloc_func)(size_t) = malloc; void (*dict_free_func)(void*) = free; These functions cannot be changed after compilation, so...
I am using the iterator mojo to cross-compile a resource in my project for multiple platforms: ... iterator platform amd64-linux amd64 linux amd64-windows amd64 windows .exe ... It would be...
When I am calling `Canvas::sync()` under some conditions, it is returning `Result::InsufficientCondition` (equal to 2). In the API reference (https://www.thorvg.org/apis) , this return code is undocumented, and non-specific, so I...
I installed Clang Power Tools as per the instructions on the website, then opened my CMake-based solution. There is no context menu for CPT anywhere, on the solution, on the...
### Problem description Struggling to understand this mess.... I want to do a relatively straightforward thing - define a custom command and set the options for an invocation (or multiple...