From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,CP1252 Path: g2news2.google.com!postnews.google.com!e20g2000vbc.googlegroups.com!not-for-mail From: =?ISO-8859-1?Q?Hibou57_=28Yannick_Duch=EAne=29?= Newsgroups: comp.lang.ada Subject: Re: MinGW Ada compiler licence question targeting commercial applications Date: Thu, 18 Jun 2009 12:55:49 -0700 (PDT) Organization: http://groups.google.com Message-ID: <47b97105-d287-43ba-94a1-0619d520e272@e20g2000vbc.googlegroups.com> References: <0918ba25-c841-453d-8600-22527da62ec0@h23g2000vbc.googlegroups.com> NNTP-Posting-Host: 77.198.58.216 Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1245354950 18884 127.0.0.1 (18 Jun 2009 19:55:50 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 18 Jun 2009 19:55:50 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: e20g2000vbc.googlegroups.com; posting-host=77.198.58.216; posting-account=vrfdLAoAAAAauX_3XwyXEwXCWN3A1l8D User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; fr),gzip(gfe),gzip(gfe) Xref: g2news2.google.com comp.lang.ada:6517 Date: 2009-06-18T12:55:49-07:00 List-Id: On 18 juin, 21:50, Hibou57 (Yannick Duch=EAne) wrote: > The second link gives the definition of =93Independent Module=94 as was > looking for : It also contains the definition for =93Eligible Compilation Process=94 : (the second part is the most important, but the second is required to understand the second one) > When you compile those source code files, they usually go through a serie= s of > steps:source code generation, preprocessing, compilation to low-level cod= e, > assembling, and linking. Not all projects follow all these steps, dependi= ng on > what language you're using and how it's written, but they'll always go in= this > order, and everyone using GCC will go through the process of compiling > high-level code into some low-level language such as assembly code or Jav= a > bytecode. This phase is when GCC combines or links your own code with cod= e > from the GCC libraries. We call it the =93Compilation Process.=94 The out= put you > get from it is called =93Target Code,=94 as long as that output is not us= ed as > compiler intermediate representation, or to create such an intermediate > representation. > > In order to take advantage of this permission, the Compilation Process th= at > you use to create Target Code has to be =93Eligible,=94 which means that = it does > not involve both GCC and GPL-incompatible software. It's important to rem= ember > that the Compilation Process starts when you feed any high-level code to = GCC, > and ends as soon as it generates anything that can be considered Target C= ode. > [...]