mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
Merge branch 'unstable' of https://git01.codeplex.com/z3 into unstable
This commit is contained in:
commit
f161f455df
2 changed files with 6 additions and 3 deletions
|
@ -50,6 +50,9 @@ void error(const char * msg) {
|
|||
exit(ERR_CMD_LINE);
|
||||
}
|
||||
|
||||
#define STRINGIZE(x) #x
|
||||
#define STRINGIZE_VALUE_OF(x) STRINGIZE(x)
|
||||
|
||||
void display_usage() {
|
||||
std::cout << "Z3 [version " << Z3_MAJOR_VERSION << "." << Z3_MINOR_VERSION << "." << Z3_BUILD_NUMBER;
|
||||
std::cout << " - ";
|
||||
|
@ -60,7 +63,7 @@ void display_usage() {
|
|||
#endif
|
||||
std::cout << " bit";
|
||||
#ifdef Z3GITHASH
|
||||
std::cout << " - build hashcode " << Z3GITHASH;
|
||||
std::cout << " - build hashcode " << STRINGIZE_VALUE_OF(Z3GITHASH);
|
||||
#endif
|
||||
std::cout << "]. (C) Copyright 2006-2013 Microsoft Corp.\n";
|
||||
std::cout << "Usage: z3 [options] [-file:]file\n";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue