If you're talking of any build created by any developer, then the answer is you can't, because even if you know the base revision the binary was created from, you don't know whether the developer had local modifications.
If you're talking about released software: Your binaries should have a version number attached and you should find a label/tag/branch with that version number in your repository.
Of course, there's ways to automate this (keyword expansion come to mind, or an automated build script getting the version from the tag name), but in the end it all boils down to these three:
- automated builds on a dedicated machine (preferably some GUI that you just throw a tag/label at)
- version numbers in binaries
- tags/labels/branches for released versions in the SCM.