From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) by sourceware.org (Postfix) with ESMTP id 8DD893857818 for ; Mon, 1 Nov 2021 04:59:57 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 8DD893857818 Received: by smtp.gentoo.org (Postfix, from userid 559) id 3202E342D32; Mon, 1 Nov 2021 04:59:57 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH 7/9] sim: frv: reduce -Wno-error scope Date: Mon, 1 Nov 2021 00:59:43 -0400 Message-Id: <20211101045945.23481-7-vapier@gentoo.org> X-Mailer: git-send-email 2.33.0 In-Reply-To: <20211101045945.23481-1-vapier@gentoo.org> References: <20211101045945.23481-1-vapier@gentoo.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.3 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Nov 2021 04:59:58 -0000 Only two files in here still generates warnings, so reduce the -Werror disable to that now that we require GNU make and can set variables on a per-object basis. --- sim/frv/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sim/frv/Makefile.in b/sim/frv/Makefile.in index e709e37ee740..2c17075432c6 100644 --- a/sim/frv/Makefile.in +++ b/sim/frv/Makefile.in @@ -40,8 +40,8 @@ SIM_EXTRA_CFLAGS = @SIM_FRV_TRAPDUMP_FLAGS@ SIM_EXTRA_CLEAN = frv-clean -# Code doesn't build cleanly yet. -SIM_WERROR_CFLAGS = +# Some modules don't build cleanly yet. +memory.o sem.o: SIM_WERROR_CFLAGS = ## COMMON_POST_CONFIG_FRAG -- 2.33.0