Include SOL_VERSION_COMMIT/SOL_VERSION_PLATFORM in buildinfo.h

This commit is contained in:
Alex Beregszaszi
2017-01-17 12:54:58 +00:00
parent 350c7e7e2c
commit 4675599170
3 changed files with 6 additions and 1 deletions
+2 -1
View File
@@ -40,7 +40,8 @@ string const dev::solidity::VersionString =
string const dev::solidity::VersionStringStrict =
string(dev::solidity::VersionNumber) +
(string(SOL_VERSION_PRERELEASE).empty() ? "" : "-" + string(SOL_VERSION_PRERELEASE));
(string(SOL_VERSION_PRERELEASE).empty() ? "" : "-" + string(SOL_VERSION_PRERELEASE)) +
(string(SOL_VERSION_COMMIT).empty() ? "" : "+" + string(SOL_VERSION_COMMIT));
bytes dev::solidity::binaryVersion()
{