zjturner
zjturner
If I write this on the command line: ``` buck2 query set(root//foo/...) ``` it will list all targets defined in a BUCK file within the directory `foo` or in any...
I wish I could provide a minimal repro of this. I've tried and have been unable to figure it out. Often times I introduce a cycle in my dependency tree....
I wanted to do something that I thought was pretty simple. Get all the actions for a particular target. I tried `all_actions()`, and for a while I thought that was...
How do I run buck2's self test suite? I don't see it anywhere in the open source repo, and there's no documentation about running tests that I can find. If...
On Windows and MacOS, I can simply package up the toolchain alongside all corresponding headers and libraries. Then clone them and configure my buck2 toolchain to use them by specifying...
I am trying to iterate over all configured targets, then enumerate each of their actions. aquery requires a target literal, so I can't seem to just do `aquery(...)`. So I...
We use a certain open source third party library which has some assembly files which can only be built with [nasm](https://nasm.us/). nasm has a couple of command line differences that...
Why is there a distinction in the `cxx_library()` API between preprocessor flags and compiler flags? I assumed that maybe by putting something in `preprocessor_flags`, buck2 would automatically prepend `-D`, but...