Alexander Egorenkov
Alexander Egorenkov
Hi all, I also have a MacBook Pro 11,5 and running Void Linux with Linux 4.11.11. I have a blackscreen when I disable DIS and enable IDG. I have macOS...
I'm seeing the same issue, tvheadend is enabled as well.
I have the same error when trying to cross-compile gitui for OpenWRT ARM.
hmm, in my opinion cargo does everything right, if your Cargo.toml allows such dependency updates. why not correct it in Cargo.toml, apparently you specified your dependency versions not strict enough...
> info proc mappings thanks for the hints! ``` Program received signal SIGSEGV, Segmentation fault. 0xb6fd8d18 in strlen (s=) at src/string/strlen.c:17 17 for (w = (const void *)s; !HASZERO(*w); w++);...
More useful backtrace with `-g -O0`: ``` Program received signal SIGSEGV, Segmentation fault. 0xb6fd8d18 in strlen (s=, s@entry=0x5c8 ) at src/string/strlen.c:17 17 for (w = (const void *)s; !HASZERO(*w); w++);...
> LC_ALL Yes, i noticed that too, Perl seems to crash while parsing LC_ALL :rofl: The problem disappears with `export LC_ALL=C` or `export LC_ALL=en_US.UTF-8`.
I think something goes wrong in `locale.c` (generated file ???) of Perl ``` /* diag_listed_as: panic: %s */ Perl_croak(aTHX_ "%s: %" LINE_Tf ": panic: %s%s%s\n", __FILE__, immediate_caller_line, msg, errno_text, called_by);...
Look what i found while re-compiling Perl: ``` locale.c: In function 'Perl_locale_panic': locale.c:1089:37: warning: unknown conversion type character '\x0a' in format [-Wformat=] 1089 | called_by = Perl_form(aTHX_ "\nCalled by %s:...
Okay, `U32uf` seems to be a Perl-specific format string specifier: https://perldoc.perl.org/5.37.3/perl5372delta#Internal-Changes. The above warnings can be ignored then.