Simon Farre

Results 61 comments of Simon Farre

I also have the same problem; Ryzen 3700X ```bash dmesg | head -1 [ 0.000000] Linux version 5.11.0-38-generic (buildd@lgw01-amd64-041) (gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0, GNU ld (GNU Binutils for Ubuntu) 2.34)...

I've solved this issue for my Zen-architecture desktop (Ryzen 3700X); The problem this boils down to is that UEFI Secure Boot is turned on. From what I can gather, this...

@GitMensch yes; I forgot to tag this specific issue when I submitted the changes to the script that checks for UEFI secure boot. I've only had the possibility to test...

For instance, adding GLFW to the project becomes: ```cmake include(FetchContent) FetchContent_Declare( glfw GIT_REPOSITORY https://github.com/glfw/glfw.git GIT_TAG master SOURCE_DIR ${PROJECT_SOURCE_DIR}/glfw ) FetchContent_MakeAvailable(glfw) if (NOT glfw_POPULATED) FetchContent_Populate(glfw) add_subdirectory(${glfw_SOURCE_DIR} ${glfw_BINARY_DIR}) endif () ``` And...

I'm seeing this as well. Completely makes extension development unusable. It has halted progress, dead in it's tracks.

> This has been languishing for a while due to it's sheer size. To move this forward, I propose we just review the parts of it that integrate with the...

> If you have time, this would be a good time to rebase this PR as we just shipped an rr release and don't have anything substantial planned for a...

> 1. This supports checkpointing at arbitrary marks. How much simpler would things be if we only supported checkpointing at event boundaries? We suspect what you've done is the right...

As a side note @khuey & @rocallahan - I noticed that in the `RecordFlags` `-s` is *sort of* taken - though it's not parsed by the option parsing logic. It's...

> > though it's not parsed by the option parsing logic > > Why do you think it's not parsed? Never mind. I had *entirely* missed that it was specified...