Martin Storsjö
Martin Storsjö
It would be nice to have a new release from the latest code in git. The latest release is from 2017 (which isn't an issue in itself as the binary...
$subject, a test case (both a simple one and the full-blown one that triggered it in the user case) exists in https://github.com/mstorsjo/c99-to-c89/commit/enum-cast.
This input gets converted incorrectly int main () { for( int i = 0; i < 9; i++ ); return 0; } into this: int main () { { int...
The MSYS2 runtime does some amount of interpretation of its own of the incoming command line string (which mostly is a feature, I guess). However the MSYS2 (or cygwin I...
This is now required in order to be able to build with the very latest llvm-project from git main.
When integrating with other github actions, many allow specifying either a branch name or a commit id in the same field, such as the `ref` field in https://github.com/actions/checkout. It would...
We're already setting `${VCPKG_CRT_LINK_FLAG_PREFIX}d` here, which expands to either `/MDd` or `/MTd`. When the compiler is given either of these options, it implicitly sets the `_DEBUG` define. Therefore, explicitly passing...
This is a draft for various fixes needed for using the libcxx C++23 `import std` modules (plus a bunch of other commits for testing it in the github actions pipelines,...
This makes building work, if there are spaces in the path to the Xcode used for building (in particular, the user may point to a nondefault version of Xcode by...