notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: lang/gcc10-devel/distinfo

Number of commits found: 128 (showing only 28 on this page)

«  1 | 2 

Tuesday, 12 Nov 2019
13:29 gerald search for other commits by this committer
Update to the 20191110 snapshot of GCC 10.0.0.
Original commitRevision:517332 
Tuesday, 5 Nov 2019
23:25 gerald search for other commits by this committer
Update to the 20191103 snapshot of GCC 10.0.0.
Original commitRevision:516851 
Wednesday, 30 Oct 2019
07:13 gerald search for other commits by this committer
Update to the 20191027 snapshot of GCC 10.0.0.
Original commitRevision:516046 
Friday, 25 Oct 2019
05:38 gerald search for other commits by this committer
Update to the 20191020 snapshot of GCC 10.0.0.
Original commitRevision:515578 
Tuesday, 15 Oct 2019
16:43 gerald search for other commits by this committer
Update to the 20191013 snapshot of GCC 10.0.0.
Original commitRevision:514552 
Friday, 11 Oct 2019
04:12 gerald search for other commits by this committer
Update to the 20191006 snapshot of GCC 10.0.0.
Original commitRevision:514260 
Wednesday, 2 Oct 2019
00:04 gerald search for other commits by this committer
Update to the 20190929 snapshot of GCC 10.0.0.
Original commitRevision:513539 
Wednesday, 25 Sep 2019
14:22 gerald search for other commits by this committer
Update to the 20190922 snapshot of GCC 10.0.0.

files/patch-pr240387 is part of that snapshot, so remove it on our end.

PR:	240387
Original commitRevision:512787 
Wednesday, 18 Sep 2019
03:54 gerald search for other commits by this committer
Update to the 20190915 snapshot of GCC 10.0.0.
Original commitRevision:512252 
Tuesday, 10 Sep 2019
11:09 gerald search for other commits by this committer
Update to the 20190908 snapshot of GCC 10.0.0.

This may (or may not) address a build regression (with clang) that
dim@ reported. [1]

PR:		240387 [1]
Original commitRevision:511753 
Friday, 6 Sep 2019
11:18 gerald search for other commits by this committer
Update to the 20190901 snapshot of GCC 10.0.0.
Original commitRevision:511304 
Saturday, 31 Aug 2019
04:37 gerald search for other commits by this committer
Update to the 201900825 snapshot of GCC 10.0.0.
Original commitRevision:510314 
Friday, 23 Aug 2019
16:30 gerald search for other commits by this committer
Update to the 201900818 snapshot of GCC 10.0.0.
Original commitRevision:509653 
Wednesday, 14 Aug 2019
07:08 gerald search for other commits by this committer
Update to the 201900811 snapshot of GCC 10.0.0.

This no longer has _GNU_SOURCE defined on powerpc64 (which was a
regression from the GCC 8 series). [1]

PR:		239648 [1]
Original commitRevision:508894 
Wednesday, 7 Aug 2019
17:01 gerald search for other commits by this committer
Update to the 201900804 snapshot of GCC 10.0.0.
Original commitRevision:508339 
Saturday, 3 Aug 2019
13:00 gerald search for other commits by this committer
Update to the 201900728 snapshot of GCC 10.0.0.
Original commitRevision:507971 
Wednesday, 24 Jul 2019
17:35 gerald search for other commits by this committer
Update to the 201900721 snapshot of GCC 10.0.0.
Original commitRevision:507288 
Saturday, 20 Jul 2019
06:19 gerald search for other commits by this committer
Update to the 201900714 snapshot of GCC 10.0.0.
Original commitRevision:506976 
Sunday, 14 Jul 2019
15:50 gerald search for other commits by this committer
Update to the 201900707 snapshot of GCC 10.0.0.
Original commitRevision:506623 
Thursday, 4 Jul 2019
21:30 gerald search for other commits by this committer
Update to the 20190630 snapshot of GCC 10.0.0.
Original commitRevision:505868 
Friday, 28 Jun 2019
08:01 gerald search for other commits by this committer
Update to the 20190623 snapshot of GCC 10.0.0.
Original commitRevision:505269 
Monday, 17 Jun 2019
16:14 gerald search for other commits by this committer
Update to the 20190616 snapshot of GCC 10.0.0.
Original commitRevision:504429 
Tuesday, 11 Jun 2019
05:53 gerald search for other commits by this committer
Update to the 20190609 snapshot of GCC 10.0.0.
Original commitRevision:503937 
Thursday, 6 Jun 2019
21:17 gerald search for other commits by this committer
Update to the 20190602 snapshot of GCC 10.0.0.
Original commitRevision:503603 
Wednesday, 29 May 2019
23:03 gerald search for other commits by this committer
Update to the 20190526 snapshot of GCC 10.0.0.
Original commitRevision:503018 
Thursday, 23 May 2019
18:23 gerald search for other commits by this committer
Update to the 20190519 snapshot of GCC 10.0.0.
Original commitRevision:502346 
Wednesday, 15 May 2019
10:02 gerald search for other commits by this committer
Update to the 20190512 snapshot of GCC 10.0.0.  This brings a new binary
bin/lto-dump which may be helpful if you employ link-time optimization (LTO).

Forward port r499061 | gerald | 2019-04-15 from lang/gcc8 and gcc8-devel [1]:

  GCC has two runtime libraries:  The static library libgcc.a (-lgcc) and
  the shared library libgcc_s.so (-lgcc_s).  Both implement many of the
  same functions but they also each have their unique functions.  When
  GCC links programs and libraries there are three possibilities:

  1. gcc -static-libgcc or gcc -static: -lgcc
     => Just use libgcc.a.

  2. gcc -shared-libgcc: -lgcc_s -lgcc
     => Link with libgcc_s first, so libgcc.a is only used for its unique
        functions.

  3. gcc: -lgcc -Wl,--as-needed -lgcc_s -Wl,--no-as-needed
     => Link with libgcc.a first so libgcc_s is only used for its unique
        functions (_Unwind_* functions).

  Approach 3 is the default for gcc and it's also what clang and clang++ use;
  approach 2 is the default for gfortran, g++ and probably other front ends.

  This patch makes 3 the default for gfortran.  It significantly reduces
  the use of libgcc_s.  The _Unwind_* functions are also available in the
  old base system libgcc_s which means this reduces the need for
  -rpath /usr/local/lib/gccN in ports that depend on libraries built with
  gfortran.  Consider a dependency tree like this:

    prog -> libA -> libgcc_s (old base system libgcc_s is fine)
         -> libB -> libgcc_s (libB built with gfortran, needs new libgcc_s)

  Here prog needs to be linked with -rpath /usr/local/lib/gccN even if it's
  a normal C program compiled with clang.  Without -rpath it will fail to
  start because it loads old libgcc_s first as a dependency of libA and then
  it fails to load libB.  With this patch libB works with old base system
  libgcc_s or may not need libgcc_s at all, so prog does not need to be
  linked with -rpath.

PR:		208120 [1]
Submitted by:	tijl [1]
Original commitRevision:501705 
Monday, 6 May 2019
21:15 gerald search for other commits by this committer
Welcome GCC 10, even if only in form of its first development snapshot
at the beginning of what likely is going to be another one year cycle.

files/patch-amd64-gcc-multilib-support has made it upstream after the
creation of the GCC 9 release branch, so we can drop it.
Original commitRevision:500934 

Number of commits found: 128 (showing only 28 on this page)

«  1 | 2