Palle Girgensohn
Palle Girgensohn
Just creating a new 12.0-current is quite quick: `poudriere jail -c -j 120-amd64-2 -v 12.0-ALPHA9 -m http`
The suggested config does not help. The random port is still listening on all interfaces: ``` $ sockstat|grep collect root collectd 94526 4 dgram -> /var/run/logpriv root collectd 94526 9...
It seems to me this port is something else than ReportStats. It certainly does not help configuring as per suggestion above. Any ideas?
Indeed, seems to be exactly the problem. I worked around my problem by installing using UEFI. Seems to med they describe exactly the problem I experienced. Palle > 26 feb....
See the attached log above ☝️ Looks like ``` --target i686-unknown-freebsd ```
``` % rustc --print=cfg --target i686-unknown-freebsd | grep sse debug_assertions ``` Seems like rust is configured for pentiumpro (no SSEx) in the FreeBSD ports tree? See https://github.com/freebsd/freebsd-ports/blob/main/lang/rust/files/patch-compiler_rustc__target_src_spec_targets_i686__unknown__freebsd.rs
Hi! I'm the "porter" for fluent-bit to FreeBSD. I guess, since you don't support the platform, I'm trying to do that for you. FreeBSD users are kind of used to...
So, perhaps We should just add a higher hard coded value for the coro stack? Check this code: https://github.com/fluent/fluent-bit/blob/d77c06dc6cae0eefe534435eee0fb024e3dc1021/include/fluent-bit/flb_coro.h ```c #ifdef FLB_SYSTEM_MACOS #ifdef __aarch64__ #define STACK_FACTOR 1.5 /* Use 36KiB...
ping @arsatiki do you agree bumping the coro stack as per ☝️ ?
I've hard coded to the expected valiue according to some documentaion printouts. See: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=283299 The PMAX_STACK_MIN = 4 * 512 in FreeBSD's include/pthread.h so it seems way too low in...