Tobias Hieta
Tobias Hieta
This is mostly a note for the future. Cmake just added depfile support for add_custom_command and the ninja generator. Hopefully this can be used instead of IMPLICIT_DEPENDS to calculate the...
Consider the following CMake: ```CMake add_library(foo INTERFACE IMPORTED) target_sources(foo INTERFACE foo.cpp) add_executable(bar bar.cpp) target_link_libraries(bar foo) cotire(bar) ``` That will apply the PCH settings to bar.cpp but not foo.cpp.
I just wanted to give you guys a heads up that I just landed: https://reviews.llvm.org/D128704 which makes it possible to run `clang-extdef-mapping` on the ast files directly instead of having...
**Describe the bug** If the action is triggered on `pull_request_target` instead of `pull_request` the auto-detection doesn't work. **To Reproduce** here is my action file: ``` name: "Check Python Formatting" on:...
Is there any plans of supporting Linux in this header package as well? At least for detecting and the RunOn() method.
I usually need to be online on different domains over at campfire. I really miss this function in snakefire.
Add keyboard shortcuts to switch tabs. Preferably alt+num and alt+shift+right/left to move between them.
With clang-cl 18.1, LLVM release/18.x branch, latest develop branch 137bc8451cbfb3892c7342572c68f42157302b8e ``` 14:58:35 C:\code\llvm\llvm.packageci\git\rpmalloc\rpmalloc\rpmalloc.c(268,17): error : call to undeclared function '_lzcnt_u64'; ISO C99 and later do not support implicit function declarations...
Running `conan install -u` on my conanfile that links in 10 different packages takes almost 30 seconds when nothing gets updated. My guess is that it does something like: ```py...
* Grab latest LLVM * Install n2 as `ninja` in the PATH * `cmake -GNinja ../llvm` * `ninja` -> cmake being re-built This might be something in the LLVM CMake...