In cmake, whenever you want to list all the available parameters, you can pass "cmake -LAH". That would output every parameters for the current project. I am looking for the bazel equivalent of it.
In bazel, as far as I know, the workflow is a bit different, since it works with environment parameters, such as:
export PYTHON_BIN_PATH=/usr/bin/python
export USE_DEFAULT_PYTHON_LIB_PATH=1
What is the bazel equivalent, to "cmake -LAH", to list all these parameters available for a project?