aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authormsozeau2008-05-17 07:12:05 +0000
committermsozeau2008-05-17 07:12:05 +0000
commit9e7bddc09f965e3a9caa23ca4723f893017351cb (patch)
tree9a91b8988b4236ec2871c778a855e5ca75bc9e66 /configure
parent6c4cb0b91468ac0f7bc95d79f89b88417628127a (diff)
Fix a de Bruijn bug in setoid_rewrite when rewriting under
a non-dependent product under a lambda. Now qiff can be replaced by a simple setoid_rewrite in NumPrelude. Change configure to not do stripping if compiling with -g... Add -g / CAMLDEBUG flags to the native compilation command too. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10941 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 1771756c85..07bea069a7 100755
--- a/configure
+++ b/configure
@@ -271,7 +271,7 @@ case $ARCH in
# true -> strip : it exists under cygwin !
STRIPCOMMAND="strip";;
*)
- if [ "$coq_profile_flag" = "-p" ] ; then
+ if [ "$coq_profile_flag" = "-p" ] || [ "$coq_debug_flag" = "-g" ]; then
STRIPCOMMAND="true"
else
STRIPCOMMAND="strip"
@@ -579,7 +579,7 @@ case $ARCH in
# true -> strip : it exists under cygwin !
STRIPCOMMAND="strip";;
*)
- if [ "$coq_profile_flag" = "-p" ] ; then
+ if [ "$coq_profile_flag" = "-p" ] || [ "$coq_debug_flag" = "-g" ]; then
STRIPCOMMAND="true"
else
STRIPCOMMAND="strip"