diff options
author | culot <culot@FreeBSD.org> | 2012-08-01 01:35:29 +0800 |
---|---|---|
committer | culot <culot@FreeBSD.org> | 2012-08-01 01:35:29 +0800 |
commit | 5ca367937e5ddd6b8e7f356a04b6215f40cb6ec8 (patch) | |
tree | 08a8589468a5e8977937dd93308d2257d5ecd05e /lang/Makefile | |
parent | 8643aeb200627f27110d29dfbaea6462682b5467 (diff) | |
download | freebsd-ports-gnome-5ca367937e5ddd6b8e7f356a04b6215f40cb6ec8.tar.gz freebsd-ports-gnome-5ca367937e5ddd6b8e7f356a04b6215f40cb6ec8.tar.zst freebsd-ports-gnome-5ca367937e5ddd6b8e7f356a04b6215f40cb6ec8.zip |
gcc-aux is the successor to the gcc-4.6-based lang/gnat-aux. Originally it
was planned for lang/gnat-aux to upgrade to version 4.7, then 4.8, etc.
However, some cross-compilers are based on it and there are some significant
differences between gcc 4.6 and 4.7. lang/gnat-aux also installs with a
${LOCALBASE} of /usr/local which has a high potential of file conflicts with
other lang/ compilers. Another reason for keeping them separate is just about
every Ada program will need to be patched for it due to new binding
interpretations stemming from Ada-2012 work. Simply updating gnat-aux would
break them all instantly.
The AUX compiler supports several languages: Ada, C, C++, Fortran and
Objective-C. Since Ada support must be built by an Ada-capable compiler, only
platforms for which a bootstrap compiler is available can build the AUX
compiler.
The AUX compiler is based on release versions of the Free Software Foundation's
GNU Compiler Collection. It carries with it the GMGPL license, the modified
version of the GPL that exempts generic instantiation from resulting in a
GPL-licensed executable. It also carries the GCC Runtime Library Exception, so
the resulting binaries have no licensing requirements. Binaries produced by
the AUX compiler should be legally handled the same as binaries produced by any
FSF compiler.
The AUX GNAT compiler implements the full Ada-83, Ada-95, Ada-2005 standard and
provides a partial implementation of Ada-2012.
WWW: http://www.dragonlace.net/
PR: ports/169951
Submitted by: John Marino <draco@marino.st>
Diffstat (limited to 'lang/Makefile')
-rw-r--r-- | lang/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lang/Makefile b/lang/Makefile index bb921082743a..b52010e67eea 100644 --- a/lang/Makefile +++ b/lang/Makefile @@ -82,6 +82,7 @@ SUBDIR += gauche SUBDIR += gawk SUBDIR += gcc + SUBDIR += gcc-aux SUBDIR += gcc34 SUBDIR += gcc42 SUBDIR += gcc44 |