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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,c7ba3a3c7efe3bd X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,UTF8 Path: g2news2.google.com!news4.google.com!feeder2.cambriumusenet.nl!feed.tweaknews.nl!195.96.0.7.MISMATCH!newsfeed.utanet.at!newsfeed.straub-nv.de!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: Adress => Access: types for unchecked conversion have different sizes Date: Mon, 14 Mar 2011 18:40:06 +0000 Organization: A noiseless patient Spider Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Info: mx02.eternal-september.org; posting-host="dFCm8HWntFqmDIilBLqEJQ"; logging-data="1217"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX199Qtc4PmDStt/6jvOWv9FZY9GlW3FdkX8=" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (darwin) Cancel-Lock: sha1:Kh1h4ZIu4oveEzVypwq9fetJ9R8= sha1:Q0A9x99txglA8vMjkJUa4OkgwHk= Xref: g2news2.google.com comp.lang.ada:19156 Date: 2011-03-14T18:40:06+00:00 List-Id: "Martin Krischik" writes: > Anyway it compiler it I remove the -m64 option. So I guess it is a > problem in handling x86_64 code. Which in turn means I will “only” be > able to create a 32 bit compiler. Ahh well, better then nothing. There were a lot of issues on the move to x86_64 on Snow Leopard (in particular exception handling). The released 4.5.0 pretty much fixed that. But, as I said, it works here with no problems - the 4.5.2 release built (over 4.5.0, admittedly) with no problems, and I don't remember much if any with gcc version 4.6.0 20110225 (experimental) [trunk revision 157963] (GCC). For what it's worth, this is the configure command line I used for 4.6.0: ../gcc-trunk-svn/configure --prefix=/opt/gcc-4.6.0-x86_64 \ --disable-multilib --enable-languages=c,ada,c++,fortran \ --with-gmp=/opt/gnu --with-mpfr=/opt/gnu --with-mpc=/opt/gnu \ --build=x86_64-apple-darwin10 --disable-bootstrap (the GMP, MPFR and MPC links are to a set of static libraries - burnt once too often by forgetting to give other users the dylibs). Note the '--disable-bootstrap' confidence!