Skip to content
Snippets Groups Projects
Commit 5d62e596 authored by Andre Maroneze's avatar Andre Maroneze Committed by Andre Maroneze
Browse files

[Analysis-scripts] update help message

parent 3dca727a
No related branches found
No related tags found
No related merge requests found
...@@ -35,27 +35,27 @@ usage() { ...@@ -35,27 +35,27 @@ usage() {
echo " Display this help message and exit." echo " Display this help message and exit."
echo "" echo ""
echo " - make-template [dir]" echo " - make-template [dir]"
echo " Interactively prepares a template for running analysis scripts," echo " Interactively prepares a template for analyses,"
echo " writing it to [dir/GNUmakefile]. [dir] is [.frama-c] if omitted." echo " writing it to dir/GNUmakefile [default: .frama-c]."
echo "" echo ""
echo " - make-path" echo " - make-path [dir]"
echo " [for Frama-C developers and advanced users without Frama-C in the path]" echo " [for Frama-C developers and advanced users without Frama-C in the path]"
echo " Creates a frama-c-path.mk file in the current working directory." echo " Creates a path.mk file in dir [default: .frama-c]."
echo "" echo ""
echo " - list-files [path/to/compile_commands.json]" echo " - list-files [path/to/compile_commands.json]"
echo " Lists all sources in the given compile_commands.json" echo " Lists all sources in the given compile_commands.json"
echo " (defaults to './compile_commands.json' if omitted)." echo " [default: ./compile_commands.json]."
echo " Also lists files defining a 'main' function" echo " Also lists files defining a 'main' function"
echo " (heuristics-based; neither correct nor complete)." echo " (heuristics-based; neither correct nor complete)."
echo "" echo ""
echo " - flamegraph <flamegraph.txt> [dir]" echo " - flamegraph flamegraph.txt [dir]"
echo " Generates flamegraph.svg and flamegraph.html in [dir]" echo " Generates flamegraph.svg and flamegraph.html in dir"
echo " (or in the FRAMAC_SESSION directory by default)." echo " [default: FRAMAC_SESSION]."
echo " Also opens it in a browser, unless variable NOGUI is set." echo " Also opens it in a browser, unless variable NOGUI is set."
echo "" echo ""
echo " - find-fun <function-name> [dirs]" echo " - find-fun function-name [dir...]"
echo " Lists files in [dirs] declaring or defining <function-name>" echo " Lists files in dir... declaring or defining function-name"
echo " (defaults to PWD + /usr/include)." echo " [default: PWD /usr/include]."
echo " Heuristics-based: neither correct nor complete." echo " Heuristics-based: neither correct nor complete."
echo "" echo ""
echo " - summary [options]" echo " - summary [options]"
...@@ -63,20 +63,20 @@ usage() { ...@@ -63,20 +63,20 @@ usage() {
echo " in the current PWD." echo " in the current PWD."
echo " Use $0 summary --help for more informations." echo " Use $0 summary --help for more informations."
echo "" echo ""
echo " - configure <machdep>" echo " - configure machdep"
echo " Runs an existing configure script to only consider files" echo " Runs an existing configure script to only consider files"
echo " in Frama-C's libc; this will hopefully disable non-essential" echo " in Frama-C's libc; this will hopefully disable non-essential"
echo " and non-POSIX external libraries." echo " and non-POSIX external libraries."
echo " <machdep> is necessary to define a required preprocessor symbol" echo " (run 'frama-c -machdep help' to get the list of machdeps)."
echo " (run 'frama-c -machdep' help to get the list of machdeps)."
echo "" echo ""
echo " - make-wrapper <target> <args>" echo " - make-wrapper target arg..."
echo " Runs 'make <target> <args>', parsing the output to suggest" echo " Runs 'make target arg...', parsing the output to suggest"
echo " useful commands in case of failure." echo " useful commands in case of failure."
echo "" echo ""
echo " - normalize-jcdb [path/to/compile_commands.json]" echo " - normalize-jcdb [path/to/compile_commands.json]"
echo " Applies some transformations to an existing compile_commands.json" echo " Applies some transformations to an existing compile_commands.json"
echo " (such as relativizing paths) to improve portability" echo " (such as relativizing paths) to improve portability."
echo " [default: ./compile_commands.json]"
exit $1 exit $1
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment