diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2023-01-03 09:19:27 +0000 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2023-01-03 09:22:21 +0000 |
commit | 9742a6346057545688a02ae3eb537ac39c6b296c (patch) | |
tree | d37bee1e948ff71c07f4f56d0500df652aa78c59 | |
parent | 135fea407e5030a61327f50178057c596bf11ca9 (diff) | |
download | ports-9742a6346057545688a02ae3eb537ac39c6b296c.tar.gz ports-9742a6346057545688a02ae3eb537ac39c6b296c.zip |
Mk/bsd.default-versions.mk: bump LLVM_DEFAULT to 15
- graphics/mesa* switched to LLVM version 15 some time ago
- desktop systems suffer from requiring many different LLVM versions
- having the default at something recent combined with the version
matching of llvm.mk (prefering $LLVM_DEFAULT) this should lessen
the number of LLVM installations on normal systems again alot.
- while here, remove outdated comment. x11@ switched to setting the
LLVM version explicitely as the default was way out of date.
PR: 263456
Exp-run by: antoine
-rw-r--r-- | Mk/bsd.default-versions.mk | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Mk/bsd.default-versions.mk b/Mk/bsd.default-versions.mk index 8d8cdf71b807..91aafa427da3 100644 --- a/Mk/bsd.default-versions.mk +++ b/Mk/bsd.default-versions.mk @@ -77,13 +77,11 @@ LIBRSVG2_DEFAULT?= legacy . endif # Possible values: c7 LINUX_DEFAULT?= c7 -# Possible values: 70, 80, 90, 10, 11, 12, 13, 14, -devel (to be used when non-base compiler is required) -# Please give notice to the Graphics Team (x11@FreeBSD.org) in advance before -# bumping the LLVM version. +# Possible values: 70, 80, 90, 10, 11, 12, 13, 14, 15, -devel (to be used when non-base compiler is required) . if ${ARCH} == powerpc LLVM_DEFAULT?= 10 . else -LLVM_DEFAULT?= 90 +LLVM_DEFAULT?= 15 . endif # Possible values: 5.1, 5.2, 5.3, 5.4 LUA_DEFAULT?= 5.4 |