diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-12-06 21:50:41 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-12-06 21:50:41 +0200 |
commit | c856f5c96f88cc8a5aacf6ee90e92ed80bd8c3ba (patch) | |
tree | af7be9ef66d92f95ed298efae87cb6d001be3f0d | |
parent | 9b393a2e9d9d46ddea86e20bffaa0214cd40204b (diff) | |
download | egawk-c856f5c96f88cc8a5aacf6ee90e92ed80bd8c3ba.tar.gz egawk-c856f5c96f88cc8a5aacf6ee90e92ed80bd8c3ba.tar.bz2 egawk-c856f5c96f88cc8a5aacf6ee90e92ed80bd8c3ba.zip |
Configuration stuff updates, including no optimization.
-rwxr-xr-x | ChangeLog | 6 | ||||
-rwxr-xr-x | config.guess | 5 | ||||
-rwxr-xr-x | config.sub | 4 | ||||
-rwxr-xr-x | configure | 10 | ||||
-rw-r--r-- | configure.ac | 10 | ||||
-rw-r--r-- | extension/build-aux/ChangeLog | 4 | ||||
-rwxr-xr-x | extension/build-aux/config.guess | 5 | ||||
-rwxr-xr-x | extension/build-aux/config.sub | 4 |
8 files changed, 40 insertions, 8 deletions
@@ -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 @@ -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*) @@ -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*) |