diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2021-07-16 12:39:41 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2021-07-16 12:39:41 +0000 |
commit | 3716b292a8eaf88066f84b6758455fdf970b6d8a (patch) | |
tree | 6c5337fc2ecd7ba5efd102e8c594a4e87fa6b5a7 /Mk | |
parent | games/trigger-rally: fix build on riscv64 (diff) |
Mk/bsd.gcc.mk: User newer versions in examples
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.gcc.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mk/bsd.gcc.mk b/Mk/bsd.gcc.mk index 50dac43583fd..63c060f6322d 100644 --- a/Mk/bsd.gcc.mk +++ b/Mk/bsd.gcc.mk @@ -28,11 +28,11 @@ # Examples: # USE_GCC= yes # port requires a current version of GCC # # as defined in bsd.default-versions.mk. -# USE_GCC= 9+ # port requires GCC 9 or later. -# USE_GCC= 8 # port requires GCC 8. +# USE_GCC= 11+ # port requires GCC 11 or later. +# USE_GCC= 9 # port requires GCC 9. # USE_GCC= yes:build # port requires a current version of GCC at # # build time only. -# USE_GCC= 9:build # port requires GCC 9 at build time only. +# USE_GCC= 10:build # port requires GCC 10 at build time only. # USE_GCC= 11+:build # port requires GCC 11 or later at build # # time only. # |