Patrick Stewart
Patrick Stewart
It's not possible to build with ninja on linux, you get the following error: ``` ninja: warning: phony target 'cryptest.exe' names itself as an input; ignoring [-w phonycycle=warn] ninja: error:...
There's a comment in the readme about not being able to add this as a submodule to cryptopp, but why not do it the other way around? It makes it...
I think the kernel module is technically using the DMA API incorrectly. dma_map_page and dma_map_single are supposed to be for 'streaming DMA' where you write to the buffer in userspace,...
Here's a second try with QT_FORWARD_DECLARE_CLASS. Apologies again for the other PR, I'm using MSVC where the way I did it before 'works'.
TEST_CASE("crash") { SUBCASE("sub") { CHECK(true); } std::jthread([] { REQUIRE(false); }); }; This test case causes doctest to try and print out its subcase stack 2^64-1 times. The same thing happens...
Fix #803, presumably this has been broken since #598.
I think because CPM avoids calling FetchContent_MakeAvailable(?), the OVERRIDE_FIND_PACKAGE argument to FetchContent_Declare doesn't work. The redirect files don't get created.
Putting outputs in Release/ folders etc is a result of using a multi-config cmake generator like Visual Studio, not of using MSVC. This fixes using ninja on windows, and presumably...
The documentation suggests that the second argument allows you to reserve memory. I was expecting to be able to use a larger value than the section size, so I could...
Without this change I get pytest errors on MSYS2 like this: ``` =================================== ERRORS ==================================== _______________ ERROR collecting test_x.py ________________ import file mismatch: imported module 'f.test_x' has this __file__ attribute:...