BDJ
BDJ
See: https://github.com/SanderMertens/bake/blob/ef8b8809f1cf5594323807a90513c557a9a7f7ee/util/src/load.c#L1063 [Bake's README](https://github.com/SanderMertens/bake#environment-variables) lists "BAKE_ARCHITECTURE" as the environment variable used to specify processor architecture, but the line referenced above stores the initialized value in "BAKE_ARCH". Would it be okay...
`bake_util.h` and `posix.proc.c` both rely on ptrace. I don't think ptrace is part of the POSIX standard ([assuming the Wikipedia page is accurate](https://en.wikipedia.org/wiki/C_POSIX_library)). macOS still includes the header in its...
When the target OS is specified in the `BAKE_OS` environment variable, and when the target OS is different than the host OS, `os` template functions will fail to match against...
Given the input string "A\nB", the Tehreer stack will crash when creating the second line of the run. The fix is to pass the paragraph starting offset to `SBParagraphCreateLine(...)` here:...
I believe the variable assigned on this line should be of type `SBInteger` rather than `SBUInteger` since it can receive a negative value: https://github.com/unicode-org/text-rendering-tests/blob/f9535a12551d2fb25d8288547692271ebef38c35/src/fonttest/tehreerstack_line.cpp#L113
I had an error in my program that caused the stack to overflow. When I tried stepping through my code in the RAD debugger, I would get strange behaviour, like...
Negative signs don't get the green font colour treatment when the UI displays numeric values. This makes it hard for me to see, at a glance, if a number is...
I notice I'm losing precious seconds of concentration whenever I want to inspect the value of a variable within the Locals panel; I always have trouble simply finding the variable...