From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5480 invoked by alias); 29 Apr 2014 17:23:55 -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 5435 invoked by uid 89); 29 Apr 2014 17:23:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,RP_MATCHES_RCVD,SPF_PASS,URIBL_SBL autolearn=unavailable version=3.3.2 X-HELO: mail-ob0-f181.google.com Received: from mail-ob0-f181.google.com (HELO mail-ob0-f181.google.com) (209.85.214.181) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 29 Apr 2014 17:23:52 +0000 Received: by mail-ob0-f181.google.com with SMTP id gq1so596414obb.26 for ; Tue, 29 Apr 2014 10:23:50 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=pxlwksFz/zyWJVQ7HTgposkVxSMxqKJVSsw7RxkWn7s=; b=hXC2l9bPHErqNOzPDiWFfrkxYqG50xG1JejZf05mOyokA8YBFb9N9NAcXgEda/ckZi 22Jsz5BfSR3fcnmG5imj+sQanAZD/3Y0yhltfnFFCnGmzZA7aBNW59qw/ObHJqveARrn VA/A1Ae6aK9tGmsM5wB5CWAtsqyIada3ltgwwfKRtdrkvqkdU+l0NX+FSWC0iHbmPMAu xuyQlDA4YJ7tHZ54YYmG4wx/grfCzH9+5W/2ofD9xBiDo2bj2PacqTO51lr+lYB2Q+3o 43Pc/R0m0Y3CaKDYHo+FRlsYBw3OjzTlqJ1vvbnWriO5DDfHzW2pmPto7kXn2r9q116S LuQg== X-Gm-Message-State: ALoCoQlmCZPMIJdse/8kQIoqCkTrDmLGwUSk4dUwQ1m0xAv2V9Z9tDSxEx9wjJEpV0TUSmKNIIMwGLyYa/kB8FtqIBWk3MBBOywbXNoUJKXng6PmcRElQ/eQ6gQmLLuNnv1GoVskWH7S/7Oavg+7iXyd18A13PFn2wbj3BDff0SfmYNsHVVhoSFJmATkVugT1EqCCY8EFSR8WztxdX5g2HvwPBKlxQW6kA== MIME-Version: 1.0 X-Received: by 10.182.165.73 with SMTP id yw9mr28279219obb.39.1398792230742; Tue, 29 Apr 2014 10:23:50 -0700 (PDT) Received: by 10.60.227.226 with HTTP; Tue, 29 Apr 2014 10:23:50 -0700 (PDT) In-Reply-To: <535FC71E.8070406@marino.st> References: <5352D100.9040108@marino.st> <53541A34.7050908@marino.st> <535FC71E.8070406@marino.st> Date: Tue, 29 Apr 2014 17:23:00 -0000 Message-ID: Subject: Re: [PING] Contributing new gcc targets: i386-*-dragonfly and x86-64-*-dragonfly From: Ian Lance Taylor To: John Marino Cc: gcc-patches , "libstdc++" , Binutils , gdb-patches@sourceware.org Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2014-04/txt/msg00625.txt.bz2 On Tue, Apr 29, 2014 at 11:37 AM, John Marino wrote: > > Does anyone have any issues with this set of patches to add support for > the DragonFly targets? It's a blocker for other patches of mine that > have a more general benefit, but this (relatively simple) one has to go > in first. It's inconvenient, but patches are much more likely to be reviewed when they cover a separate part of the tree, as different people maintain different parts. I expect your libitm and libcilkrts could be approved trivially if you send them separately. The change to include/libiberty.h is fine. I don't understand the benefit of libgcc/enable-execute-stack-bsd.c. The code seems the same as the existing libgcc/enable-execute-stack-mprotect.c. All you are changing is omitting need_enable_exec_stack. If you just drop the FreeBSD constructor, you will get the behaviour you want. Ian