diff mbox series

configure: Add -Wall again to the default CFLAGS

Message ID 87leedc07t.fsf@oldenburg.str.redhat.com
State New
Headers show
Series configure: Add -Wall again to the default CFLAGS | expand

Commit Message

Florian Weimer Aug. 14, 2023, 11:49 a.m. UTC
Commit 78ceef25d64efeeb6067d1cb282a00466e637e2a ("configure: Remove
--enable-all-warnings option") removed it due to a missing +.

Tested with build-many-glibcs.py (glibcs stage only, full
compilers/glibcs test still running).  Needs -Wall fixes from the recent
malloc fix.

---
 Makeconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


base-commit: bb481eedcee19bb342b91eddc86417df660e6c56

Comments

Siddhesh Poyarekar Aug. 14, 2023, 12:10 p.m. UTC | #1
On 2023-08-14 07:49, Florian Weimer via Libc-alpha wrote:
> Commit 78ceef25d64efeeb6067d1cb282a00466e637e2a ("configure: Remove
> --enable-all-warnings option") removed it due to a missing +.
> 
> Tested with build-many-glibcs.py (glibcs stage only, full
> compilers/glibcs test still running).  Needs -Wall fixes from the recent
> malloc fix.
> 
> ---
>   Makeconfig | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

LGTM.

Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>

> 
> diff --git a/Makeconfig b/Makeconfig
> index c4dd9ea8f2..c48fcc59e8 100644
> --- a/Makeconfig
> +++ b/Makeconfig
> @@ -857,7 +857,7 @@ host-test-program-cmd = $(host-built-program-cmd)
>   endif
>   
>   # Extra flags to pass to GCC.
> -gccwarn := -Wall -Wwrite-strings -Wundef
> ++gccwarn := -Wall -Wwrite-strings -Wundef
>   ifeq ($(enable-werror),yes)
>   +gccwarn += -Werror
>   endif
> 
> base-commit: bb481eedcee19bb342b91eddc86417df660e6c56
>
Florian Weimer Aug. 14, 2023, 1:36 p.m. UTC | #2
* Siddhesh Poyarekar:

> On 2023-08-14 07:49, Florian Weimer via Libc-alpha wrote:
>> Commit 78ceef25d64efeeb6067d1cb282a00466e637e2a ("configure: Remove
>> --enable-all-warnings option") removed it due to a missing +.
>> Tested with build-many-glibcs.py (glibcs stage only, full
>> compilers/glibcs test still running).  Needs -Wall fixes from the recent
>> malloc fix.
>> ---
>>   Makeconfig | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> LGTM.
>
> Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>

Thanks, I'll delay checking this in until after the latest malloc patch
is committed, which also removes the -Wall warnings that crept in.

Florian
diff mbox series

Patch

diff --git a/Makeconfig b/Makeconfig
index c4dd9ea8f2..c48fcc59e8 100644
--- a/Makeconfig
+++ b/Makeconfig
@@ -857,7 +857,7 @@  host-test-program-cmd = $(host-built-program-cmd)
 endif
 
 # Extra flags to pass to GCC.
-gccwarn := -Wall -Wwrite-strings -Wundef
++gccwarn := -Wall -Wwrite-strings -Wundef
 ifeq ($(enable-werror),yes)
 +gccwarn += -Werror
 endif