ssoher —
Oh thank you, learning C with by-default enabled gcc extensions is not a good idea I guess but I d…
That test_instance declaration is not valid C11 code. It is C++ GNU extension. GCC and clang with …
ssoher —
Switched everything to msvc cl and batch files (instead of the previous gcc or clang and makefile)…
ssoher —
Thanks for sharing, I wasn't aware of this project. It doesn't seem to offer any advantage for my …
"I think I should go with VS Build Tools and Windows 10 SDK for the least amount of headaches." Ma…
Jens —
Lots of stuffs have been going on, but before that... ... I was just going to make a small little …
ssoher —
Ah, even more reasons to switch to msvc and compile with cl instead of using msvc runtime through …
Note that there are different problem here than just using "mingw". When you use clang you need to…
ssoher —
Interesting, thanks for taking the time to inspect the process and coming up with workarounds. In …
There are a few issues that are causing address santizer built with the mingw toolchain to fail to…
ssoher —
Thank you for the reply, I will experiment with the cl driver when I have the time. Please let me …
RemedyBG has support for address santizer though testing has been primary with MSVC (e.g., cl /Z7 …
ssoher —
I'm using llvm-mingw (llvm-mingw-20240417-ucrt-x86_64) to compile my C11 program on Windows 10. ()…
Week update: -An alternative day-3 with the shm implementation suggested by Mārtiņš Možeiko, i…
It's okay, just wanted to make sure I wasn't doing something stupid. I'm really enjoying the debug…
Latest update to RemedyBG, 0.4.0.1, is now available for download at UI: added separate setting f…
I can't think of a shorter way than what you've written. Once custom formatters are built this sho…
Hi, I've recently started using RemedyBG and I have a simple question. I have an array of floats t…
You can check in the "Modules" panel if the PDB for your executable is correctly loaded. I think t…
cee30 —
Hi, when I debug a build using RemedyBG on a machine with the .exe, .pdb, and access to the source…
LAG —
Thanks for the tip, i will check this before doing the video on day-3, though i am currently avoid…
You can increase performance of drawing image with xcb by using shared memory extension for images…
LAG —
Over the week i've been working on a adaptation of some of handmade hero's code, for window,to lin…
but those functions also use stack space, overwriting your shared data value with garbage This is …
Defining a character other than '.' for displaying NULL or other non-display characters in the wat…
I apologize if some of these requests are already implemented or if someone else has already sugge…
RemedyBG 0.4.0.0 is now available for download with the following improvements and bug fixes: :UI:…
I made a note of this. Appreciate the suggestion!
Hi, I'm looking for some people to test modifications to 4coder in the community fork. The modific…
Assert like that most likely fails because your shared data is stored on stack of main thread. Whe…