KDE Gear 22.12 is Here!
Thursday, 8 December 2022
KDE Gear ⚙️ is back with exciting new features, performance boosts, and
bugfixes for all your favorite KDE apps!
In this release: Kate extends a warm welcome, Dolphin offers you more
choices, and a lot of apps serve up hamburgers galore!
Announcement: https://kde.org/announcements/gear/22.12.0/
When building llvm12 through llvm15 with clang 15 as host compiler, and
when compiler-rt is enabled, there will be errors due to float16
support, similar to:
In file included from /wrkdirs/usr/ports/devel/llvm15/work/llvm-project-15.0.6.src/compiler-rt/lib/builtins/extendhfsf2.c:11:
In file included from /wrkdirs/usr/ports/devel/llvm15/work/llvm-project-15.0.6.src/compiler-rt/lib/builtins/fp_extend_impl.inc:38:
/wrkdirs/usr/ports/devel/llvm15/work/llvm-project-15.0.6.src/compiler-rt/lib/builtins/fp_extend.h:44:9: error: _Float16 is not supported on this target
typedef _Float16 src_t;
^
This is because compiler-rt's CMake infrastructure detects float16
support at configure time, while targeting 'pure' x86_64, but then
builds parts of its tree also targeting i386.
To work around this, modify compiler-rt's top-level CMakeLists.txt to
move setting the -DCOMPILER_RT_HAS_FLOAT16 compilation flag to the
arch-specific for loop, so it only gets enabled for x86_64, and not for
i386.
For llvm15, also add another modification that removes the bfloat16
source files from the i386_SOURCES list, so these are not built for
i386.
PR: 268196
Submitted by: dim
In file included from src/string.c:3:
include/str.h:10:23: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes]
struct str *str_create();
^
void
src/string.c:15:23: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes]
struct str *str_create() {
^
void
PR: 268277
Reported by: antoine (via bug 265425 exp-run)
This was marked for deletion due to EOL of php 7.4 However there was an
updated development version which supports latest php releases. As the
maintainer did not submit any updates hence the port is updated without
actual mantainer's approval but with portmgr blanket approvals.
This was done in consideration to the fact that it's easier to update
rather than rip and resurrect.
Approved by: portmgr (blanket infrastructure)
Relnotes: https://pecl.php.net/package-changelog.php?package=eio
Sponsored by: Bounce Experts
In file included from /wrkdirs/usr/ports/cad/gmsh/work/gmsh-4.11.0-source/src/common/Options.cpp:38:
In file included from /wrkdirs/usr/ports/cad/gmsh/work/gmsh-4.11.0-source/src/post/adaptiveData.h:20:
In file included from /wrkdirs/usr/ports/cad/gmsh/work/gmsh-4.11.0-source/src/numeric/fullMatrix.h:21:
In file included from /wrkdirs/usr/ports/cad/gmsh/work/gmsh-4.11.0-source/contrib/eigen/Eigen/Dense:1:
In file included from /wrkdirs/usr/ports/cad/gmsh/work/gmsh-4.11.0-source/contrib/eigen/Eigen/Core:210:
/wrkdirs/usr/ports/cad/gmsh/work/gmsh-4.11.0-source/contrib/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h:1345:32: error: use of undeclared identifier 'vec_sqrt'; did you mean 'vec_rsqrt'?
BF16_TO_F32_UNARY_OP_WRAPPER(vec_sqrt, a);
^~~~~~~~
vec_rsqrt
/wrkdirs/usr/ports/cad/gmsh/work/gmsh-4.11.0-source/contrib/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h:1302:22: note: expanded from macro 'BF16_TO_F32_UNARY_OP_WRAPPER'
Packet4f op_even = OP(a_even);\
^
/usr/lib/clang/13.0.0/include/altivec.h:8472:34: note: 'vec_rsqrt' declared here
static vector float __ATTRS_o_ai vec_rsqrt(vector float __a) {
^
This version fixes a crash that can happen on a busy server with high
uptime. It also runs as an unprivileged user on FreeBSD 14.
Sponsored by: Axcient
Reviewed by: otis
Approved by: otis (ports)
Differential Revision: https://reviews.freebsd.org/D37655