Re: [PATCH] configure: Fix default -O2 being added when CFLAGS not set

2022-03-28 Thread Glenn Washburn
Hi Paul, On Fri, 25 Mar 2022 07:53:29 +0100 Paul Menzel wrote: > Dear Glenn, > > > Thank you for your tireless awesome work on GRUB. Sincerely, thank you. It seems to me that you're also deserving of this compliment and probably more so. > Am 24.03.22 um 23:31 schrieb Glenn Washburn: > > Au

Re: [PATCH] configure: Fix default -O2 being added when CFLAGS not set

2022-03-28 Thread Glenn Washburn
On Fri, 25 Mar 2022 11:54:59 -0400 Robbie Harwood wrote: > Glenn Washburn writes: > > > Autoconf will set a default CFLAGS of "-g -O2" if CFLAGS is not set. CFLAGS > > was defaulted to "" early in configure to prevent this. Apparently something > > changed in autoconf and now AC_USE_SYSTEM_EXTE

Re: [PATCH] configure: Fix default -O2 being added when CFLAGS not set

2022-03-25 Thread Robbie Harwood
Glenn Washburn writes: > Autoconf will set a default CFLAGS of "-g -O2" if CFLAGS is not set. CFLAGS > was defaulted to "" early in configure to prevent this. Apparently something > changed in autoconf and now AC_USE_SYSTEM_EXTENSIONS, which is before the > default setting of CFLAGS, will pull in

Re: [PATCH] configure: Fix default -O2 being added when CFLAGS not set

2022-03-24 Thread Paul Menzel
Dear Glenn, Thank you for your tireless awesome work on GRUB. Am 24.03.22 um 23:31 schrieb Glenn Washburn: Autoconf will set a default CFLAGS of "-g -O2" if CFLAGS is not set. CFLAGS was defaulted to "" early in configure to prevent this. Apparently something changed in autoconf and now AC_USE

[PATCH] configure: Fix default -O2 being added when CFLAGS not set

2022-03-24 Thread Glenn Washburn
Autoconf will set a default CFLAGS of "-g -O2" if CFLAGS is not set. CFLAGS was defaulted to "" early in configure to prevent this. Apparently something changed in autoconf and now AC_USE_SYSTEM_EXTENSIONS, which is before the default setting of CFLAGS, will pull in this check. Move the default set