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=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,8a402d78988bdf2b X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-12-23 01:06:41 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!proxad.net!freenix!enst.fr!melchior!cuivre.fr.eu.org!melchior.frmug.org!not-for-mail From: Stephen Leake Newsgroups: comp.lang.ada Subject: Re: [announcement] SYSAPI and SYSSVC for Windows Date: 23 Dec 2003 04:05:48 -0500 Organization: Cuivre, Argent, Or Message-ID: References: <1071846912.728815@master.nyc.kbcfp.com> <1071852533.241196@master.nyc.kbcfp.com> <1072105705.142888@master.nyc.kbcfp.com> NNTP-Posting-Host: lovelace.ada-france.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: melchior.cuivre.fr.eu.org 1072170361 76481 80.67.180.195 (23 Dec 2003 09:06:01 GMT) X-Complaints-To: usenet@melchior.cuivre.fr.eu.org NNTP-Posting-Date: Tue, 23 Dec 2003 09:06:01 +0000 (UTC) To: comp.lang.ada@ada-france.org Return-Path: In-Reply-To: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 X-Virus-Scanned: by amavisd-new-20030616-p5 (Debian) at ada-france.org X-BeenThere: comp.lang.ada@ada-france.org X-Mailman-Version: 2.1.3 Precedence: list List-Id: Gateway to the comp.lang.ada Usenet newsgroup List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Xref: archiver1.google.com comp.lang.ada:3739 Date: 2003-12-23T04:05:48-05:00 "Ekkehard Morgenstern" writes: > "Hyman Rosen" wrote: > > GCC is fully capable of being built as a cross-compiler, so you do > > not necessarily need a bootstrap compiler on your target system. > > Thanks! I haven't thought of that! :) > > So I could use an existing platform, write a code generator > (or description thereof if supported), The code generator in GCC is highly configurable; to port it to a new CPU, you write a "machine description" file, which specifies how to translate Register Transition Logic into assembler. See the GCC manual for more info. > and then use it as a cross compiler. Then I could compile all the > tools and libraries needed on the target platform for GCC to compile > itself. Yes. > Which GCC version would you recommend for doing that? All are appropriate; GCC has been a cross compiler for a very long time. If you want the fewest bugs in GNAT, use 3.15p. -- -- Stephe