Keith Smiley
Keith Smiley
The last official jq release, and the one these rules are currently using, was released in 2018, it sounds like the project is still alive https://github.com/stedolan/jq/issues/2305 but changes aren't happening...
This moves the lldb importing above all the command mapping so if importing fails we don't register any commands that wouldn't actually work. In the case of things that were...
If vim / neovim is installed via brew, it uses python installed from brew, which fails to import lldb from Xcode 12. Example failure: ``` % /usr/local/Cellar/[email protected]/3.8.5/bin/python3 Python 3.8.5 (default,...
This is useful for debugging. Without it being in these lists the static archive fails
For builds that require Xcode, running xcode_locator during toolchain setup is potentially duplicative. The only things it's used for is to check that they exist if it's expected, and to...
This change implements the suggestions from https://github.com/trybka/scraps/blob/f78a7fdb3a05a0d46ac4e1ba69e223157c966028/Apple_Stripping.md#proposal Previously stripping for Apple platforms had a few different cases: 1. Passing `--strip=always` / `--strip=sometimes` + fastbuild passes `-Wl,-S` to link invocations 2....
It seems that with the java implementation of cc_binary, the pdb_file was always output even if the explicit output group wasn't requested because of: https://github.com/bazelbuild/bazel/blob/a67c823938dcc426952d25b3a68b825cbe5f6586/src/main/java/com/google/devtools/build/lib/rules/cpp/CcLinkingHelper.java#L809-L811 This mirrors that behavior. If...
Starting with Swift 5.8 there is a warning if you use a typealias that aliases a type from a module that you don't import. This handles that case by extracting...
With this code: ```swift struct Thing { init() { self.abc = 1 } } ``` The compiler crashes: ``` error: compile command failed due to signal 6 (use -v to...
With this code: ```swift class Store { var currentState: State { fatalError() } } class CompositeStore: Store { let store: (repeat Store) let combine: ((repeat (each State)) -> CompositeState) override...