From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17593 invoked by alias); 14 Jan 2016 13:04:56 -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 17583 invoked by uid 89); 14 Jan 2016 13:04:56 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.8 required=5.0 tests=BAYES_50,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=illinois, Illinois, brig, BRIG X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 14 Jan 2016 13:04:55 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id B51FF461E2; Thu, 14 Jan 2016 13:04:53 +0000 (UTC) Received: from tucnak.zalov.cz ([10.3.113.11]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u0ED4qO6024751 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 14 Jan 2016 08:04:53 -0500 Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.15.2/8.15.2) with ESMTP id u0ED4nac021209; Thu, 14 Jan 2016 14:04:49 +0100 Received: (from jakub@localhost) by tucnak.zalov.cz (8.15.2/8.15.2/Submit) id u0ED4lQA018848; Thu, 14 Jan 2016 14:04:47 +0100 Date: Thu, 14 Jan 2016 13:04:00 -0000 From: Jakub Jelinek To: Martin Jambor , Ian Lance Taylor Cc: GCC Patches , David Edelsohn , Jeff Law Subject: Re: [hsa merge 08/10] HSAIL BRIG description header file Message-ID: <20160114130447.GF3017@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <20160113173925.220029649@virgil.suse.cz> <20160113173925.842609640@virgil.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160113173925.842609640@virgil.suse.cz> User-Agent: Mutt/1.5.24 (2015-08-30) X-IsSubscribed: yes X-SW-Source: 2016-01/txt/msg00908.txt.bz2 On Wed, Jan 13, 2016 at 06:39:33PM +0100, Martin Jambor wrote: > the following patch adds a BRIG (binary representation of HSAIL) > representation description. It is within a single header file > describing the binary structures and constants of the format. > > The file comes from the HSA Foundation (I have only added the > HSA_BRIG_FORMAT_H macro and check and removed some weird comments > which are not present in proposed future versions of the file) and is > licensed under "University of Illinois/NCSA Open Source License." > > The license is "GPL-compatible" according to FSF > (http://www.gnu.org/licenses/license-list.en.html#GPLCompatibleLicenses) > so I believe we can have it in GCC. Nevertheless, it is not GPL and > there is no copyright assignment for it, but the situation is > hopefully analogous to some other libraries that have their upstream > elsewhere but we ship them as part of the GCC. > > In the previous posting of this patch > (https://gcc.gnu.org/ml/gcc-patches/2015-12/msg00721.html) I have > requested a permission from the steering committee to include this file > with a different upstream in GCC. I have not received an official > reply but since I have been chosen to be the HSA maintainer, I tend to > think there were no legal objections against HSA going forward, > including this file. I just wonder if this wouldn't be better located in include/ subdirectory, it is something external to GCC. CCing Ian on this. > 2015-12-04 Martin Jambor > > * hsa-brig-format.h: New file. Jakub