Leon Timmermans

Results 377 comments of Leon Timmermans

Can you try to run it in a debugger and get us a backtrace? (E.g. gdb or [Devel::cst](https://metacpan.org/pod/Devel::cst))

This looks like the kind of issue that requires @khwilliamson 's attention.

That sounds like that locale should be deallocated in `LOCALE_TERM` instead? Also, #19031 may be necessary for this to work completely as expected.

It should precompile, so that shouldn't be an issue anymore. It certainly was in the past though.

Yeah, the return value of `GetOptions` should be checked

> Is perlbrew compatible with an env ARCHFLAGS='-arch arm64 -arch arm64e -arch x86_64' perlbrew … approach? Why use ARCHFLAGS and not put it in ccflags/ldflags/lddlflags?

`-Wall` shouldn't cause any compilation to fail, it should cause warnings to be be printed. Can you paste the full output of the build?

> Yes, as noted -Wall was not the issue and only printed all of the errors, the offending flag was `-Wformat=security'. Diving No, the offending flag is `-Werror=format-security`, which actually...

Yeah, we had a similar issue before on Mac and ignoring these errors gave problems later on.

I have been able to reproduce it. The problem is in these innocent looking lines. ``` prng->u.fortuna.pool_idx = prng->u.fortuna.pool0_len = 0; prng->u.fortuna.reset_cnt = prng->u.fortuna.wd = 0; ``` Somehow those can...