From patchwork Mon Oct 16 10:27:34 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yao Qi X-Patchwork-Id: 23602 Received: (qmail 41936 invoked by alias); 16 Oct 2017 10:27:44 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 41926 invoked by uid 89); 16 Oct 2017 10:27:43 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, FREEMAIL_FROM, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:1743 X-HELO: mail-wm0-f54.google.com Received: from mail-wm0-f54.google.com (HELO mail-wm0-f54.google.com) (74.125.82.54) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 16 Oct 2017 10:27:42 +0000 Received: by mail-wm0-f54.google.com with SMTP id i124so1622188wmf.3 for ; Mon, 16 Oct 2017 03:27:41 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id; bh=H4LyaTrPSgoKovWk0WR6Mhn26Ylq3KY+atztj5zjJQM=; b=CP5z/KLsucR3crFrdlKzfKSJAqNrIbLO/mB5htjilrrXrZ/TMm4rrBouKsSsBxCurK 58DmKfFUVgbbpsOSnD7rNGoZyCyTzPYpn82AM3PQxThzLe+9StDhRJhpODgGiCgE1DVP LvC/+Vhl9ngiNamcm664Um8wNwitGOdLJVyIMpKoCZ3//iwJyU7ngliehyVAp7E76vW0 Xi++Mxa3z5nwH7m0OT1L56CfP+51WoOJS/TElCtJdhlLvQCSLhk45YS25W4D7NZn4m6x /gVjVstewo0dj0corOPunODagsMDsMQpcAL5fsd9LcR21cYzwbo2gMLrqN0s8YDfuGc7 N0bw== X-Gm-Message-State: AMCzsaUc+a4BtMeGZG3nrw/WPYDhI0ZAOvAbcm0pKlUpZ4GTeVeufPRg hdetliHyIc+ysUqsU8O3kkwFSw== X-Google-Smtp-Source: ABhQp+QfC54c6ndaC1kZe5x8RRDGEODJizLeLG3GIXKzsTDKINFbXBPh1rr+Vmh24hGT1bb82TL/Fg== X-Received: by 10.28.125.139 with SMTP id y133mr475075wmc.25.1508149660097; Mon, 16 Oct 2017 03:27:40 -0700 (PDT) Received: from E107787-LIN.cambridge.arm.com (static.42.136.251.148.clients.your-server.de. [148.251.136.42]) by smtp.gmail.com with ESMTPSA id v78sm4625686wmv.48.2017.10.16.03.27.39 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 16 Oct 2017 03:27:39 -0700 (PDT) From: Yao Qi X-Google-Original-From: Yao Qi To: gdb-patches@sourceware.org Subject: [PATCH OBV] Regenerate gdbserver/configure Date: Mon, 16 Oct 2017 11:27:34 +0100 Message-Id: <1508149654-3504-1-git-send-email-yao.qi@linaro.org> X-IsSubscribed: yes 4fa7574 (Fix gdb 8.1 Solaris compilation) changes warning.m4 and updates configure, but gdbserver/configure is not updated. gdb/gdbserver: 2017-10-16 Yao Qi * configure: Regenerated. --- gdb/gdbserver/ChangeLog | 4 ++++ gdb/gdbserver/configure | 13 ++++++++++--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 1b09101..852936a 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,7 @@ +2017-10-16 Yao Qi + + * configure: Regenerated. + 2017-10-14 Simon Marchi * inferiors.h: (struct inferior_list): Remove. diff --git a/gdb/gdbserver/configure b/gdb/gdbserver/configure index 30aa95b..dfe3127 100755 --- a/gdb/gdbserver/configure +++ b/gdb/gdbserver/configure @@ -7157,10 +7157,17 @@ build_warnings="-Wall -Wpointer-arith \ -Wno-sign-compare -Wno-narrowing -Wno-error=maybe-uninitialized \ -Wno-mismatched-tags" -# Enable -Wno-format by default when using gcc on mingw since many -# GCC versions complain about %I64. case "${host}" in - *-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;; + *-*-mingw32*) + # Enable -Wno-format by default when using gcc on mingw since many + # GCC versions complain about %I64. + build_warnings="$build_warnings -Wno-format" ;; + *-*-solaris*) + # Solaris 11.4 uses #pragma no_inline that GCC + # doesn't understand. + build_warnings="$build_warnings -Wno-unknown-pragmas" + # Solaris 11 marks vfork deprecated. + build_warnings="$build_warnings -Wno-deprecated-declarations" ;; *) build_warnings="$build_warnings -Wformat-nonliteral" ;; esac