Dylan Baker
Dylan Baker
Okay, that article is very helpful. I've opened 13079 as a starting point, which adds the `-Xpreprocessor` (Unfortunately my Mac is very old and not at hand). How exactly to...
This is particular to the Clang shipped by Apple as part of XCode, this abstraction should not get used for Clang from MacPorts or Homebrew or Nix.
Unless you're bisecting Meson itself, you shouldn't need to reconfigure from scratch across a bisect like that. Meson, if working correctly, should have configured ninja in such a way that...
What I want is basically the equivalent of: ```python def test_func(): with pytest.raises(Exception): func('Invalid input') ``` but for mypy errors. I want to verify that an error *is* happening. My...
I'm not sure I have a good enough grasp on how C++20 modules are supposed to work, does anyone have a link to a good overview of them?
Sigh, I love committee hand waving. Does GCC or Clang have any documents on how their implementation is supposed to work? I'm dreading trying to get this information out of...
Unless the ninja patches go upstream I don't think we can rely on ninja for this. We'll also have to figure out what XCode and VS are going to do...
Failures look relavent
Fixed a couple more typos (as well as the one mensida caught). Also made the test more accurate (fixed mingw)
No, this isn't an introspection thing. If you write code that calls `pthread_init`, you *need* the threading implementation to be pthreads. If your code calls `CreateThread` you *need* to have...