-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-Use git tag and latest commit as version value
- Loading branch information
1 parent
ed160db
commit 4b03cbd
Showing
2 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,7 +45,7 @@ | |
#include "TestSymbolsA.h" | ||
#include "TestSymbolsB.h" | ||
|
||
const char *argp_program_version = "juicer 0.1"; | ||
const char *argp_program_version = JUICER_VERSION; // JUICER_VERSION macro is generated by build | ||
const char *argp_program_bug_address = "<[email protected]>"; | ||
|
||
/* Program documentation. */ | ||
|
@@ -56,7 +56,7 @@ static char doc[] = | |
/* A description of the arguments we accept. */ | ||
static char args_doc[] = | ||
"--input <FILE> --mode <MODE> (--output <FILE> | " | ||
"(--address <ADDR> --port <PORT> --project <PROJ>)) -x -g"; | ||
"(--address <ADDR> --port <PORT> --project <PROJ>)) -x -g --version"; | ||
|
||
/* The options we understand. */ | ||
static struct argp_option options[] = {{"input", 'i', "FILE", 0, "Input ELF file"}, | ||
|