aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-12-06 21:50:41 +0200
committerArnold D. Robbins <arnold@skeeve.com>2018-12-06 21:50:41 +0200
commitc856f5c96f88cc8a5aacf6ee90e92ed80bd8c3ba (patch)
treeaf7be9ef66d92f95ed298efae87cb6d001be3f0d
parent9b393a2e9d9d46ddea86e20bffaa0214cd40204b (diff)
downloadegawk-c856f5c96f88cc8a5aacf6ee90e92ed80bd8c3ba.tar.gz
egawk-c856f5c96f88cc8a5aacf6ee90e92ed80bd8c3ba.tar.bz2
egawk-c856f5c96f88cc8a5aacf6ee90e92ed80bd8c3ba.zip
Configuration stuff updates, including no optimization.
-rwxr-xr-xChangeLog6
-rwxr-xr-xconfig.guess5
-rwxr-xr-xconfig.sub4
-rwxr-xr-xconfigure10
-rw-r--r--configure.ac10
-rw-r--r--extension/build-aux/ChangeLog4
-rwxr-xr-xextension/build-aux/config.guess5
-rwxr-xr-xextension/build-aux/config.sub4
8 files changed, 40 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index a252b9bf..b20df749 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2018-12-06 Arnold D. Robbins <arnold@skeeve.com>
+
+ * configure.ac: Add -ggdb3 to CFLAGS if developing and remove
+ -O2 from Makefile, extension/Makefile, and support/Makefile.
+ * config.guess, config.sub: Updated from GNULIB.
+
2018-11-25 Arnold D. Robbins <arnold@skeeve.com>
* config.sub: Updated from GNULIB.
diff --git a/config.guess b/config.guess
index 18f8edc0..47d7bed5 100755
--- a/config.guess
+++ b/config.guess
@@ -2,7 +2,7 @@
# Attempt to guess a canonical system name.
# Copyright 1992-2018 Free Software Foundation, Inc.
-timestamp='2018-08-29'
+timestamp='2018-11-28'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@@ -1424,6 +1424,9 @@ EOF
amd64:Isilon\ OneFS:*:*)
echo x86_64-unknown-onefs
exit ;;
+ *:Unleashed:*:*)
+ echo "$UNAME_MACHINE"-unknown-unleashed"$UNAME_RELEASE"
+ exit ;;
esac
echo "$0: unable to guess system type" >&2
diff --git a/config.sub b/config.sub
index b29f8f12..46708056 100755
--- a/config.sub
+++ b/config.sub
@@ -2,7 +2,7 @@
# Configuration validation subroutine script.
# Copyright 1992-2018 Free Software Foundation, Inc.
-timestamp='2018-08-29'
+timestamp='2018-11-28'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@@ -1361,7 +1361,7 @@ case $os in
| powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \
| skyos* | haiku* | rdos* | toppers* | drops* | es* \
| onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \
- | midnightbsd* | amdhsa*)
+ | midnightbsd* | amdhsa* | unleashed*)
# Remember, each alternative MUST END IN *, to match a version number.
;;
qnx*)
diff --git a/configure b/configure
index b07b1565..b3ba275b 100755
--- a/configure
+++ b/configure
@@ -5444,7 +5444,7 @@ then
# enable debugging using macros also
if test "$GCC" = yes
then
- CFLAGS="$CFLAGS -Wall -fno-builtin -g3"
+ CFLAGS="$CFLAGS -Wall -fno-builtin -g3 -ggdb3"
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
@@ -12830,3 +12830,11 @@ if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
fi
+if test "$GCC" = yes && test -f $srcdir/.developing
+then
+ for i in . support extension
+ do
+ sed '/-O2/s///' $i/Makefile > foo
+ mv foo $i/Makefile
+ done
+fi
diff --git a/configure.ac b/configure.ac
index 01cab0e0..c6c7e501 100644
--- a/configure.ac
+++ b/configure.ac
@@ -133,7 +133,7 @@ then
# enable debugging using macros also
if test "$GCC" = yes
then
- CFLAGS="$CFLAGS -Wall -fno-builtin -g3"
+ CFLAGS="$CFLAGS -Wall -fno-builtin -g3 -ggdb3"
fi
AC_MSG_RESULT([yes])
else
@@ -485,3 +485,11 @@ then
AC_CONFIG_SUBDIRS(extension)
fi
AC_OUTPUT
+if test "$GCC" = yes && test -f $srcdir/.developing
+then
+ for i in . support extension
+ do
+ sed '/-O2/s///' $i/Makefile > foo
+ mv foo $i/Makefile
+ done
+fi
diff --git a/extension/build-aux/ChangeLog b/extension/build-aux/ChangeLog
index 25828dc7..828d4b1e 100644
--- a/extension/build-aux/ChangeLog
+++ b/extension/build-aux/ChangeLog
@@ -1,3 +1,7 @@
+2018-12-06 Arnold D. Robbins <arnold@skeeve.com>
+
+ * config.guess, config.sub: Updated from GNULIB.
+
2018-11-25 Arnold D. Robbins <arnold@skeeve.com>
* config.sub: Updated from GNULIB.
diff --git a/extension/build-aux/config.guess b/extension/build-aux/config.guess
index 18f8edc0..47d7bed5 100755
--- a/extension/build-aux/config.guess
+++ b/extension/build-aux/config.guess
@@ -2,7 +2,7 @@
# Attempt to guess a canonical system name.
# Copyright 1992-2018 Free Software Foundation, Inc.
-timestamp='2018-08-29'
+timestamp='2018-11-28'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@@ -1424,6 +1424,9 @@ EOF
amd64:Isilon\ OneFS:*:*)
echo x86_64-unknown-onefs
exit ;;
+ *:Unleashed:*:*)
+ echo "$UNAME_MACHINE"-unknown-unleashed"$UNAME_RELEASE"
+ exit ;;
esac
echo "$0: unable to guess system type" >&2
diff --git a/extension/build-aux/config.sub b/extension/build-aux/config.sub
index b29f8f12..46708056 100755
--- a/extension/build-aux/config.sub
+++ b/extension/build-aux/config.sub
@@ -2,7 +2,7 @@
# Configuration validation subroutine script.
# Copyright 1992-2018 Free Software Foundation, Inc.
-timestamp='2018-08-29'
+timestamp='2018-11-28'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@@ -1361,7 +1361,7 @@ case $os in
| powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \
| skyos* | haiku* | rdos* | toppers* | drops* | es* \
| onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \
- | midnightbsd* | amdhsa*)
+ | midnightbsd* | amdhsa* | unleashed*)
# Remember, each alternative MUST END IN *, to match a version number.
;;
qnx*)