probonopd
probonopd
There seems to be https://worproject.com/bugtracker/my_view_page.php So is WoR-Imager not developed on GitHub, unlike the rest of the project? This makes it really cumbersome to contribute. I am not bothering to...
For the time being, we'd like to standardize on zstandard. Maybe in the future something else might be considered.
Are you saying you can't use Ubuntu 22.04 LTS (Jammy Jellyfish)?
Thank you very much for the quick response. Trying it out now.
It would be tremendously helpful if there could be a minimal "hello world" example like this (but actually working): ``` /* * sudo apt-get install libarchive-dev */ #include int main(int...
Thanks, I started with `minitar.c` and the results look promising.
Is it expected that generating a large zisofs will segfault? I followed minitar.c with minimal changes to enable zisofs generation. Works when archiving a few files but not with larger...
Using the method from http://stackoverflow.com/questions/77005/how-to-generate-a-stacktrace-when-my-gcc-c-app-crashes I get: ``` Error: signal 11: ./appimagetool(handler+0x1c)[0x401a69] /lib/x86_64-linux-gnu/libc.so.6(+0x36ff0)[0x7f2450450ff0] /usr/lib/x86_64-linux-gnu/libarchive.so.13(+0x6118e)[0x7f245084118e] /lib/x86_64-linux-gnu/libc.so.6(+0x3b779)[0x7f2450455779] /lib/x86_64-linux-gnu/libc.so.6(+0x3b4e8)[0x7f24504554e8] /lib/x86_64-linux-gnu/libc.so.6(+0x3b4e8)[0x7f24504554e8] /lib/x86_64-linux-gnu/libc.so.6(+0x3b4d2)[0x7f24504554d2] /lib/x86_64-linux-gnu/libc.so.6(+0x3b4e8)[0x7f24504554e8] /lib/x86_64-linux-gnu/libc.so.6(+0x3b4d2)[0x7f24504554d2] /lib/x86_64-linux-gnu/libc.so.6(+0x3b4e8)[0x7f24504554e8] ``` I guess that's not too helpful?
When I change the section to read ``` ret = archive_write_data(a, buff, len); fprintf (stderr, "archive_write_data returned %i\n", ret); ``` then I get ``` a /tmp/.mount_9oacCP/Tools/QtCreator/share/qtcreator/translation/linguist_ru.qmarchive_write_data returned 16384 archive_write_data returned...
Thanks for the detailed instructions @kientzle helps me a lot. Using the following procedure I can reproduce the issue with 100% certainty. ``` # Get and compile the tool (like...