LeeTibbert
LeeTibbert
OK, progress, if not a solution. SN 0.5.9 changed from a default "-std=gnu99" to a "-std=c11" and did not describe the change. The change to a 14 year old standard...
Following up on @ekrich suggestion `#define _POSIX_C_SOURCE 202405L // Open Group 2024 Issue 8` The comment grounds the magic number. Using Issue 8 value of 202405 rather than empty or...
Thank you for this PR. You know the CE build environment and there are plenty of log files. I would have gotten lost. The code in `https://github.com/scala-native/scala-native/pull/4523/files` Eric linked above...
Do you think the errors in the log file have to do with 0.5.9 or with _Mumble_SOURCE? If the former, I will give things a closer look. I took a...
> Stacktraces broke at least on ARM Linux (scala-native; 2.13 and 3); 2 examples: > > * https://github.com/typelevel/cats-effect/actions/runs/18574362636/job/52958750712#step:22:1975 > > * https://github.com/typelevel/cats-effect/actions/runs/18574362636/job/52956834671#step:22:3670 Yes, there were some stack trace changes in...
A suggestion following up on a suggestion by @ekrich in CE Issue #4509. `#define _POSIX_C_SOURCE 202405L // Open Group 2024 Issue 8`
> The stacktrace thing is this: https://github.com/scala-native/scala-native/issues/4526. Thank you for the SN Issue. Wojciech will see the discussion there. Do you happen to know what happens if you toggle `.generateFunctionSourcePositions(false)`...
`e40493b` seemed to do the trick & move in a desired direction to boot. I think I found the SN NullPointerException which was killing `skunk` (I think that is another...
> > Do you think the errors in the log file have to do with 0.5.9 or with _Mumble_SOURCE? > > Which errors, in which log file? Overcome by events,...
s5bug: I like block you suggested about incompatible prior POSIX/Open_Group versions being specified. Thank you, I'll have to remember it. ``` #if defined(_POSIX_C_SOURCE) #if _POSIX_C_SOURCE < 123456L #error ... #endif...