Andrew King

Results 29 comments of Andrew King

I haven't dug too deeply into clangd usage inside of VS Code yet (esp on windows), but the standard "C/C++' extension should have intellisense out of the box (also be...

In the MS "C/C++" extension, it has its own file type (`c_cpp_properties.json`) where multiple configurations can be defined for intellisense and selected from a button. This is the same problem,...

Sorry for the delay on this -- had a bunch of life stuff to deal with. This change is available in version 0.5.0, which you can download here: https://github.com/chalet-org/chalet/releases/tag/v0.5.0

Hmm I might have forgotten to update the version in the installer - I'll fix it later in the evening (EST). It should be 0.5.0 in the executable itself, so...

Yep, that would be expected on the user side - the build system should only provide the `compile_command.json`. Enjoy! Feel free to bring up any thoughts in the [Discussions](https://github.com/chalet-org/chalet/discussions) in...

> Thanks! I tried testing it out, but it seems like the v0.5.0 installer in that release is actually v0.4.3? Is that the same for you? So, yeah, the v0.5.0...

Also need to consider: header only/single header libraries. These do not build, but can be consumed. "building" them might mean concatenating several files together, but that can be a separate...

Noticed Ninja has a long pause when it's spun up after several files w/ headers are changed. If it's not just a huccup (although it's happened multiple times), it's probably...

> Poor choice of words in the title -- this is referring to individual cpp file dependency checking (getting a list of headers) in the "native" build strategy (ie. without...

GCC Exploration: https://github.com/andrew-r-king/cpp-modules-gcc-test Issues: The module-mapper is a bizarre mechanism. It can either: 1. Be omitted - where you're at the mercy of whatever GCC does, in this case, outputs...