Extract compiler and linker flags from Bazel

314 Views Asked by At

I need to extract the compiler flags and linker flags for a certain application that is built by Bazel.

Is there a specific command to do so?

1

There are 1 best solutions below

1
On
bazel clean # force bazel to rebuild everything  
bazel build -s //...

There are more advanced approaches, e.g.:

You can also use system tools such as strace to figure how what tools are called by Bazel and which command line parameters are involved.