Dimo Markov
Dimo Markov
Had the same problem recently, it's a speculation, but I think it is due to a lack of `-DDEBUG_ASSERT_DISABLE` in release builds. Hope that's useful.
Is there any progress on this issue? I'm having a similar problem - testing a pool allocator, that quickly consumes the entire system memory, resulting in an invalid test: ```...
Is there any update on this feature request? Has anyone figured how to do it?
I might do some experiments soon, I'll keep you posted. My plan is to expose and cache benchmark results in an easily parse-able file everytime they're executed, indexed by the...
Hi there, sorry for interrupting, @ntropy83, but I noticed that you use modern CMake version, so [here's how I managed to add physfs to my engine's plugin module](https://github.com/Langulus/Mod-FileSystem/blob/main/CMakeLists.txt), might give...
I believe you should link against the target `physfs-static` [here](https://github.com/ntropy83/tinyGameEngine/blob/2e868261d1cad2a13d0368a6c16545738bdf7e1a/CMakeLists.txt#L91), you are currently linking against the shared library target `physfs` @ntropy83
The provided approach had bad corner cases where it cropped names wrongly, if they ended up with similar characters, so I took the liberty to [improve on the snippet](https://godbolt.org/z/7YPh58n6s). When...
~Did some more tinkering, trying to implement that mechanism on a working code base, and GCC/Clang gave me a lot of grief. [Only Clang-Cl 16.0.6 reports bad function_name()](https://github.com/Langulus/Langulus/actions/runs/8066007765/job/22033136255#step:9:17) output, while...
I am currently experiencing the same problem while building with Clang-Cl on Windows (Clang 17.0.3 with MSVC-like command-line) while linking some code using the `simde_mm_floor_ps` and `simde_mm_floor_pd`: `windows-clang-cl-x64-debug\lld-link : error...
I was able to fix error 1.b by changing this check, which reenables native SVML for MSVC, while ignoring potential /arch:SSE: https://github.com/simd-everywhere/simde/blob/e651ec360f22d5f9d7fb2c75c5025db614f78b8c/simde/simde-features.h#L295-L299 to ```c++ #if !defined(SIMDE_X86_SVML_NATIVE) && !defined(SIMDE_X86_SVML_NO_NATIVE) && !defined(SIMDE_NO_NATIVE)...