From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6438 invoked by alias); 17 Nov 2016 17:05:45 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 6214 invoked by uid 89); 17 Nov 2016 17:05:43 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_SOFTFAIL autolearn=no version=3.3.2 spammy= X-HELO: simark.ca Received: from simark.ca (HELO simark.ca) (158.69.221.121) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 17 Nov 2016 17:05:32 +0000 Received: by simark.ca (Postfix, from userid 33) id 34CEC1E888; Thu, 17 Nov 2016 12:05:30 -0500 (EST) To: Simon Marchi Subject: Re: [PATCH 0/4] Require GNU make X-PHP-Originating-Script: 33:rcube.php MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Thu, 17 Nov 2016 17:05:00 -0000 From: Simon Marchi Cc: gdb-patches@sourceware.org In-Reply-To: <20161116160808.12830-1-simon.marchi@ericsson.com> References: <20161116160808.12830-1-simon.marchi@ericsson.com> Message-ID: X-Sender: simon.marchi@polymtl.ca User-Agent: Roundcube Webmail/1.2.2 X-IsSubscribed: yes X-SW-Source: 2016-11/txt/msg00487.txt.bz2 On 2016-11-16 11:08, Simon Marchi wrote: > Following the discussions in > > https://sourceware.org/ml/gdb-patches/2016-11/msg00326.html > > I am sending this patch series which makes GNU make mandatory for > building GDB > and GDBserver. > > - Patch 1 simply updates the NEWS file > - Patch 2 removes code that is conditional on make being GNU make or > not. > - Patches 3 and 4 make use of pattern rules, a GNU make-specific > feature. > > Patches 3 and 4 replace patches 1 and 2 in the original series. > > Simon Marchi (4): > Document new hard requirement on GNU make > Remove code that checks for GNU/non-GNU make > Makefile: Replace old suffix rules with pattern rules > Makefile: Replace explicit subdir rules with pattern rules > > gdb/Makefile.in | 835 > +++++---------------------------------------- > gdb/NEWS | 5 + > gdb/configure | 97 ------ > gdb/configure.ac | 11 - > gdb/gdbserver/Makefile.in | 36 +- > gdb/gdbserver/configure | 97 ------ > gdb/gdbserver/configure.ac | 11 - > gdb/testsuite/Makefile.in | 88 +++-- > gdb/testsuite/configure | 99 ------ > gdb/testsuite/configure.ac | 11 - > 10 files changed, 141 insertions(+), 1149 deletions(-) Thanks everybody for the reviews and comments, I have now pushed this series. I'll follow-up with: - See if binutils can require GNU make as well, and perhaps have a check in the top-level makefile - Disable default implicit rules with .SUFFIXES. Simon