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-Thread: a07f3367d7,1bee490c6c78dfa4,start X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.66.85.162 with SMTP id i2mr993377paz.30.1343207376254; Wed, 25 Jul 2012 02:09:36 -0700 (PDT) Path: c10ni30488pbw.0!nntp.google.com!news1.google.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: Ada novice Newsgroups: comp.lang.ada Subject: How to enable Ada with GCC in linux Date: Wed, 25 Jul 2012 02:06:33 -0700 (PDT) Organization: http://groups.google.com Message-ID: <7d9fc771-b046-4fe2-a2ec-459664b90c8e@googlegroups.com> NNTP-Posting-Host: 193.11.21.204 Mime-Version: 1.0 X-Trace: posting.google.com 1343207300 11286 127.0.0.1 (25 Jul 2012 09:08:20 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 25 Jul 2012 09:08:20 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=193.11.21.204; posting-account=Rr9I-QoAAACS-nOzpA-mGxtAlZ46Nb6I User-Agent: G2/1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Date: 2012-07-25T02:06:33-07:00 List-Id: I'm new to Linux and I have been able to run Ada programs under linux. On m= y machine, I found: gcc -v Using built-in specs. COLLECT_GCC=3Dgcc COLLECT_LTO_WRAPPER=3D/usr/lib/gcc/i486-linux-gnu/4.6/lto-wrapper Target: i486-linux-gnu Configured with: ../src/configure -v --with-pkgversion=3D'Debian 4.6.3-1' -= -with-bugurl=3Dfile:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages= =3Dc,c++,fortran,objc,obj-c++,go --prefix=3D/usr --program-suffix=3D-4.6 --= enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=3D/u= sr/lib --without-included-gettext --enable-threads=3Dposix --with-gxx-inclu= de-dir=3D/usr/include/c++/4.6 --libdir=3D/usr/lib --enable-nls --with-sysro= ot=3D/ --enable-clocale=3Dgnu --enable-libstdcxx-debug --enable-libstdcxx-t= ime=3Dyes --enable-plugin --enable-objc-gc --enable-targets=3Dall --with-ar= ch-32=3Di586 --with-tune=3Dgeneric --enable-checking=3Drelease --build=3Di4= 86-linux-gnu --host=3Di486-linux-gnu --target=3Di486-linux-gnu Thread model: posix gcc version 4.6.3 (Debian 4.6.3-1) As we can see above, Ada is not enabled in the languages available in GCC. = Yet, my gnatmake calls gcc well. gnatmake --version GNATMAKE GPL 2011 (20110419) Copyright (C) 1995-2011, Free Software Foundation, Inc. Should I leave things as they are since I am able to compile the Ada progra= ms well? Thanks=20 YC