Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Why3
why3
Commits
2aec83c9
Commit
2aec83c9
authored
May 15, 2014
by
Guillaume Melquiond
Browse files
Properly reflect in "configure --help" the default setting for the --enable/disable options.
parent
30a960d8
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.in
View file @
2aec83c9
...
...
@@ -48,95 +48,95 @@ AC_INIT(src/)
# verbosemake
AC_ARG_ENABLE(verbose-make,
[
--enable-verbose-make
verbose makefile
command
s],,
AS_HELP_STRING([
--enable-verbose-make
], [
verbose makefile
recipe
s]
)
,,
enable_verbose_make=no)
# LOCAL_CONF
AC_ARG_ENABLE(local,
[
--enable-local
use Why3 in the build directory (no installation)],,
AS_HELP_STRING([
--enable-local
], [
use Why3 in the build directory (no installation)]
)
,,
enable_local=no)
# RELOCATABLE INSTALLATION
AC_ARG_ENABLE(relocation,
[
--enable-relocation
allow for later relocation of Why3 installation],,
AS_HELP_STRING([
--enable-relocation
], [
allow for later relocation of Why3 installation]
)
,,
enable_relocation=no)
# NATIVE
AC_ARG_ENABLE(native-code,
[ --enable-native-code use the nativ
e-code compiler
if available
],,
AS_HELP_STRING([--disable-native-code], [use only the byt
e-code compiler]
)
,,
enable_native_code=yes)
# Zarith
AC_ARG_ENABLE(zarith,
[ --enable-zarith use extra
ar
b
it
rary-precision lib Zarith]
,,
AS_HELP_STRING([--disable-zarith], [use Nums instead of Z
arit
h for computations])
,,
enable_zarith=yes)
# IDE
AC_ARG_ENABLE(ide,
[ --enable-ide enable
Why3 IDE],,
AS_HELP_STRING([--disable-ide], [do not build
Why3 IDE]
)
,,
enable_ide=yes)
# Bench
AC_ARG_ENABLE(bench,
[ --enable-bench enable
Why3 benchmarking tool],,
AS_HELP_STRING([--disable-bench], [do not build
Why3 benchmarking tool]
)
,,
enable_bench=yes)
# Coq tactic and libraries
AC_ARG_ENABLE(coq-tactic,
[ --enable-coq-tactic enable
Coq "why3" tactic],,
AS_HELP_STRING([--disable-coq-tactic], [do not build
Coq "why3" tactic]
)
,,
enable_coq_tactic=yes)
AC_ARG_ENABLE(coq-libs,
[ --enable-coq-libs enable
Coq realizations],,
AS_HELP_STRING([--disable-coq-libs], [do not build
Coq realizations]
)
,,
enable_coq_libs=yes)
# PVS libraries
AC_ARG_ENABLE(pvs-libs,
[ --enable-pvs-libs enable
PVS realizations],,
AS_HELP_STRING([--disable-pvs-libs], [do not build
PVS realizations]
)
,,
enable_pvs_libs=yes)
# Isabelle libraries
AC_ARG_ENABLE(isabelle-libs,
[ --en
able-isabelle-libs
enable
Isabelle realizations],,
AS_HELP_STRING([--dis
able-isabelle-libs
], [do not build
Isabelle realizations]
)
,,
enable_isabelle_libs=yes)
# hypothesis selection
AC_ARG_ENABLE(hypothesis-selection,
[ --en
able-hypothesis-selection
enable
hypothesis selection
support
],,
AS_HELP_STRING([--dis
able-hypothesis-selection
], [do not support
hypothesis selection]
)
,,
enable_hypothesis_selection=yes)
# documentation
AC_ARG_ENABLE(doc,
[ --enable-doc
build documentation],,
AS_HELP_STRING([--disable-doc], [do not
build documentation]
)
,,
enable_doc=yes)
AC_ARG_ENABLE(html-doc,
[
--enable-html-doc
build HTML documentation],,
AS_HELP_STRING([
--enable-html-doc
], [do not
build HTML documentation]
)
,,
enable_html_doc=yes)
# Experimental Jessie3 Frama-C plugin, disabled by default
AC_ARG_ENABLE(frama-c,
[
--enable-frama-c
enable Frama-C plugin],,
AS_HELP_STRING([
--enable-frama-c
], [
enable Frama-C plugin]
)
,,
[enable_frama_c=no
reason_frama_c=" (disabled by default)"])
# profiling
AC_ARG_ENABLE(profiling,
[
--enable-profiling
enable profiling],,
AS_HELP_STRING([
--enable-profiling
], [
enable profiling]
)
,,
enable_profiling=no)
# either relocation or local, not both
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment