Benjamin Mordaunt
Benjamin Mordaunt
### Description / Steps to reproduce the issue 1) Launch MSYS2 terminal. 2) Run "gdb". 3) Attach to a running process with "attach \". 4) Press "c" to continue past...
### Description **NOTE**: I am listing this as a bug as I believe UNIQUE SIZE must sum to the total image occupancy as reported by `docker system df`. The output...
The autocomplete suggestions rich overlay will auto-select the first suggested item, meaning pressing \ e.g. to insert a new line will instead insert the suggestion. This is pretty bad behaviour...
A common pattern I am using in my benchmarking code is: ``` for (auto _ : state) { state.PauseTiming(); /* Generate some data for this iteration, or cleanup from the...
**Describe the bug** The binary `cpp` is the C preprocessor, not the C++ compiler. My build scripts use `cpp` to preprocess linker scripts and use `find_program('cpp')`. When following the docs...
There are some **_serious_** issues around quoting all throughout this repo, which renders it completely ineffective for environments which may contain spaces in paths. For example, if a user has...
https://github.com/bazel-contrib/rules_foreign_cc/blob/0bcec88406255e56dbb595b6c477de6e9c78c3a3/foreign_cc/private/cmake_script.bzl#L148 In specific scenarios, `CMAKE_RANLIB` will be injected into command lines which are attempting to use the empty string as a command, breaking (e.g. `"" libjansson.a`). I'm not entirely sure...
Addresses #1394.
CMake does not accept paths to tools which look like `c:/msys64/mingw64/bin/gcc`, reporting "... is not a full path to an existing compiler tool." It needs to have ".exe" appended to...
Calls to `rm -rf` and `mkdir`, such as in `rm -rf $BUILD_TMPDIR` and `mkdir -p $INSTALLDIR` are not properly quoted and therefore do not handle paths containing spaces. I would...