From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11012 invoked by alias); 19 Nov 2016 03:04:54 -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 10988 invoked by uid 89); 19 Nov 2016 03:04:54 -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-Spam-User: qpsmtpd, 2 recipients 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; Sat, 19 Nov 2016 03:04:52 +0000 Received: by simark.ca (Postfix, from userid 33) id 3EB8B1E943; Fri, 18 Nov 2016 22:04:50 -0500 (EST) To: Nick Clifton Subject: Re: Require GNU make to build binutils-gdb 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: Sat, 19 Nov 2016 03:04:00 -0000 From: Simon Marchi Cc: binutils@sourceware.org, gdb-patches@sourceware.org In-Reply-To: <5fab6734-6b06-fc27-785f-cb3af2076d4e@redhat.com> References: <144f4f68acf24fc1084b585700c65b63@polymtl.ca> <80053c28-1a47-8f80-04fb-7bdf76115077@redhat.com> <85e5ade0f75ee3ced79946ec9462b7f6@polymtl.ca> <5fab6734-6b06-fc27-785f-cb3af2076d4e@redhat.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/msg00524.txt.bz2 On 2016-11-18 12:04, Nick Clifton wrote: > Well, the top-level Makefile is shared with gcc, so we would have > to get approval there as well. Putting the check in the binutils/ > Makefile would certainly be easier, and it should be sufficient > (The only target that I could find that does not build the binutils > sub-directory is the v810, which is not supported as a binutils > target anyway). Hi Nick, I tried to prototype putting a check in binutils/Makefile.am, but my automake knowledge did not get me very far. Being one level of abstraction above make, it doesn't seem possible at first sight to use something like ifdef .FEATURES $(error "defined") else $(error "not defined") endif Any idea how to proceed? Simon