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 /configure | |
parent | 9b393a2e9d9d46ddea86e20bffaa0214cd40204b (diff) | |
download | egawk-c856f5c96f88cc8a5aacf6ee90e92ed80bd8c3ba.tar.gz egawk-c856f5c96f88cc8a5aacf6ee90e92ed80bd8c3ba.tar.bz2 egawk-c856f5c96f88cc8a5aacf6ee90e92ed80bd8c3ba.zip |
Configuration stuff updates, including no optimization.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -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 |