Skip to content

Commit

Permalink
it compiles now
Browse files Browse the repository at this point in the history
  • Loading branch information
gaperez64 committed Aug 12, 2020
1 parent 173a953 commit 88658f0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ CXX = clang++
SRCS = hoatools/simplehoa.cpp hoatools/hoaparser.cpp hoatools/hoalexer.cpp
HDRS = hoatools/simplehoa.hpp hoatools/hoaparser.hpp hoatools/hoalexer.hpp

CFLAGS = -O3 -DNDEBUG
GITVER = $(shell git describe --tags)
CFLAGS = -O3 -DNDEBUG -DGITVER=\"$(GITVER)\"
DBGFLAGS = -fsanitize=address -fno-omit-frame-pointer -g

# The generated files for the parser have a sub Makefile
Expand Down
7 changes: 6 additions & 1 deletion acacia.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@
using namespace std;

void usage(char* progName) {
cout << progName << " [OPTIONS] [FILENAME]" << endl
#ifdef GITVER
cout << progName << " version: " << GITVER << endl;
#endif
cout << "Usage: " << progName
<< " [OPTIONS] [FILENAME]" << endl
<< "Synthesis solving for universal co-Buchi specifications"
<< endl;
}

Expand Down

0 comments on commit 88658f0

Please sign in to comment.