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
7b002aa8
Commit
7b002aa8
authored
Jul 15, 2010
by
Francois Bobot
Browse files
Add option for profiling configuration with .opt
parent
017deebd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Makefile.in
View file @
7b002aa8
...
...
@@ -62,6 +62,11 @@ CAMLP5O = @CAMLP5O@
BFLAGS
=
-w
Ae
-dtypes
-g
-I
src
$(INCLUDES)
OFLAGS
=
-w
Ae
-dtypes
-I
src
$(INCLUDES)
ifeq
(@ENABLE_PROFILING@,yes)
OFLAGS
+=
-g
-p
STRIP
=
true
endif
# external libraries common to all binaries
ifeq
(@enable_plugins@,yes)
...
...
configure.in
View file @
7b002aa8
...
...
@@ -89,6 +89,12 @@ AC_ARG_ENABLE(hypothesis-selection,
[ --enable-hypothesis-selection enable hypothesis selection support],,
enable_hypothesis_selection=yes)
# profiling
ENABLE_PROFILING=yes
AC_ARG_ENABLE(profiling,
[ --enable-profiling enable profiling],,
ENABLE_PROFILING=no)
# Check for arch/OS
AC_MSG_CHECKING(executable suffix)
...
...
@@ -308,6 +314,7 @@ AC_SUBST(OCAMLDOC)
AC_SUBST(OCAMLBEST)
AC_SUBST(OCAMLVERSION)
AC_SUBST(OCAMLLIB)
AC_SUBST(ENABLE_PROFILING)
dnl AC_SUBST(OCAMLV)
dnl AC_SUBST(FORPACK)
dnl AC_SUBST(OCAMLGRAPHLIB)
...
...
@@ -359,3 +366,4 @@ if test "$enable_coq_support" = "yes" ; then
fi
echo "tptp2why support : $enable_tptp2why_support"
echo "hypothesis selection : $enable_hypothesis_selection"
echo "profiling : $ENABLE_PROFILING"
\ No newline at end of file
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