xref: /aosp_15_r20/external/bazelbuild-rules_go/tests/examples/executable_name/README.rst (revision 9bb1b549b6a84214c53be0924760be030e66b93a)
1Executable name
2===============
3
4.. _go_binary: /docs/go/core/rules.md#go_binary
5
6The filename of the executable produced by a go_binary_ rule is unpredictale, the full path includes
7the compilation mode amongst other things, and the rules offer no backwards compatibility guarantees
8about the filename.
9For the simple case where you know exactly what you want the output filename to be, you can use a
10genrule to copy it to a well known place.
11