summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2022-10-26 20:06:16 +0300
committerArnold D. Robbins <arnold@skeeve.com>2022-10-26 20:06:16 +0300
commit037b21d09f684cea35ff33c19214b5f1a7711bd3 (patch)
tree67f9e30755e26e20ced08cc8dde00b797aa9f70a
parentc0c9f468b12a79ad8277f0e2b9ff7d42f48490bf (diff)
downloadgawk-037b21d09f684cea35ff33c19214b5f1a7711bd3.tar.gz
Try to get macros to work in the debugger.
-rw-r--r--ChangeLog4
-rwxr-xr-xconfigure2
-rw-r--r--configure.ac2
-rw-r--r--extension/ChangeLog4
-rwxr-xr-xextension/configure2
-rw-r--r--extension/configure.ac2
6 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index b3104051..cb42e91a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2022-10-26 Arnold D. Robbins <arnold@skeeve.com>
+
+ * configure.ac: Try to get macros to work in the debugger.
+
2022-10-25 Arnold D. Robbins <arnold@skeeve.com>
* interpret.h (r_interpret): For Op_push*, simplify the code for
diff --git a/configure b/configure
index 309e0ffe..931df5d9 100755
--- a/configure
+++ b/configure
@@ -7101,7 +7101,7 @@ then
# enable debugging using macros also
if test "$GCC" = yes
then
- CFLAGS="$CFLAGS -Wall -fno-builtin -ggdb3 -gdwarf-4"
+ CFLAGS="$CFLAGS -Wall -fno-builtin -gdwarf-4 -g3"
fi
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
printf "%s\n" "yes" >&6; }
diff --git a/configure.ac b/configure.ac
index 44964293..fdc17c62 100644
--- a/configure.ac
+++ b/configure.ac
@@ -136,7 +136,7 @@ then
# enable debugging using macros also
if test "$GCC" = yes
then
- CFLAGS="$CFLAGS -Wall -fno-builtin -ggdb3 -gdwarf-4"
+ CFLAGS="$CFLAGS -Wall -fno-builtin -gdwarf-4 -g3"
fi
AC_MSG_RESULT([yes])
else
diff --git a/extension/ChangeLog b/extension/ChangeLog
index 521c1303..4caf864e 100644
--- a/extension/ChangeLog
+++ b/extension/ChangeLog
@@ -1,3 +1,7 @@
+2022-10-26 Arnold D. Robbins <arnold@skeeve.com>
+
+ * configure.ac: Try to get macros to work in the debugger.
+
2022-10-23 Arnold D. Robbins <arnold@skeeve.com>
* configure.ac: Add handling of persistent malloc stuff. This is
diff --git a/extension/configure b/extension/configure
index b5c64186..387f8391 100755
--- a/extension/configure
+++ b/extension/configure
@@ -17132,7 +17132,7 @@ if test -f $srcdir/../.developing
then
if test "$GCC" = yes
then
- CFLAGS="$CFLAGS -Wall -fno-builtin -ggdb3 -gdwarf-4"
+ CFLAGS="$CFLAGS -Wall -fno-builtin -gdwarf-4 -g3"
fi
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
printf "%s\n" "yes" >&6; }
diff --git a/extension/configure.ac b/extension/configure.ac
index 278c726d..2f598305 100644
--- a/extension/configure.ac
+++ b/extension/configure.ac
@@ -93,7 +93,7 @@ if test -f $srcdir/../.developing
then
if test "$GCC" = yes
then
- CFLAGS="$CFLAGS -Wall -fno-builtin -ggdb3 -gdwarf-4"
+ CFLAGS="$CFLAGS -Wall -fno-builtin -gdwarf-4 -g3"
fi
AC_MSG_RESULT([yes])
else