diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2011-02-14 23:01:37 +0100 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2011-02-14 23:01:37 +0100 |
commit | 356123f1446a9063580d27c9464d5319412a5a71 (patch) | |
tree | 4714ce323ebc2515e22269f1c8719e85d3933d5d /Configure | |
parent | b66a639ce641c789116a34ff68d412d8cb085f02 (diff) | |
download | perl-356123f1446a9063580d27c9464d5319412a5a71.tar.gz |
Subject: optimize matching -g still enables -DDEBUGING
From: Nicholas Clark <nick@ccl4.org>
Date: Mon, 14 Feb 2011 16:01:49 +0000
Message-ID: <20110214160149.GU24189@plum.flirble.org>
INSTALL says this:
=item -DEBUGGING=-g
=item -Doptimize=-g
Adds -g to optimize, but does not set -DDEBUGGING.
(Note: Your system may actually require something like cc -g2.
Check your man pages for cc(1) and also any hint file for your system.)
However, we *aren't* compliant with our documentation, as currently
-Doptimize=-g (or anything containing -g) still causes -DDEBUGGING to be
added to the C flags.
Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,7 +28,7 @@ # See Porting/pumpkin.pod for more information on metaconfig. # -# Generated on Sun Jan 23 10:14:12 CET 2011 [metaconfig 3.5 PL0] +# Generated on Mon Feb 14 23:00:18 CET 2011 [metaconfig 3.5 PL0] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -1319,7 +1319,7 @@ inclwanted='' : Enable -DEBUGGING and -DDEBUGGING from the command line EBUGGING='' -DEBUGGING=old +DEBUGGING='' : set usethreads on the Configure command line to enable threads. usereentrant='undef' |