-
Hi, I've been setting Is there an easy way to see all the outputs that did get generated (i.e. Bazel does not know the list upfront, but sees what the commands output)? For now, I'm manually running I was also trying Thanks! Kyle |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
After a bunch of investigation, the key realization is you can look into the e.g. for In my case, the |
Beta Was this translation helpful? Give feedback.
After a bunch of investigation, the key realization is you can look into the
bazel-bin/<path to library>/copy_<library>
folder to see what was generated. So to make sure that is visible and printed out (bazel prints it out), just don't require any outputs, and then navigate to this folder and poke around.e.g. for
openssl
via http_archive, it isbazel-bin/external/openssl/copy_openssl
In my case, the
out_lib_dir
should have beenlib64
instead oflib
.