aboutsummaryrefslogtreecommitdiffstats
path: root/lang/gcc
Commit message (Collapse)AuthorAgeFilesLines
* Add USES=libtooltijl2014-09-111-4/+3
|
* Update the default version of GCC in the Ports Collection from GCC 4.7.4gerald2014-09-114-14/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to GCC 4.8.3. This entails updating the lang/gcc port as well as changing the default in Mk/bsd.default-versions.mk, and it replaces the CONFLICT between the lang/gcc and lang/gcc47 ports by lang/gcc48. GCC now uses C++ as its implementation language and performs more aggressive loop analysis which can be disabled via the -fno-aggressive-loop-optimizations command-line option. Compilation of extremely large functions has been signficantly improved, as have interprocedural optimizations. A new optimization level -Og has been introduced. It addresses the need for fast compilation and a superior debugging experience while providing a reasonable level of run-time performance. This should be better suitable for development than the default -O0. A new local register allocator (LRA) has been implemented, which replaces the 26 year old reload pass and improves generated code quality. For now it is active on the x86 and x86-64 targets. AddressSanitizer, a fast memory error detector, has been added and can be enabled via -fsanitize=address. Each diagnostic emitted now includes the original source line and a caret indicating the column. The new option -Wpedantic is an alias for -pedantic, which is now deprecated. The C++ frontend and associated run-time library libstdc++ have gained support for many additional C++11 features. As with previous releases the Fortrand frontend has seen many improvements as well. Support for the AArch64 has been added, and there are many improvements to the x86/x86-64 backend and others. See http://gcc.gnu.org/gcc-4.8/changes.html for an extense list of changes; http://gcc.gnu.org/gcc-4.8/porting_to.html for information on how to port to that new version. PR: 192025 Tested by: antoine (-exp runs)
* Update to GCC 4.7.4, the latest (and final) release in the GCC 4.7gerald2014-07-192-6/+7
| | | | | | | | | series that closes this branch. Extend full-regression-test by running contrib/test_summary. Also clean *.la files in LIBEXEC, and recursively so, there and for TARGLIB.
* Fix build on system built WITHOUT_INFObapt2014-06-251-1/+1
| | | | With hat: portmgr
* Convert GMAKE to MAKE_CMDbapt2014-06-251-1/+1
| | | | | | | Please note that lots of invocation of MAKE_CMD here are wrong as they do not properly respect MAKE_ENV and friends With hat: portmgr
* Convert all :U to :tu and :L to :tlbapt2014-05-051-2/+2
| | | | | | | | | | | | | | Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a replacement for :U and :L (which has been marked as deprecated) bmake which is the default on FreeBSD 10+ only support by default :tu/:tl a hack has been added at the time to support :U and :L to ease migration. This hack is now not necessary anymore Note that this makes the ports tree incompatible with make(1) from FreeBSD 8.3 or earlier With hat: portmgr
* Merge updates from lang/gcc47 (and similarly lang/gcc48):gerald2014-04-303-4/+13
| | | | | | | | | | | | | - Add pkg-message that references the need to use -Wl,-rpath=... . [1] - Replace USE_BZIP2 by USES=tar:bzip2. - No longer install rebuild-gcj-db47 (which requires bash among others) and its man page. Bump PORTREVISION. PR: 185902 [1]
* Update the default version of GCC used in the Ports Collection fromgerald2014-03-115-31/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GCC 4.6.4 to GCC 4.7.3. This entails updating the lang/gcc port as well as changing the default in Mk/bsd.default-versions.mk. This adds powerpc64 as a supported architecture (and removes ia64, though it can be supported by manually installing lang/gcc48). New binaries %%GNU_HOST%%-gcc-ar47, %%GNU_HOST%%-gcc-nm47, and %%GNU_HOST%%-gcc-ranlib47 are provided to support link-time optimization (LTO) which scales significantly better. And it adds support for indirect functions (IFUNCS), experimental support for transactional memory in the compiler as well as a supporting run-time library called libitm, a new string length optimization pass, and support for atomic operations specifying the C++11/C11 memory model. Version 3.1 of the OpenMP specification is now supported for the C, C++, and Fortran compilers. GCC accepts the options -std=c11 and -std=gnu11 for the C11 revision of the ISO C standard which inlcude support for unicode strings, nonreturning functions (_Noreturn and <stdnoreturn.h>), alignment support (_Alignas, _Alignof, max_align_t, <stdalign.h>), and a __builtin_complex built-in function. The C++ frontend now accepts the -std=c++11, -std=gnu++11, and -Wc++11-compat options and implements many C++11 features of the language including extended friends syntax, explicit override control, non-static data member initializers, user-defined literals, alias declarations, delegating constructors, atomic classes, and more. The C++ standard library and Fortran frontend have received many improvements. See http://gcc.gnu.org/gcc-4.7/changes.html for an extense list of changes; http://gcc.gnu.org/gcc-4.7/porting_to.html for information on how to port to that new version. PR: 182136 Supported by: Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports) Tested by: bdrewery (two -exp runs)
* Set the license to a combination of GPLv3 (for the compiler itself) andgerald2014-02-221-0/+3
| | | | GPLv3 with GCC Runtime Library Exception (for the runtime).
* Remove the man7 pages, which we are not packaging, from the staginggerald2014-02-171-3/+1
| | | | | | | | | | | area to silence some warnings some are concerned about. [1] No longer run ccache-update-links as part of post-install which, in the world of staging, no longer is what it used to be. Rely on the existing @exec and @unexec in pkg-plist instead. [2] Submitted by: miwi [1] Discussed with: antoine [1][2]
* No longer add -I${LOCALBASE}/include to CFLAGS.gerald2014-02-161-1/+0
| | | | | | | | | | Since we now configure with --with-gmp=${LOCALBASE} this is no longer necessary, and due to bugs in binutils (which should not install ansidecl.h into ${PREFIX}/include, fixed with revision 336642 [1]) and GCC (which should search its own include directories with higher priority) could lead to build failures. PR: 184327 [1]
* Fix properties on pkg-plistbapt2014-01-221-1/+0
|
* Revert revision 334627 from 2013-11-23 that worked around a problem withgerald2013-12-071-1/+0
| | | | | | | | | | the staging infrastructure and had us remove info/gcc46 ourselves. [1] This has now been addressed in the general infrastructure and actually causes warnings in some cases. [2] PR: 184178 [1] Reported by: amdmi3 [2]
* Change PORTNAME for lang/gcc46 from gcc to gcc46 to match the actualgerald2013-11-261-1/+1
| | | | | | | | name of this port and avoid a package name collision with other GCC ports. This also allows us to remove LATEST_LINK. And it finally allows for a simple and proper CONFLICTS between lang/gcc and lang/gcc46.
* Work around ports infrastructure breakage introduced with staging andgerald2013-11-231-0/+1
| | | | | | | remove info/gcc46 ourselves. Reported by: QAT, amdmi3, mandree, bf, dbn PR: 184178
* Update to GCC 4.6.4 which, among others, addresses document buildinggerald2013-11-033-44/+40
| | | | | | | | | | | | | with new versions of texinfo. [1] Adopt the new LIB_DEPENDS standard and replace USE_GMAKE by USES=gmake. Remove an obsolete dependency on bison. [2] STAGEify. PR: 183342 [1] Reported by: Christoph Moench-Tegeder <cmt@burggraben.net> [1], marino [2]
* Update to libmpc version 1.0.1 which brings the following fixes:gerald2013-10-261-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Switched to automake 1.11.6, see CVE-2012-3386. - #14669: Fixed extraction of CC from gmp.h. - Fixed case of intermediate zero real or imaginary part in mpc_fma, found by hydra with GMP_CHECK_RANDOMIZE=1346362345. This is on top of the following changes from version 1.0 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no invariant sections) for the documentation. - 100% of all lines are covered by tests - Renamed functions . mpc_mul_2exp to mpc_mul_2ui . mpc_div_2exp to mpc_div_2ui - 0^0, which returned (NaN,NaN) previously, now returns (1,+0). - Removed compatibility with K&R compilers, which was untestable due to lack of such compilers. - New functions . mpc_log10 . mpc_mul_2si, mpc_div_2si - Speed-ups . mpc_fma - Bug fixes . mpc_div and mpc_norm now return a value indicating the effective rounding direction, as the other functions. . mpc_mul, mpc_sqr and mpc_norm now return correct results even if there are over- or underflows during the computation. . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has infinite part and equals output variable is corrected. . mpc_fr_sub: Wrong return value for imaginary part is corrected. Convert to the new LIB_DEPENDS standard and remove hard-coded .so versions from a couple of dependent ports. Bump PORTREVISIONS of all dependent ports. PR: 183141 Approved by: portmgr (bdrewery)
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-211-0/+1
| | | | lang)
* SSP support has been added to ports with WITH_SSP for i386 and amd64bdrewery2013-09-201-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | on FreeBSD 10, and amd64 on earlier versions. SSP_UNSAFE is added to disable in a port if it fails to build, but this should only be used in rare circumstances such as kernel modules. Otherwise, the port may just be failing due to lack of respecting LDFLAGS. On FreeBSD 10, this uses an ldscript in /usr/lib/libc.so to pull in libssp_nonshared.a to address issues linking on i386 [1]. On earlier FreeBSD versions the WITH_SSP knob will add -lssp_nonshared to LDFLAGS on i386. This is not needed on amd64. However, several hundred ports do not currently respect LDFLAGS, so this support is disabled currently as it causes build failures if a dependency is looking for the stack_chk symbols. Many thanks to jlh@ for this as he had many years of patience in getting all of the necessary pieces [1][2] in. [1] http://svnweb.freebsd.org/base/head/lib/libc/libc.ldscript?revision=251668&view=markup PR: ports/138228 [2] Submitted by: jlh (bsd.ssp.mk based on) Reviewed by: bapt With hat: portmgr exp-runs done: 37 over a month on 91i386,91amd64,10i386,10amd64
* Convert to new perl frameworkbapt2013-09-171-2/+2
| | | | Convert from USE_GMAKE to USES=gmake
* lang/gcc*: define CONFIGURE_TARGET genericly (8 ports)marino2013-09-121-2/+2
| | | | | | | | Instead of hardcoding the compiler target as FreeBSD, use the OPSYS variable to it. This makes no practical difference for FreeBSD, but it helps DragonFly get properly configured. Approved by: gerald
* Work around a bug in libcpp that pulls in the optional system iconvgerald2013-09-061-0/+10
| | | | | | | | | | | | | if present instead of relying on the port we actually depend on. The issue is that /usr/include/iconv.h has #include <stdbool.h> which in turn, since both are included very late in the game, conflicts with similar definintions by libcpp itself. libstdc++ does not seem to require adjustments, so PR 161417 may not be relevant in full. PR: 161417
* Introduce ICONV_CONFIGURE_ARG variable defined at Uses/iconv.mk.bsam2013-09-051-1/+1
| | | | | | | | It's value is "--with-libiconv-prefix=/usr/local" for systems before 100043 with ports libiconv and to use at systems post 100043 with base iconv it's value is "" (NULL). Co-authors: bapt, madpilot and bsam (me)
* Replace VERSIONSTRING by DISTVERSION.gerald2013-08-251-6/+5
| | | | Replace USE_GMAKE by USES=gmake.
* - Remove MAKE_JOBS_SAFE variableak2013-08-151-1/+0
| | | | Approved by: portmgr (bdrewery)
* Introduce a new option BOOTSTRAP that allows for doing a fullgerald2013-06-161-3/+8
| | | | | | | | | | | | | bootstrap of GCC, as opposed to just running a simple build. Bootstrapping is actually the default upstream, we disable it by default for the stable flavors of GCC since that is a huge win in terms of build time of the port. No change in default behavior for this port. (When bootstrapping, use bootstrap-lean instead of default/vanilla bootstrap to save on disk space.) Remove redundant setting of DISTNAME.
* - Convert USE_ICONV=yes to USES=iconvmva2013-04-271-2/+1
| | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: zeising
* Convert USE_BISON to USES= bisonbapt2013-03-081-1/+1
| | | | | | | | | | | | | | It brings bison as a build dependency in case it is set the following way: USES= bison or USES= bison:build it brings bison as a run dependency in case it is set the following way: USES= bison:run it brings bison both as a run and build dependency in case it the set the following way: USES= bison:both While here trim some headers Convert some USE_GNOME= gnomehack to USES= pathfix
* Use the new lang/gcc-ecj45 port when building the Java frontendgerald2013-03-033-14/+7
| | | | | | | | | | | | instead of including a pre-built version of the Eclipse Java Compiler (ECJ) ourselves. [1] Replace the use of DISTFILES by DISTNAME, since we are now down to one in all cases. Make binutils a build dependency as well (not just a run-time dependency). PR: 175072 [1]
* For releases, libquadmath.info is always installed, even ongerald2012-10-121-5/+8
| | | | | | | | | | | | | | architectures where the library is not supported. [1] Revamp the handling of different languages (frontends, run-times) by GCC to allow for orthogonal setting them in the future. [2] Print the list of languages being built as part of pre-everything and shorten the output of operating system and version there. Reported by: linimon [1] Inspired by: jkim [2] Feature safe: yes
* Convert to the new options framework.gerald2012-09-021-12/+5
| | | | Remove now deprecated comments at the top of Makefile.
* Just build, do not bootstrap, this stable, default version of GCCgerald2012-08-051-5/+5
| | | | | | | | | | | | in our ports tree. This speeds up a full port/package test cycle by 31% on a 4-core system; a simple build/install will benefit even more. (This may impact compile time by this compiler a bit, depending on how well the system compiler optimizes this codebase. And we only should do this for stable, established versions of GCC.) Remove ABI version numbers for all library dependencies.
* Update to the release of GCC 4.6.3. This now supports FreeBSD 10gerald2012-03-113-776/+4
| | | | | | and later out of the box, no more extra patches necessary. Feature safe: yes
* Fix the build on FreeBSD 10 and later.gerald2011-12-201-0/+771
| | | | Tested by: avg, kargl
* Enable the Objective-C front end and accordingly also the run-time.gerald2011-12-131-2/+3
| | | | Feature safe: yes
* Update to the GCC 4.6.2 release with a fair amount of bug fixes allgerald2011-11-122-4/+4
| | | | | | | | across the board, cf. http://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=4.6. for details. Feature safe: yes
* Omit LATEST_LINK to disambiguate this port from the original lang/gcc46.gerald2011-09-281-1/+0
| | | | Discussed with: erwin
* Welcome the new lang/gcc port! This shall track our preferred versiongerald2011-09-264-21/+31
| | | | | | | | | | | | | | | | | | | of GCC (usually an upstream release). It starts out as GCC 4.6.1 and is thus in conflict with lang/gcc46 and will move towards later minor versions of GCC 4.6 and then on to GCC 4.7. lang/gcc will provide gcc46, g++46, gfortran46 etc. exactly like lang/gcc46 with which it is interchangible. This is also planned to be in sync with our existing USE_FORTRAN knob so that users have the option of using this port, rarely updated, or the corresponding lang/gcc46 which follows weekly upstream snapshots. On the way rename %%GCC_VER%% in pkg-plist to %%GCC_VERSION%% and make the Makefile machinery a bit more generic to minimize differences between lang/gcc ports based on releases and those based on snapshots. PR: 156857
* Update to the 20110916 snapshot of GCC 4.6.2.gerald2011-09-182-4/+4
|
* Also update ccache links (when appropriate) in case of packagegerald2011-09-101-0/+2
| | | | | | | | | | installation and deinstallation. My code for handling the port installation case sneaked in via the previous commit. PR: 155568 Submitted by: ehaupt
* Update to the 20110909 snapshot of GCC 4.6.2.gerald2011-09-102-3/+6
|
* Update to the 20110902 snapshot of GCC 4.6.2.gerald2011-09-052-3/+3
|
* Update to the 20110826 snapshot of GCC 4.6.2.gerald2011-08-282-3/+3
|
* Update to the 20110812 snapshot of GCC 4.6.2.gerald2011-08-162-3/+3
|
* Update to the 20110729 snapshot of GCC 4.6.2.gerald2011-08-012-3/+3
|
* Update to the 20110722 snapshot of GCC 4.6.2.gerald2011-07-232-3/+3
|
* Update to the 20110715 snapshot of GCC 4.6.2.gerald2011-07-202-3/+3
|
* Update to the 20110708 snapshot of GCC 4.6.2.gerald2011-07-112-3/+3
|
* Update to the 20110701 snapshot of GCC 4.6.2, which is practicallygerald2011-07-042-3/+3
| | | | the GCC 4.6.1 release.
* Update to the 20110610 snapshot of GCC 4.6.1.gerald2011-06-132-3/+3
|
* Oops, remove testing code (to force older version).gerald2011-06-041-2/+2
|
* Oops, remove testing code (to force older version).gerald2011-06-041-1/+0
|
* Update to the 20110603 snapshot of GCC 4.6.1.gerald2011-06-041-0/+3
| | | | | | | Enable c, c++, and fortran (and only these) explicitly by default, and Java when/where available. [1] Reported by: Scott Allendorf <scott-allendorf@uiowa.edu> [1]
* Complete Java support by providing a pre-built copy of ecj.jar.gerald2011-06-033-0/+12
| | | | | PR: 157115 Tested by: joerg, mandree
* Update to the 20110526 snapshot of GCC 4.6.1. Upstream now only providesgerald2011-05-292-16/+4
| | | | a single tarball, so this brings a number of changes around that.
* Update to the 20110520 snapshot of GCC 4.6.1.gerald2011-05-212-11/+11
|
* Update to the 20110513 snapshot of GCC 4.6.1.gerald2011-05-142-11/+11
|
* Update to the 20110506 snapshot of GCC 4.6.1.gerald2011-05-082-11/+11
|
* Update to the 20110429 snapshot of GCC 4.6.1.gerald2011-05-012-11/+11
|
* Update to the 20110422 snapshot of GCC 4.6.1.gerald2011-04-242-15/+12
| | | | | | | Replace the, now dysfunctional, post-patch target with a configure option that marks this build of GCC as "FreeBSD Ports Collection". [1] Reported by: Bjoern Koenig <bkoenig@alpha-tierchen.de> [1]
* Update to the 20110415 snapshot of GCC 4.6.1.gerald2011-04-172-11/+11
|
* Update to the 20110408 snapshot of GCC 4.6.1.gerald2011-04-092-11/+11
|
* Update to the 20110401 snapshot of GCC 4.6.1.gerald2011-04-022-11/+11
|
* Update to the release of GCC 4.6.0 (basically). Really too many changesgerald2011-03-262-11/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to sensibly list here, but http://gcc.gnu.org/gcc-4.6/changes.html has a nice overview. Some highlights include - a new quad-precision library that's used by the Fortran frontend (on x86 and amd64); - new -Wunused-but-set-variable and -Wunused-but-set-parameter warnings for C family languages (enabled by -Wall and -Wall -Wextra, too); - new -Wdouble-promotion warning for implicit promotions to double; - a new general optimization level -Ofast combines -O3 with options that can affect standards compliance but result in better optimized code; - link-time optimizations (LTO) now scaling to large input sizes, using better heuristics, and optimizing more aggressively; - new command-line options -fstack-usage and -fstrict-volatile-bitfields (for precisely defining and accessing memory-mapped peripheral registers); - function attribute leaf that allows for more aggressive optimizations; - new data type __int128 for targets having wide enough machine-mode support; - support for selectively enabling and disabling warnings via #pragma GCC diagnostic has been added. For instance: #pragma GCC diagnostic error "-Wuninitialized" foo(a); /* error is given for this one */ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wuninitialized" foo(b); /* no diagnostic for this one */ #pragma GCC diagnostic pop foo(c); /* error is given for this one */ #pragma GCC diagnostic pop foo(d); /* depends on command line options */ - new command-line option-fmax-errors=N; - experimental support for some features from the upcoming ISO C1X; - similarly for ISO C++0x including constexpr, nullptr, noexcept, unrestricted unions, range-based for loops, opaque enums, implicitly deleted functions, and implicit move constructors; - default warning when integers are cast to larger pointer types, to disable via -Wno-int-to-pointer-cast; - signficiantly better diagnostics for C++ code; - loads and loads and loads of improvements to the Fortran frontend; - a new Go frontend and run-time library; - massive work on Objective-C and Objective-C++; notably extensive support for Objective-C 2.0 (not enabled by this port yet); - support for Intel Core 2 processors (-march=core2, -mtune=core2), Intel Core i3/i5/i7 processors /with AVS (-march=corei7, -mtune=corei7, -march=corei7-avx, -mtune=corei7-avx); - support for AMD Bobcat (fam 14) processors (-march=btver1, -mtune=btver1); Caveat: - Most libstdc++ standard headers have been changed to no longer include the cstddef header as an implementation detail.
* Add support for 32-bit powerpc.gerald2011-03-211-2/+2
| | | | Submitted by: andreast
* Update to the 20110318 snapshot of GCC 4.6.0.gerald2011-03-192-11/+13
| | | | | | Make the full-regression-test target conditional on MAINTAINER_MODE. [1] Reported by: andreast, marius [1]
* Update to the 20110312 snapshot of GCC 4.6.0. On the way, remove thegerald2011-03-192-19/+12
| | | | | LTO option. This is now the default, without any drawbacks or extra dependencies.
* Update to the 20110305 snapshot of GCC 4.6.0. Remove the dependencygerald2011-03-142-14/+12
| | | | | on libelf when building with link-time optimization (LTO) support which is not needed any more.
* Update to the 20110226 snapshot of GCC 4.6.0. The change for codegerald2011-02-273-36/+11
| | | | | generation on i386 to default to i486 on FreeBSD 6 and above is now upstream, too, so we can shed our specific patch.
* Update to the 20110219 snapshot of GCC 4.6.0.gerald2011-02-231-0/+25
| | | | | | | | | | | | | This addresses the pollution of common namespace by share/python/aotcompile.py and share/python/classfile.py which are now saved in version-specific directories. By means of an extra patch default code generation on i386 now defaults to i486 on FreeBSD 6 and above. [1] Submitted by: tijl [1] Reported by: Yuri Karaban <tech@askold.net> [1] PR: 154364 [1]
* Update to the 20110219 snapshot of GCC 4.6.0.gerald2011-02-233-14/+14
| | | | | | | | | | | | | This addresses the pollution of common namespace by share/python/aotcompile.py and share/python/classfile.py which now go into version-specific directories. By means of an extra patch default code generation on i386 defaults to i486 on FreeBSD 6 and above. [1] Submitted by: tijl [1] Reported by: Yuri Karaban <tech@askold.net> [1] PR: 154364 [1]
* Update to the 20110212 snapshot of GCC 4.6.0.gerald2011-02-152-11/+11
|
* Omit the libquadmath info file on sparc64 and ia64.gerald2011-02-101-2/+4
| | | | Reported by: Anton Shterenlikht <mexas@bristol.ac.uk>
* Update to the 20110205 snapshot of GCC 4.6.0. This finally addressesgerald2011-02-062-14/+11
| | | | | | | | a long standing issue around libgcj that's been hitting us and allows me to remove the stop gap I had put in place years ago. [1] PR: 81788 [1] Feature safe: yes
* Update to the 20110129 snapshot of GCC 4.6.0.gerald2011-01-302-11/+11
| | | | Feature safe: yes
* Update to the 20110122 snapshot of GCC 4.6.0. Among others, thisgerald2011-01-242-11/+11
| | | | | | | improves GOMP support on FreeBSD with a patch of mine to resolve linking issues. Feature safe: yes
* Update to the 20110115 snapshot of GCC 4.6.0.gerald2011-01-172-13/+13
| | | | | | Provide more background on the need to use --disable-rpath as a workaround. Feature safe: yes
* Update to the 20110108 snapshot of GCC 4.6.0.gerald2011-01-152-11/+11
| | | | Feature safe: yes
* Update to the 20110101 snapshot of GCC 4.6.0.gerald2011-01-022-11/+11
|
* Update to the 20101225 snapshot of GCC 4.6.0. This addresses thegerald2010-12-273-14/+13
| | | | | original pollution of include file namespace around libquadmath and adds a GNU info file for libquadmath.
* Update to the 20101127 snapshot of GCC 4.6.0.gerald2010-11-292-11/+11
|
* Update to the 20101120 snapshot of GCC 4.6.0. This brings libquadmathgerald2010-11-223-11/+13
| | | | | | (better support for 128 bit floating point types, which for now poisons global include file namespace though this won't be an issue before GCC 4.7 and I have reported it upstream).
* Update to the 20101113 snapshot of GCC 4.6.0.gerald2010-11-152-11/+11
|
* Update to the 20101106 snapshot of GCC 4.6.0.gerald2010-11-072-11/+11
|
* Update to the 20101030 snapshot of GCC 4.6.0.gerald2010-10-312-16/+11
| | | | Look ma', no more MD5 distinfo.
* Update to the 20101023 snapshot of GCC 4.6.0. This removes the gccbuggerald2010-10-243-17/+16
| | | | script which had allowed submitting bugs like send-pr in FreeBSD.
* Update to the 20101016 snapshot of GCC 4.6.0.gerald2010-10-172-16/+16
|
* Update to the 20101009 snapshot of GCC 4.6.0.gerald2010-10-112-16/+16
|
* Replace the explicit build dependency on devel/binutils by USE_BINUTILS.gerald2010-09-281-1/+1
| | | | Submitted by: bf
* Fix a small whitespace issue in OPTIONS.gerald2010-09-271-1/+1
|
* Update to the 20100925 snapshot of GCC 4.6.0.gerald2010-09-262-16/+16
|
* Update to the 20100918 snapshot of GCC 4.6.0 which now defaults to i486gerald2010-09-192-16/+16
| | | | architecture support on i386 thanks to a patch by tijl.
* Update to the 20100911 snapshot of GCC 4.6.0. This brings one fix forgerald2010-09-123-17/+36
| | | | | FreeBSD/ia64 that I made upstream and together with another, which is a local patch for now, ia64 can become part of ONLY_FOR_ARCHS.
* Update to the 20100904 snapshot of GCC 4.6.0. This brings first supportgerald2010-09-062-17/+16
| | | | for _float128 on i386 and proper symbol versioning for libgcc.
* Similar to lang/gcc45, add a new option LTO that enables GCC's newgerald2010-09-051-1/+11
| | | | | | | | | | | | link-time optimization framework and optimizations. GCC 4.6 has been seeing a lot of work since GCC 4.5, but we are still keeping this disable by default for now Using LTO adds libelf as a new dependency and in either case the environment does not have an influence any more. Bumping PORTREVISION since someone who had libelf on his system previously to this change would get LTO enabled automatically and then run into problems if libelf was removed.
* Update to the 20100828 snapshot of GCC 4.6.0.gerald2010-08-302-16/+16
|
* Update to the 20100821 snapshot of GCC 4.6.0. This now really does notgerald2010-08-232-16/+16
| | | | | | | | work with the ancient version of GNU as that is part of FreeBSD 8.1 and earlier (and likely later), so where the dependency this port has on devel/binutils was a strong recommendation until now and necessary to leverage new processor features and the -mtune=native option when running on those newer processors, it is now strictly needed on x86-64 at least.
* Update to the 20100814 snapshot of GCC 4.6.0.gerald2010-08-212-17/+17
| | | | | | Replace NOT_FOR_ARCHS by ONLY_FOR_ARCHS. [1] Suggested by: linimon
* Update to the 20100807 snapshot of GCC 4.6.0.gerald2010-08-082-16/+16
|
* Update to the 20100724 snapshot of GCC 4.6.0.gerald2010-07-252-16/+16
|
* Update to the 20100717 snapshot of GCC 4.6.0.gerald2010-07-192-16/+16
| | | | Feature safe: yes
* Update to the 20100710 snapshot of GCC 4.6.0.gerald2010-07-112-16/+16
| | | | Feature safe: yes
* Update to the 20100703 snapshot of GCC 4.6.0.gerald2010-07-052-16/+16
| | | | Feature safe: yes
* Update to the 20100626 snapshot of GCC 4.6.0.gerald2010-06-272-16/+18
| | | | | | | Make Java support an OPTION (JAVA) so it is easier to deselect. [1] Suggested by: doubg [1] Feature safe: yes
* Simplify full-regression-test.gerald2010-06-271-1/+1
| | | | Feature safe: yes
* Update to the 20100619 snapshot of GCC 4.6.0.gerald2010-06-202-16/+16
| | | | Feature safe: yes
* Update to the 20100612 snapshot of GCC 4.6.0.gerald2010-06-132-17/+16
|
* Chase mpfr library and bump PORTREVISION.ale2010-06-111-1/+2
|
* Update to the 20100605 snapshot of GCC 4.6.0.gerald2010-06-062-16/+16
|
* Update to the 20100529 snapshot of GCC 4.6.0.gerald2010-05-302-16/+16
|
* Update to the 20100515 snapshot of GCC 4.6.0.gerald2010-05-222-16/+16
|
* Adjust references to the GCC version to refer to 4.6.gerald2010-05-082-5/+5
| | | | Reported by: Eitan Adler <eitanadlerlist@gmail.com>
* Update to the 20100501 snapshot of GCC 4.6.0.gerald2010-05-022-16/+16
|
* Complete the creation of this port by adjusting it from GCC 4.5 to thegerald2010-04-263-17/+17
| | | | | 20100424 snapshot of GCC 4.6.0, which is a very, very early version of said release which likely won't happen before 2011.
* Update to the 20100422 snapshot of GCC 4.5.1.gerald2010-04-252-17/+16
|
* Switch to use newer GMP version.ale2010-04-191-1/+2
| | | | | | PR: ports/144487 Submitted by: ale Approved by: portmgr (-exp run by erwin)
* Update to the 20100415 snapshot of GCC 4.5.1. This is basically thegerald2010-04-192-16/+16
| | | | | official release of GCC 4.5.0, thought that one may still have some kinks and I recommend staying with GCC 4.4 for production use.
* Update to the 20100401 snapshot of GCC 4.5.0.gerald2010-04-022-16/+16
|
* Update to the 20100318 snapshot of GCC 4.5.0.gerald2010-03-192-16/+16
|
* Update to the 20100311 snapshot of GCC 4.5.0.gerald2010-03-132-16/+16
|
* Update to the 20100304 snapshot of GCC 4.5.0.gerald2010-03-082-16/+16
|
* Update to the 20100225 snapshot of GCC 4.5.0.gerald2010-02-272-16/+16
| | | | Feature safe: yes
* Update to the 20100218 snapshot of GCC 4.5.0.gerald2010-02-192-16/+16
| | | | Feature safe: yes
* Update to the 20100211 snapshot of GCC 4.5.0.gerald2010-02-142-16/+16
|
* Update to the 20100204 snapshot of GCC 4.5.0.gerald2010-02-062-16/+16
|
* Update to the 20100128 snapshot of GCC 4.5.0.gerald2010-02-022-16/+16
|
* Also build Java on amd64.gerald2010-01-221-1/+1
| | | | Submitted by: Andreas Tobler <andreast@fgznet.ch>
* Update to the 20100114 snapshot of GCC 4.5.0.gerald2010-01-172-16/+17
| | | | | Since we already require devel/binutils for the assembler, also enforce use of the linker from there.
* Update to the 20100107 snapshot of GCC 4.5.0.gerald2010-01-082-16/+16
|
* Update to the 20091231 snapshot of GCC 4.5.0 which brings some keygerald2010-01-022-25/+16
| | | | | | | improvements to libffi (Java), especially on amd64. Remove the WITH_JAVA_AWT knob which really has not been used a lot, if at all.
* Update to the 20091224 snapshot of GCC 4.5.0. On the way, sort pkg-plistgerald2009-12-283-23/+23
| | | | a bit differently.
* Update to the 20091217 snapshot of GCC 4.5.0.gerald2009-12-192-17/+16
|
* Use current GNU binutils from ports (devel/binutils) instead of thegerald2009-12-011-5/+9
| | | | | | | | | | | system tools. The latter are half a decade old and fail to properly support modern CPUs and their standard features such as SSE or AVX in the case of AMD64/Intel64 which means that they even break when using a simple -march=native. On the way, sort CONFIGURE_ARGS. PR: 140995, 136607
* Update to the 20091126 snapshot of GCC 4.5.0. Among others this failsgerald2009-11-302-16/+16
| | | | | to build emulators/wine due to problems with debuginfo, but then this is more of an experimental port than anything, so always use with care.
* With lang/gcc295 gone (and not building for most of the last year), we cangerald2009-11-251-8/+0
| | | | | now remove the check for a gcc295 binary that might cause build failure in libgcj.
* Update to the 20091119 snapshot of GCC 4.5.0.gerald2009-11-202-16/+16
|
* No longer download Objective-C related files which we don't actually use.gerald2009-11-203-15/+6
| | | | | | | | Minor style changes. Adjust the ports description to the new style I am using for the various gcc ports and remove an obsolete note on memory consumption when building libgcj (the Java library).
* Update to the 20091112 snapshot of GCC 4.5.0.gerald2009-11-132-19/+19
|
* Update to the 20091105 snapshot of GCC 4.5.0.gerald2009-11-072-19/+19
|
* Update to the 20091029 snapshot of GCC 4.5.0.gerald2009-10-312-19/+19
|
* Update to the 20091022 snapshot of GCC 4.5.0.gerald2009-10-252-19/+19
|
* Update to the 20091015 snapshot of GCC 4.5.0.gerald2009-10-172-19/+19
|
* Update to the 20091008 snapshot of GCC 4.5.0. Add math/mpc as agerald2009-10-112-20/+21
| | | | | dependency going forward; it will become mandatory in the next weeks and for the final GCC 4.5.0 release.
* Update to the 20091001 snapshot of GCC 4.5.0.gerald2009-10-032-19/+19
|
* For GCC 4.5 libgcj has been broken up such compilation no longer requiresgerald2009-09-271-9/+0
| | | | | | | more than half a GB of memory. Accordingly, we can now remove the build- time test for that from pre-everything. Feature safe: yes
* Update to the 20090924 snapshot of GCC 4.5.0.gerald2009-09-262-19/+19
| | | | Feature safe: yes
* Update to the 20090917 snapshot of GCC 4.5.0.gerald2009-09-192-19/+19
| | | | Feature safe: yes
* Update to the 20090910 snapshot of GCC 4.5.0.gerald2009-09-112-19/+19
|
* Update to the 20090827 snapshot of GCC 4.5.0.gerald2009-09-042-19/+19
|
* Update to the 20090820 snapshot of GCC 4.5.0.gerald2009-08-222-19/+19
|
* Update to the 20090813 snapshot of GCC 4.5.0.gerald2009-08-142-19/+19
|
* Update to the 20090806 snapshot of GCC 4.5.0.gerald2009-08-072-19/+19
|
* Update to the 20090730 snapshot of GCC 4.5.0.gerald2009-08-012-19/+19
|
* Update to the 20090723 snapshot of GCC 4.5.0.gerald2009-07-252-19/+19
|
* Update to the 20090716 snapshot of GCC 4.5.0.gerald2009-07-182-19/+19
|
* Update to the 20090709 snapshot of GCC 4.5.0.gerald2009-07-122-19/+19
|
* Update to the 20090625 snapshot of GCC 4.5.0.gerald2009-06-272-19/+19
|
* The new libffi man pages depend on Java, thus are not available on x86-64.gerald2009-06-221-3/+3
| | | | Reported by: QAT
* Update to the 20090618 snapshot of GCC 4.5.0. Tweak pkg-descr "footer".gerald2009-06-204-26/+32
| | | | | | | | | | | | Add hack for non-default LOCALBASE until the ports infrastructure has been fixed. [1] The new share/libstdc++/python/libstdcxx has now moved to a version specific location based on an upstream report of mine. And there are now three new ffi related man pages. Dedicated to:
* Update to the 20090604 snapshot of GCC 4.5.0.gerald2009-06-062-19/+19
|
* Update to the 20090528 snapshot of GCC 4.5.0.gerald2009-05-303-23/+30
| | | | | | | | | | Move the snapshot date from PORTREVISION to being a part of PORTVERSION to allow for PORTREVISION bumps. Simplify pre-everything and adjust PLIST_SUB accordingly. Move VERSIONSTRING down to pacify portlint after all those years and extract it from PORTVERSION, too.
* Update to the 20090521 snapshot of GCC 4.5.0.gerald2009-05-242-19/+19
|
* Make the determination of SUFFIX more general and the one ofgerald2009-05-191-2/+2
| | | | CONFIGURE_SCRIPT more robust.
* Update to the 20090514 snapshot of GCC 4.5.0.gerald2009-05-182-24/+24
| | | | | | | | | Extract SUFFIX from PORTVERSION. Use SUFFIX for TARGLIB (and thus for the library path used by this port). Also use SUFFIX for the libexec directory instead of the full port version and flatten the directory structure and simplify the logic along the way. Tinder-tested by: itetcu@
* - Chase math/libgmp4 shlib bumppav2009-05-141-1/+1
| | | | | Reported by: pointyhat Pointy hat to: ale
* Update to the 20090507 snapshot of GCC 4.5.0.gerald2009-05-102-19/+19
|
* Update to the 20090423 snapshot of GCC 4.5.0.gerald2009-04-252-19/+19
|
* Update to the 20090409 snapshot of GCC 4.5.0.gerald2009-04-102-19/+19
|
* This port installs gcc45, g++45, gcj45, gfortran45 and so forth, not thegerald2009-04-081-2/+2
| | | | | | 44 flavors of course. Reported by: linimon
* Initiate lang/gcc45 by updating to the 20090402 snapshot of GCC 4.5.0.gerald2009-04-083-28/+27
| | | | | Address a long term FIXME related to older versions of FreeBSD by removing NOMANCOMPRESS=yes.
* Update to the 20090331 snapshot of GCC 4.4.0.gerald2009-04-012-19/+19
|
* Update to the 20090327 snapshot of GCC 4.4.0.gerald2009-03-302-19/+20
| | | | Set MAKE_JOBS_SAFE to allow for parallel builds.
* Update to the 20090313 snapshot of GCC 4.4.0.gerald2009-03-152-33/+28
| | | | | | | | | | | Remove obsolete code to create (empty) man pages in case regular man pages cannot be created. This catches four dummy man pages we are now able to remove: gjnih44, grepjar44, jar44, jv-scan44, rmic44, and rmiregistry44. Rename the check target to full-regression-test to be in sync with the lang/gcc43 port. Add a conditional dependency on misc/dejagnu and make the inclusion of gcc-testsuite in DISTFILES conditional, too.
* Update to the 20090227 snapshot of GCC 4.4.0.gerald2009-02-282-19/+19
|
* Update to the 20090220 snapshot of GCC 4.4.0.gerald2009-02-212-19/+19
|
* Update to the 20090213 snapshot of GCC 4.4.0.gerald2009-02-153-25/+19
| | | | | This no longer contains bin/addr2name.awk44. Also remove the post-build target and its hint for running the testsuite.
* Update to the 20090130 snapshot of GCC 4.4.0.gerald2009-02-012-24/+24
| | | | | | | | | Set PORTNAME, MAINTAINER, COMMENT, and LATEST_LINK unconditionally as opposed to using ?=. Add powerpc to NOT_FOR_ARCHS. [1] PR: 130964 [1]
* Chase mpfr library.ale2009-01-311-1/+1
|
* Update to the 20090123 snapshot of GCC 4.4.0.gerald2009-01-242-19/+19
|
* Update to the 20090116 snapshot of GCC 4.4.0.gerald2009-01-182-19/+19
|
* Update to the 20090109 snapshot of GCC 4.4.0.gerald2009-01-112-19/+19
|
* - Remove conditional checks for FreeBSD 5.x and olderpav2009-01-061-8/+2
|
* Replace CONFLICTS=gcc-2.95.*, which actually is too late to preventgerald2009-01-041-3/+8
| | | | | | us running into build problems, by an earlier check (pre-extract). Suggested by: pav
* Update to the 20090102 snapshot of GCC 4.4.0.gerald2009-01-042-19/+19
|
* Update to the 20081226 snapshot of GCC 4.4.0.gerald2008-12-282-19/+19
|
* Update to the 20081128 snapshot of GCC 4.4.0.gerald2008-12-012-19/+19
|
* Update to the 20081121 snapshot of GCC 4.4.0.gerald2008-11-232-19/+19
|
* Update to the 20081107 snapshot of GCC 4.4.0.gerald2008-11-092-19/+20
|
* Update to the 20081017 snapshot of GCC 4.4.0.gerald2008-10-252-19/+19
|
* Update to the 20081003 snapshot of GCC 4.4.0.gerald2008-10-052-19/+19
|
* Update to the 20080926 snapshot of GCC 4.4.0.gerald2008-09-282-19/+19
|
* Update to the 20080919 snapshot of GCC 4.4.0.gerald2008-09-242-19/+19
|
* Update to the 20080905 snapshot of GCC 4.4.0.gerald2008-09-072-19/+19
|
* Update to the 20080822 snapshot of GCC 4.4.0.gerald2008-08-242-19/+19
|
* Update to the 20080815 snapshot of GCC 4.4.0.gerald2008-08-173-19/+20
| | | | Remove the share/python directory if empty.
* Update to the 20080801 snapshot of GCC 4.4.0.gerald2008-08-042-19/+19
|
* Update to the 20080725 snapshot of GCC 4.4.0.gerald2008-07-272-19/+19
|
* Update to the 20080711 snapshot of GCC 4.4.0. Among others, libgcjgerald2008-07-133-20/+26
| | | | now brings to additional programs, aot-compile and rebuild-gcj-db.
* Update to the 20080627 snapshot of GCC 4.4.0.gerald2008-06-292-19/+19
|
* Update to the 20080613 snapshot of GCC 4.4.0.gerald2008-06-152-19/+19
|
* Update to the 20080606 snapshot of GCC 4.4.0.gerald2008-06-112-19/+19
|
* Update to the 20080523 snapshot of GCC 4.4.0.gerald2008-05-242-19/+19
|
* Update to the 20080509 snapshot of GCC 4.4.0.gerald2008-05-112-19/+19
|
* Update to the 20080502 snapshot of GCC 4.4.0.gerald2008-05-042-19/+19
|
* Update to the 20080411 snapshot of GCC 4.4.0.gerald2008-04-132-19/+19
|
* Update to the 20080328 snapshot of GCC 4.4.0.gerald2008-03-302-19/+19
|
* Update to the 20080321 snapshot of GCC 4.4.0.gerald2008-03-232-19/+19
|
* Update to the 20080314 snapshot of GCC 4.4.0.gerald2008-03-182-19/+19
|
* Update to the 20080307 snapshot of GCC 4.4. Very early alpha, take care!gerald2008-03-082-19/+19
|
* Now track GCC 4.4 development (currently at 4.4.0 snapshot 20080229) viagerald2008-03-024-26/+26
| | | | | | | | the new lang/gcc44 port. At this point, this is mostly identical to what we have in lang/gcc43 which is in the final stages before the GCC 4.3.0 release, but things will start diverging soon. PR: 120984
* Update to the 20080221 snapshot of GCC 4.3.0.gerald2008-02-222-20/+20
| | | | | | Make PORTSNAME overridable.[1] Submitted by: maho[1]
* Update to the 20080215 snapshot of GCC 4.3.0.gerald2008-02-172-19/+19
|
* Update to the 20080208 snapshot of GCC 4.3.0.gerald2008-02-112-19/+19
|
* Update to the 20080201 snapshot of GCC 4.3.0.gerald2008-02-032-19/+19
|
* Update to the 20080125 snapshot of GCC 4.3.0.gerald2008-01-272-19/+19
|
* Update to the 20080118 snapshot of GCC 4.3.0.gerald2008-01-202-19/+19
|
* Update to the 20080111 snapshot of GCC 4.3.0.gerald2008-01-122-19/+19
|
* Update to the 20080104 snapshot of GCC 4.3.0.gerald2008-01-062-19/+19
|
* Update to the 20071221 snapshot of GCC 4.3.0.gerald2007-12-262-19/+19
|
* Update to the 20071026 snapshot of GCC 4.3.0.gerald2007-10-272-19/+19
|
* Update to the 20071019 snapshot of GCC 4.3.0.gerald2007-10-202-19/+19
|
* Migration from bison 1.x to 2.xade2007-10-171-1/+1
| | | | | PR: 117086 Tested by: -exp runs
* Update to the 20071012 snapshot of GCC 4.3.0.gerald2007-10-142-19/+19
|
* Update to the 20070928 snapshot of GCC 4.3.0.gerald2007-09-292-19/+19
|
* Update to the 20070914 snapshot of GCC 4.3.0.gerald2007-09-162-19/+19
|
* Update to the 20070831 snapshot of GCC 4.3.0.gerald2007-09-032-19/+19
|
* Chase mpfr library and bump PORTREVISION.ale2007-08-301-1/+1
|
* Update to the 20070817 snapshot of GCC 4.3.0.gerald2007-08-202-19/+19
|
* Add missing note on the CONFLICTS with lang/gcc295.gerald2007-08-121-0/+2
| | | | Reported by: cy
* Update to the 20070810 snapshot of GCC 4.3.0.gerald2007-08-122-19/+20
|
* Update to the 20070727 snapshot of GCC 4.3.0.gerald2007-07-292-19/+19
|
* - Set --mandir and --infodir in CONFIGURE_ARGS if the configure scriptrafan2007-07-231-2/+1
| | | | | | | | | | | | | | | | | | supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run
* Update to the 20070720 snapshot of GCC 4.3.0.gerald2007-07-222-19/+19
|
* Update to the 20070713 snapshot of GCC 4.3.0.gerald2007-07-152-19/+19
|
* Update to the 20070622 snapshot of GCC 4.3.0.gerald2007-06-252-19/+19
|
* Update to the 20070601 snapshot of GCC 4.3.0.gerald2007-06-022-19/+19
|
* Update to the 20070518 snapshot of GCC 4.3.0 (since this week's one isgerald2007-05-282-19/+19
| | | | broken).
* Update to the 20070427 snapshot of GCC 4.3.0.gerald2007-04-282-19/+19
|
* Update to the 20070420 snapshot of GCC 4.3.0.gerald2007-04-212-22/+22
| | | | | | | Move the WITH_JAVA_AWT bits into the ! WITHOUT_JAVA branch, that is, enable this only when Java is enabled. PR: 111544
* Update to the 20070413 snapshot of GCC 4.3.0.gerald2007-04-142-19/+20
| | | | Add WANT_GNOME=yes per our GNOME porting documentation.
* libjava now also provides cp-tools.info.gerald2007-04-121-1/+2
| | | | Reported by: rafan
* Move everything related to the WITH_JAVA_AWT knob into a single blockgerald2007-04-121-14/+12
| | | | | | and make this a subset of the general Java-specific section. Submitted by: alepulver
* Check for, and warn about the datasize limit, before trying to buildgerald2007-04-101-0/+9
| | | | | | | with Java support. PR: 111126 Suggested by: kris, cperciva
* Update to the 20070406 snapshot of GCC 4.3.0.gerald2007-04-092-19/+19
|
* Document the large memory requirements when building with Java support.gerald2007-03-311-0/+4
| | | | Discussed with: alepulver
* Update to the 20070323 snapshot of GCC 4.3.0.gerald2007-03-282-19/+19
|
* Update to the 20070316 snapshot of GCC 4.3.0.gerald2007-03-182-19/+19
|
* Update to the 20070309 snapshot of GCC 4.3.0. This brings a new gcjh43gerald2007-03-133-20/+31
| | | | | | application and man pages for gappletviewer43, gjar43, gjarsigner43, gjavah43, gkeytool43, gnative2ascii43, gorbd43, grmid43, gserialver43, and gtnameserv43.
* Update to the 20070302 snapshot of GCC 4.3.0.gerald2007-03-042-19/+19
|
* Update to the 20070223 snapshot of GCC 4.3.0. No extra patch is neededgerald2007-02-253-50/+19
| | | | to build on i386 any longer.