aboutsummaryrefslogtreecommitdiff
path: root/lang/gcc46
Commit message (Collapse)AuthorAgeFilesLines
* No longer add -I${LOCALBASE}/include to CFLAGS.Gerald Pfeifer2014-02-221-1/+3
| | | | | | | | | | | | | | | | 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. Set the license to a combination of GPLv3 (for the compiler itself) and GPLv3 with GCC Runtime Library Exception (for the runtime). PR: 184327 [1] Notes: svn path=/head/; revision=345671
* Remove the man7 pages, which we are not packaging, from the stagingGerald Pfeifer2014-02-151-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] Notes: svn path=/head/; revision=344413
* Fix properties on pkg-plistBaptiste Daroussin2014-01-211-1/+0
| | | | Notes: svn path=/head/; revision=340674
* Revert revision 334619 from 2013-11-22 that worked around a problem withGerald Pfeifer2013-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] Notes: svn path=/head/; revision=335819
* Change PORTNAME for lang/gcc46 from gcc to gcc46 to match the actualGerald Pfeifer2013-11-261-3/+3
| | | | | | | | | | | 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. Notes: svn path=/head/; revision=334934
* Work around ports infrastructure breakage introduced with staging andGerald Pfeifer2013-11-221-0/+1
| | | | | | | | | | remove info/gcc46 ourselves. Reported by: QAT, amdmi3, mandree, bf, dbn PR: 184178 Notes: svn path=/head/; revision=334619
* Remove a (long) obsolete dependency on bison. [1]Gerald Pfeifer2013-10-282-39/+36
| | | | | | | | | | | Migrate to the new LIB_DEPENDS standard. STAGEify. Reported by: marino [1] Notes: svn path=/head/; revision=331816
* Update to libmpc version 1.0.1 which brings the following fixes:Gerald Pfeifer2013-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) Notes: svn path=/head/; revision=331644
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | lang) Notes: svn path=/head/; revision=327741
* SSP support has been added to ports with WITH_SSP for i386 and amd64Bryan Drewery2013-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 Notes: svn path=/head/; revision=327697
* Convert to new perl frameworkBaptiste Daroussin2013-09-171-2/+2
| | | | | | | Convert from USE_GMAKE to USES=gmake Notes: svn path=/head/; revision=327452
* lang/gcc*: define CONFIGURE_TARGET genericly (8 ports)John 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 Notes: svn path=/head/; revision=327052
* Work around a bug in libcpp that pulls in the optional system iconvGerald Pfeifer2013-09-051-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. Interestingly enough, lang/gcc46 and lang/gcc48 did not fail under the same test scenarios and libstdc++ does not seem to require adjustments, so PR 161417 may not be relevant in full. PR: 161417 Notes: svn path=/head/; revision=326441
* Introduce ICONV_CONFIGURE_ARG variable defined at Uses/iconv.mk.Boris Samorodov2013-09-041-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) Notes: svn path=/head/; revision=326316
* Replace VERSIONSTRING by DISTVERSION.Gerald Pfeifer2013-08-241-6/+5
| | | | | | | Replace USE_GMAKE by USES=gmake. Notes: svn path=/head/; revision=325319
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* When bootstrapping, which is not the default for this GCC port, useGerald Pfeifer2013-06-021-0/+2
| | | | | | | | bootstrap-lean instead of default/vanilla bootstrap to save on disk space. Notes: svn path=/head/; revision=319721
* Update to GCC 4.6.4, the final release and end of the GCC 4.6 branch.Gerald Pfeifer2013-05-132-10/+15
| | | | | | | | | | | | | | (This requires an EPOCH bump due to how snapshots are labeled.) Introduce a new option BOOTSTRAP that allows for doing a full 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. Notes: svn path=/head/; revision=317986
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-2/+1
| | | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: zeising Notes: svn path=/head/; revision=316662
* Convert USE_BISON to USES= bisonBaptiste Daroussin2013-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 Notes: svn path=/head/; revision=313635
* Update to the 20130215 snapshot of GCC 4.6.4.Gerald Pfeifer2013-02-162-3/+3
| | | | Notes: svn path=/head/; revision=312372
* Use the new lang/gcc-ecj45 port when building the Java frontendGerald Pfeifer2013-01-263-17/+9
| | | | | | | | | | | | | | | 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. On the way, update to the 20130125 of GCC 4.6.4. PR: 175072 [1] Notes: svn path=/head/; revision=311012
* Re-add ecj-4.5.jar to distinfo.Gerald Pfeifer2012-12-011-0/+2
| | | | | | | | Reported by: andy@neu.net Feature safe: yes Notes: svn path=/head/; revision=308060
* Make binutils a build dependency as well (not just a run-time dependency).Gerald Pfeifer2012-12-012-5/+4
| | | | | | | | | | | Without this, the libiberty build fails locating ar. Also update to the 20121123 snapshot of 4.6.4. Feature safe: yes Notes: svn path=/head/; revision=308059
* Given how stable the GCC 4.6 branch is these days, like with lang/gccGerald Pfeifer2012-11-042-5/+5
| | | | | | | | | | | | | | | | | just build, do not bootstrap, when building this port. 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.) On the way, update to the 20121102 snapshot of GCC 4.6.4. Feature safe: yes Notes: svn path=/head/; revision=306985
* Update to the 20121026 snapshot of GCC 4.6.4. Bring a comment in lineGerald Pfeifer2012-11-032-4/+4
| | | | | | | | | with related ports. Feature safe: yes Notes: svn path=/head/; revision=306894
* Revamp the handling of different languages (frontends, run-times)Gerald Pfeifer2012-09-302-6/+8
| | | | | | | | | | | | by GCC to allow for orthogonal setting them in the future. [1] Print the list of languages being built as part of pre-everything and shorten the output of operating system and version there. Inspired by: jkim [1] Notes: svn path=/head/; revision=305088
* Update to the 20120831 snapshot of GCC 4.6.4.Gerald Pfeifer2012-09-012-9/+3
| | | | | | | Remove now deprecated comments at the top of Makefile. Notes: svn path=/head/; revision=303510
* Convert to the new options framework.Gerald Pfeifer2012-08-222-12/+11
| | | | | | | | | Remove ABI version numbers for all library dependencies. Update to the 20120817 snapshot of GCC 4.6.4. Notes: svn path=/head/; revision=302914
* Update to the 20120608 snapshot of GCC 4.6.4.Gerald Pfeifer2012-06-102-3/+3
| | | | Notes: svn path=/head/; revision=298980
* Update to the 20120511 snapshot of GCC 4.6.4.Gerald Pfeifer2012-05-122-3/+3
| | | | Notes: svn path=/head/; revision=296479
* Update to the 20120420 snapshot of GCC 4.6.4.Gerald Pfeifer2012-04-222-3/+3
| | | | Notes: svn path=/head/; revision=295247
* Update to the 20120413 snapshot of GCC 4.6.4.Gerald Pfeifer2012-04-142-3/+3
| | | | Notes: svn path=/head/; revision=294828
* Update to the 20120406 snapshot of GCC 4.6.4.Gerald Pfeifer2012-04-072-3/+3
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=294319
* Update to the 20120330 snapshot of GCC 4.6.4.Gerald Pfeifer2012-04-032-3/+3
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=294173
* Update to the 20120309 snapshot of GCC 4.6.4.Gerald Pfeifer2012-03-102-4/+4
| | | | | | | | | | Increase CONFLICTS to also cover GCC 4.6.3 now, in anticipation of a forthcoming update of lang/gcc to GCC 4.6.3. Feature safe: yes Notes: svn path=/head/; revision=293067
* Update to the 20120302 snapshot of GCC 4.6.4, which nearlyGerald Pfeifer2012-03-032-3/+3
| | | | | | | coincides with the GCC 4.6.3 release. Notes: svn path=/head/; revision=292620
* Update to what is basically the first RC of GCC 4.6.3.Gerald Pfeifer2012-02-262-3/+3
| | | | Notes: svn path=/head/; revision=292284
* Update to the 20120217 snapshot of GCC 4.6.3.Gerald Pfeifer2012-02-182-3/+3
| | | | Notes: svn path=/head/; revision=291674
* Update to the 20120203 snapshot of GCC 4.6.3.Gerald Pfeifer2012-02-042-3/+3
| | | | Notes: svn path=/head/; revision=290389
* Update to the 20120120 snapshot of GCC 4.6.3.Gerald Pfeifer2012-01-222-3/+3
| | | | Notes: svn path=/head/; revision=289640
* Update to the 20120113 snapshot of GCC 4.6.3.Gerald Pfeifer2012-01-142-4/+3
| | | | Notes: svn path=/head/; revision=289162
* Update to the 20120106 snapshot of GCC 4.6.3.Gerald Pfeifer2012-01-072-3/+3
| | | | Notes: svn path=/head/; revision=288664
* Enable the Objective-C front end and accordingly also the run-time.Gerald Pfeifer2011-12-121-2/+3
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=287249
* Update to the 20111209 snapshot of GCC 4.6.3.Gerald Pfeifer2011-12-112-3/+3
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=287172
* Update to the 20111202 snapshot of GCC 4.6.3.Gerald Pfeifer2011-12-042-3/+3
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=286866
* Update to the 20111125 snapshot of GCC 4.6.3. This now builds onGerald Pfeifer2011-11-262-3/+3
| | | | | | | | | FreeBSD 10 without problems and any additional tweaks. Feature safe: yes Notes: svn path=/head/; revision=286463
* Update to the 20111118 snapshot of GCC 4.6.3.Gerald Pfeifer2011-11-192-3/+3
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=286095
* Update to the 20111111 snapshot of GCC 4.6.3.Gerald Pfeifer2011-11-122-3/+3
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=285670
* Update to the 20111104 snapshot of GCC 4.6.3.Gerald Pfeifer2011-11-052-4/+4
| | | | | | | | | On the way, extend the conflict wth GCC 4.6.1 to also cover GCC 4.6.2 since that is what the stable lang/gcc port is going to move to soon. Notes: svn path=/head/; revision=285074