From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 129937 invoked by alias); 26 Jul 2017 17:56:44 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 129924 invoked by uid 89); 26 Jul 2017 17:56:42 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.6 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy= X-HELO: gate.crashing.org Received: from gate.crashing.org (HELO gate.crashing.org) (63.228.1.57) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 26 Jul 2017 17:56:40 +0000 Received: from gate.crashing.org (localhost.localdomain [127.0.0.1]) by gate.crashing.org (8.14.1/8.13.8) with ESMTP id v6QHuLeC005095; Wed, 26 Jul 2017 12:56:21 -0500 Received: (from segher@localhost) by gate.crashing.org (8.14.1/8.14.1/Submit) id v6QHuKnA005089; Wed, 26 Jul 2017 12:56:20 -0500 Date: Wed, 26 Jul 2017 17:56:00 -0000 From: Segher Boessenkool To: Sebastian Huber Cc: gcc-patches@gcc.gnu.org Subject: Re: [PATCH] [PowerPC/RTEMS] Add 64-bit support using ELFv2 ABI Message-ID: <20170726175619.GP13471@gate.crashing.org> References: <20170725122521.10857-1-sebastian.huber@embedded-brains.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170725122521.10857-1-sebastian.huber@embedded-brains.de> User-Agent: Mutt/1.4.2.3i X-IsSubscribed: yes X-SW-Source: 2017-07/txt/msg01709.txt.bz2 Hi! On Tue, Jul 25, 2017 at 02:25:21PM +0200, Sebastian Huber wrote: > Add 64-bit support for RTEMS using the ELFv2 ABI with 64-bit long > double. > > diff --git a/gcc/config.gcc b/gcc/config.gcc > index 2ae0218b5fc..aab7f65c1df 100644 > --- a/gcc/config.gcc > +++ b/gcc/config.gcc > @@ -2424,7 +2424,7 @@ powerpc-*-rtems*spe*) > tmake_file="${tmake_file} powerpcspe/t-fprules powerpcspe/t-rtems powerpcspe/t-ppccomm" > ;; > powerpc-*-rtems*) > - tm_file="${tm_file} dbxelf.h elfos.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/eabi.h rs6000/rtems.h rtems.h" > + tm_file="rs6000/biarch64.h ${tm_file} dbxelf.h elfos.h freebsd-spec.h newlib-stdint.h rs6000/sysv4.h rs6000/rtems.h rtems.h" This deletes eabi.h and I don't see you add all its definitions to rtems.h directly (NAME__MAIN etc.) Is this on purpose? Segher