From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2178) id 14C5A385771B; Tue, 15 Aug 2023 06:24:40 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 14C5A385771B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1692080680; bh=1yhBVpG/0JiIq761ZV9E4x9cVmESrGXrh+h+ggkMhuQ=; h=From:To:Subject:Date:From; b=TqejrBNUMG9wOs6KMdj47g0W0ZHit1H5WtW/Ffe+EWf0Wmh3SyMGZNGZa2k6ZcWOV jDP3GJs9pJ0g5PReNWwjEAw91lxHE+FqpD52jtGnZwX2D+rme/3/NjkQA/lepNanyT sBvz6cIjh3yhdKArIWt+toYHZEccYe28l7lr3A+o= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Florian Weimer To: glibc-cvs@sourceware.org Subject: [glibc] configure: Add -Wall again to the default CFLAGS X-Act-Checkin: glibc X-Git-Author: Florian Weimer X-Git-Refname: refs/heads/master X-Git-Oldrev: 0dc7fc1cf094406a138e4d1bcf9553e59edcf89d X-Git-Newrev: d6fe19facc61caffb25383d9c25eff86a0e115c8 Message-Id: <20230815062440.14C5A385771B@sourceware.org> Date: Tue, 15 Aug 2023 06:24:40 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=d6fe19facc61caffb25383d9c25eff86a0e115c8 commit d6fe19facc61caffb25383d9c25eff86a0e115c8 Author: Florian Weimer Date: Mon Aug 14 13:48:01 2023 +0200 configure: Add -Wall again to the default CFLAGS Commit 78ceef25d64efeeb6067d1cb282a00466e637e2a ("configure: Remove --enable-all-warnings option") removed it due to a missing +. Reviewed-by: Siddhesh Poyarekar Diff: --- Makeconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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