openSUSE Packaging
Threads by month
- ----- 2025 -----
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
January 2025
- 10 participants
- 4 discussions
Hi,
I'd like to provide a new package python-sphinxygen into Factory. This
is documentation generator needed by LV2 stack
https://gitlab.com/drobilla/sphinxygen
It's already in the multimedia:libs
https://build.opensuse.org/package/show/multimedia%3Alibs/python-sphinxygen
and I'm not sure where I should submit it to - directly to the Factory
or to the devel:languages:python then to the Factory?
TIA.
3
3
It's the time of the year when transitioning to a new build compiler
version (GCC 15) begins and help from packagers is appreciated for
fixing fallout in their packages.
I have re-built all of openSUSE:Factory on x86_64 using a recent snapshot
of GCC 15 in the home:rguenther:plgrnd project, which from now on tracks
and rebuilds on source changes. Of the around 17000 packages currently
937 fail to build.
https://gcc.gnu.org/gcc-15/porting_to.html documents the three most
prevalent causes, two of them are related to the C compiler switching
the default language standard from -std=gnu17 to -std=gnu23 which
makes void foo() a prototype (semantically equal to void foo(void)) and
introduces 'bool', 'true' and 'false' as keywords. That leads to errors
like
389-ds:[ 68s] ldap/servers/slapd/compare.c:184:19: error: too many arguments to function ‘be->be_database->plg_un.plg_un_db.plg_un_db_compare’; expected 0, have 1
6tunnel:[ 11s] 6tunnel.c:843:24: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
FlightGear:[ 23s] /home/abuild/rpmbuild/BUILD/flightgear-2020.3.19/3rdparty/iaxclient/lib/audio_openal.c:266:5: error: conflicting types for ‘openal_initialize’; have ‘int(struct iaxc_audio_driver *, int)’
or
airspy:[ 9s] /home/abuild/rpmbuild/BUILD/airspyone_host-1.0.10/libairspy/src/airspy.c:38:13: error: ‘bool’ cannot be defined via ‘typedef’
The easiest fix on the packaging side is to revert back to -std=gnu17 for
affected packages.
The other change is the usual shuffling of includes from C++ standard library
headers which now less often include stdint.h or cstdint. This manifests
itself as
SHERPA-MC:[ 584s] /usr/include/Rivet/Tools/RivetSTL.hh:193:10: error: 'uintptr_t' does not name a type
SQLiteCpp:[ 9s] ../include/SQLiteCpp/Column.h:187:14: error: expected type-specifier before ‘uint32_t’
The fix for this requires including the now missing header in the appropriate
places.
You can verify a fixed package by building it with
--alternative-project=home:rguenther:plgrnd and the openSUSE_Factory
repository with the x86_64 arch.
There is no GCC 15 package in openSUSE:Factory itself yet but it's to be
expected soonish, for now only replacing the system runtime libraries.
Find the complete list of failing packages below, sorted as ls does, with
the last error from the build log shown (a package might suffer multiple of
the above issues).
--
Richard Biener <rguenther(a)suse.de>
SUSE Software Solutions Germany GmbH,
Frankenstrasse 146, 90461 Nuernberg, Germany;
GF: Ivo Totev, Andrew McDonald, Werner Knoblich; (HRB 36809, AG Nuernberg)
389-ds:[ 68s] ldap/servers/slapd/compare.c:184:19: error: too many arguments to function ‘be->be_database->plg_un.plg_un_db.plg_un_db_compare’; expected 0, have 1
6tunnel:[ 11s] 6tunnel.c:843:24: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
FlightGear:[ 23s] /home/abuild/rpmbuild/BUILD/flightgear-2020.3.19/3rdparty/iaxclient/lib/audio_openal.c:266:5: error: conflicting types for ‘openal_initialize’; have ‘int(struct iaxc_audio_driver *, int)’
FreeCAD:[ 49s] /home/abuild/rpmbuild/BUILD/FreeCAD-1.0.0/src/3rdParty/OndselSolver/OndselSolver/FullMatrix.h:576:31: error: ‘SIZE_MAX’ was not declared in this scope [-Wtemplate-body]
FreeCAD:FreeCAD-test:LHAPDF:[ 26s] emitterutils.cpp:247:55: error: request for member 'second' in 'surrogatePair', which is of non-class type 'int'
MozillaThunderbird:[ 299s] 4:16.95 cargo:warning=src/vector_type.h:147:66: error: cannot convert a value of type ‘int’ to vector type ‘__vector(4) int’ which has different size
NumCpp:[ 15s] /usr/include/c++/15/ciso646:46:4: error: #warning "<ciso646> is deprecated in C++17, use <version> to detect implementation-specific macros" [-Werror=cpp]
OpenColorIO:ocio_tools:[ 121s] /usr/include/OSL/dual.h:207:18: error: ‘const class OSL_v1_13::DualStorage<T, 3>’ has no member named ‘dz’; did you mean ‘m_dz’? [-Wtemplate-body]
OpenShadingLanguage:[ 36s] /home/abuild/rpmbuild/BUILD/OpenShadingLanguage-1.13.11.0/src/include/OSL/dual.h:207:18: error: ‘const class OSL_v1_13::DualStorage<T, 3>’ has no member named ‘dz’; did you mean ‘m_dz’? [-Wtemplate-body]
R-base:[ 58s] sys-std.c:1189:1: error: expected identifier or ‘(’ before ‘void’
Rivet:[ 25s] emitterutils.cpp:247:55: error: request for member 'second' in 'surrogatePair', which is of non-class type 'int'
SHERPA-MC:[ 584s] /usr/include/Rivet/Tools/RivetSTL.hh:193:10: error: 'uintptr_t' does not name a type
SQLiteCpp:[ 9s] ../include/SQLiteCpp/Column.h:187:14: error: expected type-specifier before ‘uint32_t’
Srain:[ 14s] ../src/inc/srain.h:25:18: error: two or more data types in declaration specifiers
TeXmacs:[ 33s] Kernel/Containers/hashtree.cpp:97:44: error: ‘class hashtree<K, V>’ has no member named ‘children’ [-Wtemplate-body]
TreeMaker:[ 22s] ../Source/tmModel/wnlib/mem/wnmem.c:323:23: error: too many arguments to function ‘wn_system_alloc’; expected 0, have 1
VFlib3:[ 13s] vflx11.c:636:6: error: conflicting types for ‘Win_ChangeSize’; have ‘void(int, int)’
ViTables:[ 17s] tests/test_utils.py::TestUtils::test_getView Fatal Python error: Segmentation fault
YODA:[ 20s] emitterutils.cpp:247:55: error: request for member 'second' in 'surrogatePair', which is of non-class type 'int'
a2ps:[ 164s] parseppd.y:157:1: error: conflicting types for 'yyprint'; have 'void(FILE *, int, YYSTYPE)'
aalib:[ 17s] aacurkbd.c:96:13: error: too many arguments to function 'Gpm_Wgetch'; expected 0, have 1
abcm2ps:[ 10s] format.c:1238:37: error: declaration in the controlling expression must have an initializer
abi-compliance-checker:abook:[ 18s] mbswidth.c:303:25: error: too many arguments to function ‘wcwidth’; expected 0, have 1
acct:[ 25s] sa.c:1701:43: error: passing argument 4 of ‘qsort’ from incompatible pointer type [-Wincompatible-pointer-types]
adios2:[ 57s] /home/abuild/rpmbuild/BUILD/ADIOS2-2.10.2/thirdparty/yaml-cpp/yaml-cpp/src/emitterutils.cpp:247:55: error: request for member ‘second’ in ‘surrogatePair’, which is of non-class type ‘int’
adios2:mpich:[ 60s] /home/abuild/rpmbuild/BUILD/ADIOS2-2.10.2/thirdparty/yaml-cpp/yaml-cpp/src/emitterutils.cpp:247:55: error: request for member ‘second’ in ‘surrogatePair’, which is of non-class type ‘int’
adios2:mvapich2:[ 65s] /home/abuild/rpmbuild/BUILD/ADIOS2-2.10.2/thirdparty/yaml-cpp/yaml-cpp/src/emitterutils.cpp:247:55: error: request for member ‘second’ in ‘surrogatePair’, which is of non-class type ‘int’
adios2:openmpi4:[ 63s] /home/abuild/rpmbuild/BUILD/ADIOS2-2.10.2/thirdparty/yaml-cpp/yaml-cpp/src/emitterutils.cpp:247:55: error: request for member ‘second’ in ‘surrogatePair’, which is of non-class type ‘int’
adios:gnu-mpich-hpc:[ 12s] Lmod has detected the following error: The following module(s) are unknown:
adios:gnu-mvapich2-hpc:[ 12s] Lmod has detected the following error: The following module(s) are unknown:
adios:gnu-openmpi4-hpc:[ 14s] Lmod has detected the following error: The following module(s) are unknown:
adios:openmpi4:[ 70s] bpappend.c:54:13: error: ‘bool’ cannot be defined via ‘typedef’
adjtimex:[ 9s] adjtimex.c:1542:6: error: conflicting types for ‘failntpdate’; have ‘void(char *)’
adms:[ 15s] admsXml.c:645:8: error: too many arguments to function ‘verilogaparse’; expected 0, have 1
adriconf:[ 18s] /home/abuild/rpmbuild/BUILD/adriconf-v2.7.2/adriconf/ValueObject/GPUInfo.cpp:61:42: error: ‘const class GPUInfo’ has no member named ‘getVendorId’; did you mean ‘setVendorId’?
afl:[ 15s] src/afl-showmap.c:635:21: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
airspy:[ 9s] /home/abuild/rpmbuild/BUILD/airspyone_host-1.0.10/libairspy/src/airspy.c:38:13: error: ‘bool’ cannot be defined via ‘typedef’
airspyhf:[ 10s] /home/abuild/rpmbuild/BUILD/airspyhf-1.6.8/tools/src/airspyhf_rx.c:41:13: error: ‘bool’ cannot be defined via ‘typedef’
alevt:[ 9s] ui.c:159:57: error: passing argument 5 of ‘w->vbi->cache->op->foreach_pg’ from incompatible pointer type [-Wincompatible-pointer-types]
alpine:[ 39s] collate.c:79:13: error: too many arguments to function ‘pcollator’; expected 0, have 2
alsa-tools:[ 53s] new_process.c:83:25: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
alttab:[ 12s] alttab.c:536:25: error: too many arguments to function ‘getOffendingModifiersMask’; expected 0, have 1
amanda:[ 156s] ndma_comm_dispatch.c:474:24: error: too many arguments to function ‘rrxl->reply_xto9’; expected 0, have 2
amavisd-milter:[ 11s] configure: error: required milter library and header not found
amazon-ecs-init:[ 16s] nvml_dl.c:45:14: error: too many arguments to function ‘sym’; expected 0, have 3
amp:[ 41s] cargo:warning=oniguruma/src/st.c:500:23: error: too many arguments to function 'func'; expected 0, have 3
apache-commons-daemon:[ 11s] jsvc.h:34:3: error: expected ‘;’, identifier or ‘(’ before ‘bool’
apitrace:[ 53s] /home/abuild/rpmbuild/BUILD/apitrace-10.0/retrace/metric_writer.cpp:50:78: error: expected ‘>’ before ‘*’ token
apptainer:[ 78s] ../cmd/starter/c/include/starter.h:79:3: error: expected ';', identifier or '(' before 'bool'
arc:[ 7s] arc.c:437:25: error: too many arguments to function ‘arcdie’; expected 0, have 1
argus:[ 23s] ArgusOutput.c:1844:10: error: too many arguments to function ‘request.sink’; expected 0, have 1
argus-client:[ 19s] ./argus_output.c:1663:10: error: too many arguments to function ‘request.sink’; expected 0, have 1
armnn:[ 24s] /home/abuild/rpmbuild/BUILD/armnn-24.11/profiling/common/include/Packet.hpp:79:46: error: ‘m_Length’ was not declared in this scope
armnn:opencl:[ 70s] /home/abuild/rpmbuild/BUILD/armnn-24.11/profiling/common/include/Packet.hpp:79:46: error: ‘m_Length’ was not declared in this scope
asclock:[ 7s] config.c:156:11: error: too many arguments to function ‘read_semicolon’; expected 0, have 1
aspell:[ 20s] modules/speller/default/vector_hash-t.hpp:186:59: error: 'class aspeller::VectorHashTable<Parms>' has no member named '_size'; did you mean 'size'? [-Wtemplate-body]
asteroid:[ 12s] /home/abuild/rpmbuild/BUILD/asteroid-1.2.1+git-64869df/src/main.c:262:15: error: passing argument 1 of ‘g_idle_add’ from incompatible pointer type [-Wincompatible-pointer-types]
asymptote:[ 65s] LspCpp/include/LibLsp/JsonRpc/serializer.h:162:31: error: ‘uint8_t’ has not been declared
atop:[ 10s] showprocs.c:2999:34: error: initialization of ‘char * (*)(void)’ from incompatible pointer type ‘char * (*)(struct cgchainer *, struct tstat *, int, int, count_t, int, int *)’ {aka ‘char * (*)(struct cgchainer *, struct tstat *, int, int, long long int, int, int *)’} [-Wincompatible-pointer-types]
audacity:[ 23s] /home/abuild/rpmbuild/BUILD/audacity-Audacity-3.7.1/lib-src/libnyquist/nyquist/cmt/midifile.c:555:18: error: too many arguments to function ‘Mf_error’; expected 0, have 1
audio-recorder:[ 27s] settings.c:788:24: error: too many arguments to function ‘page_to_edit_pipelines’; expected 0, have 1
autotrace:[ 16s] types.h:26:16: error: cannot use keyword 'false' as enumeration constant
awf-gtk2:[ 22s] awf.c:472:59: error: passing argument 2 of ‘g_timeout_add_seconds’ from incompatible pointer type [-Wincompatible-pointer-types]
awf-gtk3:[ 22s] awf.c:472:59: error: passing argument 2 of ‘g_timeout_add_seconds’ from incompatible pointer type [-Wincompatible-pointer-types]
awf-gtk4:[ 20s] awf.c:472:59: error: passing argument 2 of ‘g_timeout_add_seconds’ from incompatible pointer type [-Wincompatible-pointer-types]
babeltrace2:[ 53s] error: command '/usr/bin/gcc' failed with exit code 1
balsa:[ 33s] sendmsg-window.c:317:1: error: conflicting types for ‘balsa_attach_info_new’; have ‘BalsaAttachInfo *(BalsaSendmsg *)’ {aka ‘struct _BalsaAttachInfo *(struct _BalsaSendmsg *)’}
barcode:barrel:[ 16s] /usr/include/storage/Storage.h:310:66: error: 'uint64_t' has not been declared
bash:[ 36s] mkbuiltins.c:1625:7: error: too many arguments to function 'write_documentation'; expected 0, have 4
bat:[ 49s] cargo:warning=oniguruma/src/st.c:500:23: error: too many arguments to function 'func'; expected 0, have 3
bat-extras:bazel6:[ 228s] ./src/main/cpp/blaze.h:31:45: error: 'uint64_t' has not been declared
bcal:[ 8s] src/bcal.c:47:1: error: useless type name in empty declaration [-Werror]
benzene:[ 7s] benzene.c:2857:1: error: conflicting types for ‘canon’; have ‘int(int *, EDGE * (*)[168], int *, int *)’ {aka ‘int(int *, struct e * (*)[168], int *, int *)’}
bibtool:[ 10s] main.c:571:21: error: passing argument 2 of ‘db_sort’ from incompatible pointer type [-Wincompatible-pointer-types]
bibview:[ 8s] FileNom.h:76:8: error: prototype declaration
bing:[ 7s] bing.c:1524:30: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
binutils:[ 199s] ../../../gprofng/libcollector/dispatcher.c:1281:5: error: conflicting types for ‘setitimer’; have ‘int(void)’
bitcoin:[ 1255s] unknown location(0): fatal error: in "addrman_tests/addrman_ports": std::bad_alloc: std::bad_alloc
bitlbee-steam:[ 22s] steam-api.c:170:71: error: expected expression before 'bool'
blender:[ 287s] /usr/include/nanovdb/util/GridBuilder.h:1161:72: error: ‘const struct nanovdb::build::LeafNode<BuildT>’ has no member named ‘isActive’ [-Wtemplate-body]
blis:[ 14s] gcc: error: unrecognized command-line option ‘-mavx512pf’; did you mean ‘-mavx512f’?
blobby:[ 14s] /home/abuild/rpmbuild/BUILD/blobbyvolley2-1.0/src/raknet/LinkedList.h:612:57: error: ‘class BasicDataStructures::CircularLinkedList<CircularLinkedListType>’ has no member named ‘last’ [-Wtemplate-body]
bluefish:[ 20s] rpopup.c:376:33: error: too many arguments to function ‘tagdia[i].func’; expected 0, have 2
bluez:[ 17s] src/shared/shell.c:1424:9: error: too many arguments to function 'rl_message'; expected 0, have 1
bomns:[ 12s] /home/abuild/rpmbuild/BUILD/Bomns-for-Linux/src/launcher/main.c:193:6: error: conflicting types for ‘parse_bomns_rc’; have ‘void(const char *)’
boost:gnu-hpc:[ 264s] error: No best alternative for /home/abuild/rpmbuild/BUILD/boost_1_86_0/libs/predef/install with <abi>sysv <address-model>64 <architecture>x86 <asynch-exceptions>off <binary-format>elf <boost.beast.allow-deprecated>on <boost.beast.separate-compilation>on <boost.cobalt.executor>any_io_executor <boost.cobalt.pmr>std <boost.process.fs>boost <boost.stacktrace.from_exception>off <context-impl>fcontext <coverage>off <debug-symbols>off <exception-handling>on <extern-c-nothrow>off <inlining>full <known-warnings>hide <link>shared <optimization>speed <os>LINUX <pch>on <preserve-test-targets>on <profiling>off <python-debugging>off <rtti>on <runtime-debugging>off <runtime-link>shared <stdlib>native <strip>off <target-os>linux <testing.execute>on <threadapi>pthread <threading>multi <toolset-gcc:version>15 <toolset>gcc <variant>release <vectorize>off <visibility>hidden <warnings-as-errors>off <warnings>on <x-deduced-platform>x86_64
[ 595s] error: No best alternative for /home/abuild/rpmbuild/BUILD/boost_1_86_0/libs/predef/install with <abi>sysv <address-model>64 <architecture>x86 <asynch-exceptions>off <binary-format>elf <boost.beast.allow-deprecated>on <boost.beast.separate-compilation>on <boost.cobalt.executor>any_io_executor <boost.cobalt.pmr>std <boost.process.fs>boost <boost.stacktrace.from_exception>off <context-impl>fcontext <coverage>off <debug-symbols>off <exception-handling>on <extern-c-nothrow>off <inlining>full <known-warnings>hide <link>shared <optimization>speed <os>LINUX <pch>on <preserve-test-targets>on <profiling>off <python-debugging>off <rtti>on <runtime-debugging>off <runtime-link>shared <stdlib>native <strip>off <target-os>linux <testing.execute>on <threadapi>pthread <threading>multi <toolset-gcc:version>15 <toolset>gcc <variant>release <vectorize>off <visibility>hidden <warnings-as-errors>off <warnings>on <x-deduced-platform>x86_64
boost:gnu-mpich-hpc:boost:gnu-mvapich2-hpc:boost:gnu-openmpi4-hpc:bpftrace:[ 44s] /usr/bin/../lib64/gcc/x86_64-suse-linux/15/../../../../include/c++/15/bits/unique_ptr.h:1077:34: error: allocating an object of abstract class type 'bpftrace::DummyDisasm'
brltty:broot:[ 63s] cargo:warning=oniguruma/src/st.c:500:23: error: too many arguments to function ‘func’; expected 0, have 3
buckygen:[ 9s] buckygen.c:915:6: error: conflicting types for ‘old_splaynode’; have ‘void(SPLAYNODE *, int *)’ {aka ‘void(struct sp *, int *)’}
budgie-desktop:[ 29s] src/daemon/budgie-daemon.p/tabswitcher.c:1102:17: error: too few arguments to function ‘xfw_window_activate’; expected 4, have 3
buffer:[ 7s] buffer.c:144:5: error: prototype declaration
bulk_extractor:[ 34s] exif_entry.h:18:24: error: expected ‘)’ before ‘ifd_type_’
bvi:[ 10s] bvi.c:1019:30: error: too many arguments to function ‘do_ft’; expected 0, have 2
byaccj:[ 7s] lr0.c:204:34: error: too many arguments to function ‘new_state’; expected 0, have 1
cacti-spine:[ 19s] error.c:85:49: error: too many arguments to function ‘backtrace_symbols’; expected 0, have 2
calibre:[ 33s] /home/abuild/rpmbuild/BUILD/calibre-7.24.0/src/calibre/ebooks/djvu/bzzdecoder.c:24:17: error: two or more data types in declaration specifiers
cardpeek:[ 17s] lua_nodes.c:427:3: error: too many arguments to function ‘ui_update’; expected 0, have 1
casacore:[ 55s] /home/abuild/rpmbuild/BUILD/casacore-3.6.1/mirlib/uvio.c:5057:14: error: conflicting types for ‘uvbasant_c’; have ‘void(int, int *, int *)’
casacore:openmpi4:[ 52s] /home/abuild/rpmbuild/BUILD/casacore-3.6.1/mirlib/uvio.c:5057:14: error: conflicting types for ‘uvbasant_c’; have ‘void(int, int *, int *)’
catimg:[ 10s] /home/abuild/rpmbuild/BUILD/catimg-2.7.0/src/catimg.c:170:24: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
cdrdao:[ 13s] syn.h:173:48: error: too many arguments to function ‘fpReach[q->ntype]’; expected 0, have 3
cellwriter:[ 14s] src/window.c:818:37: error: passing argument 2 of ‘gtk_timeout_add’ from incompatible pointer type [-Wincompatible-pointer-types]
ceph:[ 504s] /home/abuild/rpmbuild/BUILD/ceph-16.2.15-74-gc5dd01a91d8/src/rocksdb/include/rocksdb/compaction_filter.h:60:5: error: ‘uint32_t’ does not name a type
ceph:ceph-test:[ 493s] /home/abuild/rpmbuild/BUILD/ceph-16.2.15-74-gc5dd01a91d8/src/rocksdb/include/rocksdb/compaction_filter.h:60:5: error: ‘uint32_t’ does not name a type
cfitsio:[ 12s] /home/abuild/rpmbuild/BUILD/cfitsio-4.5.0/putcol.c:2090:21: error: lvalue required as left operand of assignment
cflow:[ 21s] output.c:383:38: error: passing argument 2 of ‘collect_symbols’ from incompatible pointer type [-Wincompatible-pointer-types]
chasen:[ 14s] connect.c:218:41: error: passing argument 5 of 'bsearch' from incompatible pointer type [-Wincompatible-pointer-types]
chezscheme:[ 9s] ./zuo/zuo.c:5585:17: error: assignment to ‘__sighandler_t’ {aka ‘void (*)(int)’} from incompatible pointer type ‘void (*)(void)’ [-Wincompatible-pointer-types]
chocolate-doom:[ 24s] ../../src/doomtype.h:113:5: error: cannot use keyword ‘false’ as enumeration constant
ckermit:[ 7s] ckuusr.c:8275:22: error: too many arguments to function ‘dosexp’; expected 0, have 1
clisp:cogl:[ 62s] cogl-path.c:1367:20: error: passing argument 3 of 'gluTessCallback' from incompatible pointer type [-Wincompatible-pointer-types]
commandergenius:conky:[ 55s] /home/abuild/rpmbuild/BUILD/conky-1.21.7/src/colours.h:96:62: error: no matching function for call to ‘Colour::Colour(<brace-enclosed initializer list>)’
connman:[ 18s] client/input.c:276:17: error: too many arguments to function ‘rl_message’; expected 0, have 1
containerized-data-importer:[ 67s] _cgo_export.c:169:5: error: conflicting types for ‘context_callback’; have ‘int(long int *, char *)’
coreboot-utils:[ 12s] ../cbfstool/common.c:195:43: error: initializer-string for array of ‘char’ is too long [-Werror=unterminated-string-initialization]
cosmic-edit:[ 188s] error: Recipe `build-debug` failed on line 42 with exit code 101
cosmic-ext-applet-ollama:[ 98s] error: Recipe `build-debug` failed on line 25 with exit code 101
courier-imap:[ 81s] starttls.c:536:22: error: assignment to ‘__sighandler_t’ {aka ‘void (*)(int)’} from incompatible pointer type ‘void (*)(void)’ [-Wincompatible-pointer-types]
cpio:[ 45s] copyout.c:646:12: error: too many arguments to function ‘xstat’; expected 0, have 2
cpluff:[ 19s] /usr/include/c++/15/bits/stl_tree.h:2604:36: error: no match for call to '(const cpluff::less_str) (const char* const&, const char* const&)'
crash:[ 30s] signals.c:493:42: error: passing argument 2 of ‘rl_maybe_set_sighandler’ from incompatible pointer type [-Wincompatible-pointer-types]
crispy-doom:[ 31s] ../../src/doomtype.h:113:5: error: cannot use keyword ‘false’ as enumeration constant
criterion:[ 20s] ../include/criterion/alloc.h:175:16: error: ‘SIZE_MAX’ was not declared in this scope [-Wtemplate-body]
cronie:[ 13s] src/entry.c:488:18: error: too many arguments to function ‘error_func’; expected 0, have 1
csindex:[ 7s] qsort.c:61:10: error: assignment to ‘int (*)(char *, char *)’ from incompatible pointer type ‘int (*)(void)’ [-Wincompatible-pointer-types]
csound:[ 21s] /home/abuild/rpmbuild/BUILD/csound-6.18.1/./include/plugin.h:1005:20: error: ‘struct csnd::InPlug<N>’ has no member named ‘opaddr’; did you mean ‘opadr’? [-Wtemplate-body]
ctranslate2:[ 84s] /home/abuild/rpmbuild/BUILD/CTranslate2-4.5.0/cli/../third_party/cxxopts/include/cxxopts.hpp:902:50: error: ‘base’ was not declared in this scope [-Wtemplate-body]
ctris:[ 7s] screen.c:218:6: error: conflicting types for ‘put_key’; have ‘void(int)’
cups-filters:[ 31s] filter/texttopdf.c:236:5: error: too many arguments to function ‘write_pretty_header’; expected 0, have 1
cura-engine:[ 28s] /usr/include/Arcus/Types.h:36:13: error: ‘uint32_t’ does not name a type
cutmp3:[ 8s] main.c:2551:25: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
cvm-guest-attestation:[ 13s] /home/abuild/rpmbuild/BUILD/cvm-guest-attestation-20240316.b613bcd/client-library/src/Attestation/AttestationClient/lib/AttestationClientImpl.h:104:87: error: ‘attest::RsaHashAlg’ has not been declared; did you mean ‘attest::HashAlg’?
cwstudio:[ 15s] cwcurses.c:826:26: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
cxxopts:[ 9s] /home/abuild/rpmbuild/BUILD/cxxopts-3.2.1/include/cxxopts.hpp:995:39: error: ‘base’ was not declared in this scope [-Wtemplate-body]
cyrus-sasl:[ 20s] md5.c:500:3: error: too many arguments to function ‘MD5_memcpy’; expected 0, have 3
cyrus-sasl:cyrus-sasl-bdb:[ 22s] md5.c:500:3: error: too many arguments to function ‘MD5_memcpy’; expected 0, have 3
cyrus-sasl:cyrus-sasl-saslauthd:[ 25s] md5.c:500:3: error: too many arguments to function ‘MD5_memcpy’; expected 0, have 3
cyrus-sasl:cyrus-sasl-saslauthd-bdb:[ 23s] md5.c:500:3: error: too many arguments to function ‘MD5_memcpy’; expected 0, have 3
daemonize:[ 10s] getopt.c:53:16: error: too many arguments to function ‘write’; expected 0, have 3
dapl:[ 31s] mdep/linux/dapl_mdep_user.h:56:17: error: ‘bool’ cannot be defined via ‘typedef’
dapl:debug:[ 37s] mdep/linux/dapl_mdep_user.h:56:17: error: ‘bool’ cannot be defined via ‘typedef’
datamash:[ 38s] src/datamash.c:1406:7: error: too many arguments to function 'crosstab_print'; expected 0, have 1
dbus-1-glib:[ 11s] dbus-gvalue.c:552:37: error: expected expression before ‘bool’
dc3dd:[ 60s] ./config.h:8:22: error: too many arguments to function 'usage'; expected 0, have 1
deepin-api:[ 47s] gio.gen.c:240:13: error: conflicting types for ‘_GFileProgressCallback_c_wrapper_once’; have ‘void(void)’
deepin-daemon:[ 53s] gio.gen.c:240:13: error: conflicting types for ‘_GFileProgressCallback_c_wrapper_once’; have ‘void(void)’
deepin-file-manager:[ 32s] ./emblemicon/dfmextemblemiconlayout.h:52:5: error: ‘LocationType’ does not name a type
deepin-pw-check:[ 46s] gio.gen.c:240:13: error: conflicting types for ‘_GFileProgressCallback_c_wrapper_once’; have ‘void(void)’
deepin-reader:[ 33s] 3rdparty/pdfium/pdfium/fpdfsdk/fpdf_flatten.cpp:116:64: error: ‘kPrint’ is not a member of ‘pdfium::annotation_flags’
deepin-screen-recorder:[ 22s] ../3rdparty/libcam/libcam_v4l2core/v4l2_core.c:2673:5: error: conflicting types for ‘v4l2core_check_device_list_events’; have ‘int(v4l2_dev_t *)’ {aka ‘int(struct _v4l2_dev_t *)’}
deepin-start:[ 40s] gio.gen.c:240:13: error: conflicting types for ‘_GFileProgressCallback_c_wrapper_once’; have ‘void(void)’
dhcp:[ 159s] dhcpv6.c:6611:36: error: passing argument 7 of ‘iterate_over_ia_pd’ from incompatible pointer type [-Wincompatible-pointer-types]
dia:[ 93s] diagram_tree_menu.c:95:27: error: initialization of ‘void (*)(void)’ from incompatible pointer type ‘void (*)(void *, guint, GtkMenuItem *)’ {aka ‘void (*)(void *, unsigned int, struct _GtkMenuItem *)’} [-Wincompatible-pointer-types]
dicts:[ 8s] fix8bit.c:108:5: error: too many arguments to function ‘exit’; expected 0, have 1
difftastic:[ 25s] cargo:warning=c_src/mimalloc/src/init.c:328:39: error: initializer element is not constant
discover6:[ 57s] /home/abuild/rpmbuild/BUILD/discover-6.2.5/libdiscover/appstream/AppStreamUtils.cpp:212:1: internal compiler error: in gimplify_var_or_parm_decl, at gimplify.cc:3346
dlib:[ 120s] /home/abuild/rpmbuild/BUILD/dlib-19.24.6/dlib/external/pybind11/include/pybind11/pybind11.h:135:5: error: invalid conversion from ‘const segmenter_test (*)(...)’ to ‘const segmenter_test (*)()’ [-fpermissive]
dmd:[ 22s] src/dmd/backend/cod1.d:1180:17: error: ‘goto’ skips declaration of variable ‘dmd.backend.cod1.getlvalue.idxregs’
dmraid:[ 13s] activate/activate.c:893:34: error: passing argument 3 of ‘do_device’ from incompatible pointer type [-Wincompatible-pointer-types]
dolphin-emu:doom64ex-plus:[ 14s] src/engine/info.c:1356:45: error: initialization of ‘void (*)(void *)’ from incompatible pointer type ‘void (*)(void)’ [-Wincompatible-pointer-types]
dosbox:[ 563s] ALSA lib conf.c:5731:(snd_config_expand) Evaluate error: No such file or directory
dosemu:[ 17s] midid.h:11:28: error: expected ‘;’, identifier or ‘(’ before ‘bool’
dovecot23:draco:[ 53s] /home/abuild/rpmbuild/BUILD/draco-1.5.7/src/draco/compression/attributes/point_d_vector_test.cc:32:32: error: ‘class draco::PointDVector<unsigned int>’ has no member named ‘size’
drbd-utils:[ 31s] string_matching.cpp:46:37: error: ‘PATTERN_LIMIT’ was not declared in this scope
dt:[ 15s] ../dt.c:7451:1: error: conflicting types for ‘nofunc’; have ‘int(struct dinfo *)’
dtach:[ 10s] attach.c:202:26: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
dvbsnoop:[ 12s] sectables.c:409:4: error: too many arguments to function ‘t->func’; expected 0, have 2
dvgt:[ 18s] config.h:188:12: error: conflicting types for ‘setregid’; have ‘int(void)’
e-antic:[ 28s] configure: error: ../../libeantic/configure failed for libeantic
e2fsprogs:[ 26s] tdb.c:113:13: error: ‘bool’ cannot be defined via ‘typedef’
e2fsprogs:fuse2fs:[ 29s] tdb.c:113:13: error: ‘bool’ cannot be defined via ‘typedef’
easytag:[ 28s] /usr/include/id3/globals.h:87:13: error: ‘bool’ cannot be defined via ‘typedef’
eb:[ 22s] getopt.c:77:29: error: too many arguments to function ‘getenv’; expected 0, have 1
ecl:[ 32s] /home/abuild/rpmbuild/BUILD/ecl-24.5.10/src/c/dpp.c:112:13: error: ‘bool’ cannot be defined via ‘typedef’
eclipse:[ 115s] [INFO] [exec] os.c:13824:22: error: too many arguments to function ‘(jlong (*)(void))arg0’; expected 0, have 7
eclipse:bootstrap:[ 60s] [INFO] [exec] os.c:13824:22: error: too many arguments to function ‘(jlong (*)(void))arg0’; expected 0, have 7
edge-addition-planarity-suite:[ 12s] c/graphEmbed.c:980:32: error: too many arguments to function 'theGraph->functions.fpHandleBlockedBicomp'; expected 0, have 4
edk2:Shell:[ 19s] main.c:168:42: error: too many arguments to function ‘p->process’; expected 0, have 1
efitools:[ 11s] typedefs.h:55:23: error: ‘bool’ cannot be defined via ‘typedef’
efl:[ 45s] ../src/static_libs/rg_etc/rg_etc1.h:6:23: error: ‘bool’ cannot be defined via ‘typedef’
elilo:[ 8s] elilo.c:440:95: error: expected expression before ‘bool’
elinks:[ 52s] core.c:239:40: error: passing argument 2 of ‘rb_define_global_function_m1’ from incompatible pointer type [-Wincompatible-pointer-types]
elixir115:[ 71s] ...................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
..................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................error: module Elixi
r is reserved and cannot be defined
emacs:embree:[ 24s] /home/abuild/rpmbuild/BUILD/embree-3.13.5/kernels/geometry/pointi.h:215:51: error: ‘const struct embree::PointMi<M>’ has no member named ‘v0’ [-Wtemplate-body]
emil:[ 15s] gc.c:340:27: error: too many arguments to function ‘newstr’; expected 0, have 1
enscript:[ 18s] regex.c:3732:16: error: too many arguments to function ‘re_match_2_internal’; expected 0, have 8
eppic:[ 8s] mkbaseop.c:82:21: error: expected expression before ‘bool’
epson-inkjet-printer-escpr:[ 16s] filter.c:380:15: error: too many arguments to function ‘SendStartJob’; expected 0, have 1
erlang-rebar-testsuite:erlang-rebar-testsuite:erlang-rebar-testsuite:erlang-rebar:erlang-rebar-testsuite:etherape:[ 16s] diagram.c:562:13: error: conflicting types for ‘diagram_reposition’; have ‘void(GooCanvas *)’ {aka ‘void(struct _GooCanvas *)’}
evince:[ 122s] ../backend/dvi/mdvi-lib/fontmap.c:888:18: error: too many arguments to function ‘getenv’; expected 0, have 1
evolution-data-server:[ 57s] /home/abuild/rpmbuild/BUILD/evolution-data-server-3.54.3/src/camel/camel-sexp.c:442:41: error: expected expression before ‘bool’
expect:[ 13s] exp_command.h:225:24: error: passing argument 5 of ‘tclStubsPtr->tcl_CreateCommand’ from incompatible pointer type [-Wincompatible-pointer-types]
f2fs-tools:[ 17s] ../include/f2fs_fs.h:107:25: error: two or more data types in declaration specifiers
fastjet:[ 57s] ProtoJet.hpp:198:51: error: 'const class fastjet::d0::ProtoJet<Item>' has no member named '_Et' [-Wtemplate-body]
fbi:[ 14s] jpeg/80/transupp.c:1579:5: error: too many arguments to function ‘jpeg_write_marker’; expected 0, have 4
festival:[ 24s] editline.c:844:14: error: too many arguments to function ‘match’; expected 0, have 3
fftw3:gnu-hpc:[ 10s] Lmod has detected the following error: The following module(s) are unknown:
fftw3:gnu-mpich-hpc:[ 11s] Lmod has detected the following error: The following module(s) are unknown:
fftw3:gnu-mvapich2-hpc:[ 11s] Lmod has detected the following error: The following module(s) are unknown:
fftw3:gnu-openmpi4-hpc:[ 11s] Lmod has detected the following error: The following module(s) are unknown:
filebench:[ 23s] vars.h:169:46: error: two or more data types in declaration specifiers
firecracker:[ 109s] /home/abuild/rpmbuild/BUILD/firecracker-1.10.1/vendor/aws-lc-sys-0.23.1/aws-lc/crypto/fipsmodule/self_check/self_check.c:1860:38: error: initializer-string for array of 'unsigned char' is too long [-Werror=unterminated-string-initialization]
firefox-esr:[ 343s] 4:57.88 cargo:warning=src/vector_type.h:147:66: error: cannot convert a value of type ‘int’ to vector type ‘__vector(4) int’ which has different size
fldigi:[ 35s] rigcontrol/hamlib.cxx:612:26: error: invalid conversion from ‘int (*)(rig_caps*, void*)’ to ‘int (*)(const rig_caps*, void*)’ [-fpermissive]
flint:[ 15s] ./src/flint.h:484:16: error: expected ‘;’ before ‘void’
flux:[ 36s] error: could not compile `flux-core` (lib) due to 2 previous errors
fnott:forgejo-cli:[ 69s] cargo:warning=oniguruma/src/st.c:500:23: error: too many arguments to function 'func'; expected 0, have 3
framel:[ 13s] /home/abuild/rpmbuild/BUILD/python3.12/src/FrameL.c:5055:17: error: assignment to ‘void (*)(void)’ from incompatible pointer type ‘void (*)(int, char *)’ [-Wincompatible-pointer-types]
freeglut:[ 12s] /home/abuild/rpmbuild/BUILD/freeglut-3.2.2/src/x11/fg_init_x11.c:297:6: error: conflicting types for ‘fgPlatformDestroyContext’; have ‘void(SFG_PlatformDisplay, struct __GLXcontextRec *)’ {aka ‘void(struct tagSFG_PlatformDisplay, struct __GLXcontextRec *)’}
freeipmi:[ 130s] tool-config-file-common.c:88:4: error: expected expression before ‘bool’
ftp:[ 7s] cmds.c:1049:1: error: control reaches end of non-void function [-Werror=return-type]
galculator:[ 19s] ui.c:1180:6: error: conflicting types for ‘ui_formula_entry_state’; have ‘void(gboolean)’ {aka ‘void(int)’}
gammu:gap:[ 14s] src/calls.c:1773:22: error: passing argument 1 of ‘InitHandlerFunc’ from incompatible pointer type [-Wincompatible-pointer-types]
gap-browse:[ 9s] src/ncurses.c:1427:35: error: initialization of ‘struct OpaqueBag * (*)(void)’ from incompatible pointer type ‘struct OpaqueBag * (*)(struct OpaqueBag *, struct OpaqueBag *, struct OpaqueBag *, struct OpaqueBag *)’ [-Wincompatible-pointer-types]
gap-datastructures:[ 7s] src/hashfunctions.c:324:28: error: passing argument 3 of ‘SET_HDLR_FUNC’ from incompatible pointer type [-Wincompatible-pointer-types]
gap-edim:[ 7s] src/ediv.c:228:5: error: initialization of ‘struct OpaqueBag * (*)(void)’ from incompatible pointer type ‘struct OpaqueBag * (*)(struct OpaqueBag *, struct OpaqueBag *, struct OpaqueBag *, struct OpaqueBag *, struct OpaqueBag *, struct OpaqueBag *)’ [-Wincompatible-pointer-types]
gap-float:[ 21s] mpfi.c:941:17: error: initialization of 'struct OpaqueBag * (*)(void)' from incompatible pointer type 'struct OpaqueBag * (*)(struct OpaqueBag *, struct OpaqueBag *, struct OpaqueBag *)' [-Wincompatible-pointer-types]
gap-fplsa:[ 8s] src/fplsa4.c:7027:10: error: expected expression before ‘bool’
gap-gauss:[ 7s] src/gauss.c:89:5: error: initialization of ‘struct OpaqueBag * (*)(void)’ from incompatible pointer type ‘struct OpaqueBag * (*)(struct OpaqueBag *, struct OpaqueBag *, struct OpaqueBag *)’ [-Wincompatible-pointer-types]
gap-guava:[ 8s] src/ctjhai/types.h:27:38: error: expected ‘;’, identifier or ‘(’ before ‘bool’
gap-semigroups:[ 50s] /usr/include/libsemigroups/sims1.tpp:622:39: error: ‘class libsemigroups::Sims1<T>::iterator_base’ has no member named ‘long_rules’ [-Wtemplate-body]
gap-xgap:[ 12s] ../../src.x11/gaptext.c:1040:5: error: too many arguments to function ‘_XawTextExecuteUpdate’; expected 0, have 1
gbdfed:[ 13s] bdfgrab.c:324:22: error: passing argument 1 of ‘XSetErrorHandler’ from incompatible pointer type [-Wincompatible-pointer-types]
gcal:[ 43s] hd-use.c:1875:22: error: too many arguments to function '(void (*)(void))ptr_cc->Cc_hdy_handler'; expected 0, have 7
gcc12:cross-amdgcn-gcc12:[ 152s] configure: error: cannot compute suffix of object files: cannot compile
gcin:[ 25s] gcin-im-client.cpp:319:5: error: too many arguments to function ‘get_gcin_im_srv_sock_path’; expected 0, have 2
gdbm:[ 11s] var.c:659:77: error: expected identifier before ‘bool’
gdm:[ 17s] ../common/gdm-settings-utils.c:290:50: error: expected ‘;’, ‘,’ or ‘)’ before ‘bool’
geany:[ 28s] src/Geometry.h:193:47: error: 'intptr_t' has not been declared
geany-plugins:[ 60s] gcb-plugin.c:1426:44: error: expected expression before 'bool'
geotiff:[ 12s] geotifcp.c:114:21: error: too many arguments to function ‘getopt’; expected 0, have 3
gerbv:[ 20s] callbacks.c:2528:33: error: too many arguments to function ‘render_recreate_composite_surface’; expected 0, have 1
gexif:[ 18s] gexif-main.c:316:31: error: initialization of ‘void (*)(void)’ from incompatible pointer type ‘void (*)(void *, guint, GtkWidget *)’ {aka ‘void (*)(void *, unsigned int, struct _GtkWidget *)’} [-Wincompatible-pointer-types]
ghc:[ 3213s] error: too many arguments to function ‘realloc’; expected 0, have 2
ghostscript:[ 26s] ./base/stdpre.h:348:13: error: ‘bool’ cannot be defined via ‘typedef’
ghostscript-fonts-grops:ghostscript:mini:[ 22s] ./base/stdpre.h:348:13: error: ‘bool’ cannot be defined via ‘typedef’
ghostview:[ 12s] gv.h:102:17: error: prototype declaration
giac:gimp:[ 29s] /usr/include/glib-2.0/glib/gstring.h:251:3: error: too few arguments to function ‘g_string_append_len_inline’; expected 3, have 2
gimp-dds:[ 12s] dds.c:27:10: fatal error: gtk/gtk.h: No such file or directory
gimp-lqr-plugin:[ 12s] configure: error: Package requirements (gimp-2.0 >= 2.8.0 gimpui-2.0 >= 2.8.0) were not met:
gimp-save-for-web:[ 16s] configure: error: Package requirements (gimp-2.0 >= 2.3.0 gimpui-2.0 >= 2.3.0) were not met:
git-delta:[ 49s] cargo:warning=oniguruma/src/st.c:500:23: error: too many arguments to function ‘func’; expected 0, have 3
gjiten:[ 24s] gjiten.c:500:30: error: too many arguments to function ‘kanjidic_create’; expected 0, have 1
gkrellm:[ 10s] main.c:2078:28: error: assignment to ‘void (*)(gint, gchar **)’ {aka ‘void (*)(int, char **)’} from incompatible pointer type ‘void (*)(void)’ [-Wincompatible-pointer-types]
glibc:[ 211s] zic.c:3781:1: error: standard ‘reproducible’ attribute can only be applied to function declarators or type specifiers with function type [-Werror=attributes]
glibc:testsuite:[ 222s] zic.c:3781:1: error: standard ‘reproducible’ attribute can only be applied to function declarators or type specifiers with function type [-Werror=attributes]
glibc:utils:[ 165s] zic.c:3781:1: error: standard ‘reproducible’ attribute can only be applied to function declarators or type specifiers with function type [-Werror=attributes]
global:[ 31s] db.c:102:19: error: assignment to ‘int (*)(const struct __db *, u_int)’ {aka ‘int (*)(const struct __db *, unsigned int)’} from incompatible pointer type ‘int (*)(void)’ [-Wincompatible-pointer-types]
glpk:[ 118s] ./minisat/minisat.h:37:13: error: 'bool' cannot be defined via 'typedef'
gmp:[ 10s] configure: error: could not find a working compiler, see config.log for details
gnome-connections:[ 17s] /usr/lib64/pkgconfig/../../include/freerdp3/freerdp/codecs.h:93:42: error: expected identifier or ‘(’ before ‘rdpCodecs’
gnome-remote-desktop:[ 19s] /usr/lib64/pkgconfig/../../include/freerdp3/freerdp/codecs.h:93:42: error: expected identifier or ‘(’ before ‘rdpCodecs’
gnu-cobol:[ 19s] call.c:1284:14: error: too many arguments to function ‘unifunc.funcint’; expected 0, have 188
gnudos:[ 12s] main.c:654:13: error: too many arguments to function ‘checkFileExtension’; expected 0, have 1
gnunet:[ 62s] ../../../src/include/gnunet_mq_lib.h:567:46: error: initialization of ‘void (*)(void *, const struct GNUNET_TRANSPORT_BurstFinished *)’ from incompatible pointer type ‘void (*)(void)’ [-Wincompatible-pointer-types]
gnustep-base:[ 60s] gdomap.c:3716:27: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
godot:[ 80s] thirdparty/glslang/SPIRV/SpvBuilder.h:444:28: error: 'uint32_t' has not been declared
godot3:[ 117s] thirdparty/embree/kernels/common/../subdiv/bezier_curve.h:138:77: error: 'const struct embree::QuadraticBezierCurve<V>' has no member named 'u' [-Wtemplate-body]
googletest:gpm:[ 14s] lib/libcurses.c:55:5: error: conflicting types for ‘Gpm_Wgetch’; have ‘int(WINDOW *)’ {aka ‘int(struct _win_st *)’}
gputils:[ 14s] gptypes.h:30:3: error: cannot use keyword ‘false’ as enumeration constant
grandorgue:[ 59s] /home/abuild/rpmbuild/BUILD/grandorgue-3.15.4-1/src/core/GOWave.cpp:516:6: error: no declaration matches ‘bool GOWave::Save(GOBuffer<unsigned char>&)’
graphite2:[ 16s] /home/abuild/rpmbuild/BUILD/graphite-1.3.14/tests/featuremap/featuremaptest.cpp:310:30: error: ‘j’ was not declared in this scope [-Wtemplate-body]
gretl:[ 26s] ../lib/src/boxplots.c:1408:41: error: expected identifier before 'bool'
gromacs:openmpi:[ 144s] /home/abuild/rpmbuild/BUILD/gromacs-2024/src/gromacs/mdtypes/energyhistory.cpp:130:42: error: ‘nsteps_sim’ was not declared in this scope [-Wtemplate-body]
gromacs:serial:[ 135s] /home/abuild/rpmbuild/BUILD/gromacs-2024/src/gromacs/mdtypes/energyhistory.cpp:130:42: error: ‘nsteps_sim’ was not declared in this scope [-Wtemplate-body]
grub2:[ 61s] ../../grub-core/lib/gnulib/base64.c:65:3: error: initializer-string for array of ‘char’ is too long [-Werror=unterminated-string-initialization]
gsequencer:[ 720s] ags/test/thread/ags_thread_test.c:342:12: error: too many arguments to function ‘ags_thread_new’; expected 0, have 1
gsl:gnu-hpc:[ 10s] Lmod has detected the following error: The following module(s) are unknown:
gssproxy:[ 21s] src/gp_rpc_process.c:294:13: error: too many arguments to function ‘gp_xdr_set[proc].res_fn’; expected 0, have 2
gtick:[ 18s] optionparser.h:84:5: error: conflicting types for ‘option_parse’; have ‘int(void *)’
gtk2:[ 56s] gtkitemfactory.c:1187:22: error: assignment to 'GtkItemFactoryCallback' {aka 'void (*)(void)'} from incompatible pointer type 'GtkMenuCallback' {aka 'void (*)(struct _GtkWidget *, void *)'} [-Wincompatible-pointer-types]
gtkam:[ 17s] gtkam-list.c:815:32: error: initialization of ‘void (*)(void)’ from incompatible pointer type ‘void (*)(GtkamList *)’ {aka ‘void (*)(struct _GtkamList *)’} [-Wincompatible-pointer-types]
gtkwave:[ 28s] menu.c:8893:53: error: initialization of ‘void (*)(void)’ from incompatible pointer type ‘void (*)(void *, guint, GtkWidget *)’ {aka ‘void (*)(void *, unsigned int, struct _GtkWidget *)’} [-Wincompatible-pointer-types]
guestfs-tools:guile:[ 73s] array-map.c:200:57: error: too many arguments to function 'cproc'; expected 0, have 3
guile-ssh:[ 16s] session-func.c:238:1: error: control reaches end of non-void function [-Werror=return-type]
guile1:[ 37s] ../libguile/debug.x:14:45: error: passing argument 3 of 'scm_make_synt' from incompatible pointer type [-Wincompatible-pointer-types]
guix:[ 106s] nix/nix-daemon/nix-daemon.cc:708:28: error: ‘struct nix::ValidPathInfo’ has no member named ‘narSize’
gummi:[ 16s] configfile.c:120:9: error: too many arguments to function ‘config_load_defaults’; expected 0, have 1
gup:[ 8s] log.c:60:13: error: too many arguments to function ‘log_line’; expected 0, have 5
gwenhywfar:[ 38s] o_grid_p.h:18:14: error: conflicting types for 'HtmlObject_Grid_new'; have 'HTML_OBJECT *(void)'
gzdoom:[ 44s] /home/abuild/rpmbuild/BUILD/gzdoom-g4.14.0/libraries/ZWidget/src/window/sdl2/sdl2displaywindow.h:43:14: error: ‘void SDL2DisplayWindow::SetCaptionTextColor(uint32_t)’ marked ‘override’, but does not override
hardinfo:[ 10s] util.c:1022:9: error: too many arguments to function ‘module_entry->scan_func’; expected 0, have 1
hardinfo2:[ 24s] /home/abuild/rpmbuild/BUILD/hardinfo2-release-2.2.4/hardinfo2/util.c:896:9: error: too many arguments to function ‘module_entry->scan_func’; expected 0, have 1
haxe:[ 28s] /usr/include/neko.h:302:29: error: ‘bool’ cannot be defined via ‘typedef’
hdf5:gnu-hpc:[ 13s] Lmod has detected the following error: The following module(s) are unknown:
hdf5:gnu-mpich-hpc:[ 13s] Lmod has detected the following error: The following module(s) are unknown:
hdf5:gnu-mvapich2-hpc:[ 12s] Lmod has detected the following error: The following module(s) are unknown:
hdf5:gnu-openmpi4-hpc:[ 14s] Lmod has detected the following error: The following module(s) are unknown:
hdf5:gnu-openmpi5-hpc:[ 12s] Lmod has detected the following error: The following module(s) are unknown:
herbstluftwm:[ 34s] /home/abuild/rpmbuild/BUILD/herbstluftwm-0.9.5/src/xconnection.cpp:296:13: error: ‘ch’ was not declared in this scope
hfst:[ 34s] configure: error: could not find OpenFST's fst/fstlib.h in include path
hidviz:[ 28s] /home/abuild/rpmbuild/BUILD/hidviz-0.2/libhidx/libhidx/src/Device.cc:30:64: error: expected unqualified-id before ‘{’ token
himeno:[ 7s] himenoBMTxps.c:190:1: error: conflicting types for ‘jacobi’; have ‘float(int)’
honggfuzz:[ 9s] mangle.c:474:6: error: initializer-string for array of ‘unsigned char’ is too long [-Werror=unterminated-string-initialization]
hplip:[ 40s] scan/sane/bb_ledm.c:811:5: error: conflicting types for 'bb_is_paper_in_adf'; have 'int(struct ledm_session *)'
ht:[ 16s] lex.l:6:21: error: conflicting types for ‘yylex’; have ‘int(YYSTYPE *)’
html-xml-utils:[ 16s] dtd.hash:117:1: error: conflicting types for ‘lookup_element’; have ‘const ElementType *(const char *, size_t)’ {aka ‘const struct _ElementType *(const char *, long unsigned int)’}
httperf:[ 18s] httperf.c:1384:24: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
hylafax+:[ 20s] vsnprintf.c:32:15: error: implicit declaration of function ‘vsprintf’ [-Wimplicit-function-declaration]
hyprcursor:[ 19s] /home/abuild/rpmbuild/BUILD/hyprcursor-0.1.10/hyprcursor-util/src/main.cpp:370:28: error: variable ‘std::ofstream meta’ has initializer but incomplete type
hypre:gnu-mpich-hpc:[ 11s] error: %{requires_eq libsuperlu-gnu-hpc} does not resolve
hypre:gnu-mvapich2-hpc:[ 11s] error: %{requires_eq libsuperlu-gnu-hpc} does not resolve
hypre:gnu-openmpi4-hpc:[ 12s] error: %{requires_eq libsuperlu-gnu-hpc} does not resolve
hypre:mpich:[ 23s] /home/abuild/rpmbuild/BUILD/hypre-2.20.0/src/distributed_ls/pilut/./struct.h:43:26: error: ‘bool’ cannot be defined via ‘typedef’
hypre:mvapich2:[ 24s] /home/abuild/rpmbuild/BUILD/hypre-2.20.0/src/distributed_ls/pilut/././struct.h:43:26: error: ‘bool’ cannot be defined via ‘typedef’
hypre:openmpi4:[ 15s] /home/abuild/rpmbuild/BUILD/hypre-2.20.0/src/distributed_ls/pilut/././struct.h:43:26: error: ‘bool’ cannot be defined via ‘typedef’
hypre:serial:[ 14s] /home/abuild/rpmbuild/BUILD/hypre-2.20.0/src/distributed_ls/pilut/././struct.h:43:26: error: ‘bool’ cannot be defined via ‘typedef’
ibus:[ 20s] ibusenginesimple.c:547:41: error: too many arguments to function 'load_emoji_dict'; expected 0, have 1
ibus-kkc:[ 27s] setup.c:3165:25: error: assignment to ‘gchar **’ {aka ‘char **’} from incompatible pointer type ‘void **’ [-Wincompatible-pointer-types]
ibus:gtk4:[ 24s] ibusenginesimple.c:547:41: error: too many arguments to function 'load_emoji_dict'; expected 0, have 1
icmpinfo:[ 6s] print.c:37:37: error: prototype declaration
icoutils:[ 34s] hmap.c:389:13: error: too many arguments to function ‘iterator’; expected 0, have 1
idzebra:[ 22s] mod_alvis.c:274:39: error: implicit declaration of function ‘atoi’; did you mean ‘atoi_n’? [-Wimplicit-function-declaration]
iftop:[ 15s] iftop.c:803:5: error: too many arguments to function ‘read_config’; expected 0, have 2
igerman98:[ 7s] fix8bit.c:108:5: error: too many arguments to function ‘exit’; expected 0, have 1
igrep:[ 34s] cargo:warning=oniguruma/src/regparse.c:1932:24: error: passing argument 2 of ‘onig_st_foreach’ from incompatible pointer type [-Wincompatible-pointer-types]
imb:gnu-mpich-hpc:[ 10s] Lmod has detected the following error: The following module(s) are unknown:
imb:gnu-mvapich2-hpc:[ 12s] Lmod has detected the following error: The following module(s) are unknown:
imb:gnu-openmpi4-hpc:[ 11s] Lmod has detected the following error: The following module(s) are unknown:
include-what-you-use:[ 62s] fatal error: too many errors emitted, stopping now [-ferror-limit=]
indi:[ 14s] /home/abuild/rpmbuild/BUILD/indi-2.1.1/libs/sockets/tcpsocket.cpp:345:6: error: no declaration matches ‘void TcpSocket::connectToHost(const std::string&, uint16_t)’
initviocons:[ 10s] main.c:703:6: error: conflicting types for ‘strascii’; have ‘void(unsigned char *)’
inkscape:[ 87s] /home/abuild/rpmbuild/BUILD/inkscape-1.4+39/src/util/gobjectptr.h:23:97: error: ‘const class Inkscape::Util::GObjectPtr<T>’ has no member named ‘p’; did you mean ‘_p’? [-Wtemplate-body]
insighttoolkit:[ 150s] /home/abuild/rpmbuild/BUILD/ITK-5.4.0/Modules/Core/Common/src/itkFloatingPointExceptions.cxx:106:91: error: ‘itk::FloatingPointExceptions::ExceptionActionEnum’ has not been declared
intel-graphics-compiler:[ 64s] /home/abuild/rpmbuild/BUILD/build/IGC/llvm-deps-14.0.5/src/llvm/include/llvm/ADT/SmallVector.h:1216:14: error: ‘const class llvm::SmallVector<unsigned int, 16>’ has no member named ‘empty’
intel-media-driver:[ 47s] /home/abuild/rpmbuild/BUILD/intel-media-driver-24.4.4/media-driver/media_common/linux/common/os/mos_defs_specific.h:37:9: error: ‘uint32_t’ does not name a type
intel-opencl:[ 25s] /home/abuild/rpmbuild/BUILD/compute-runtime-24.26.30049.6/shared/offline_compiler/source/decoder/binary_encoder.cpp:251:110: error: invalid conversion from ‘uint32_t*’ {aka ‘unsigned int*’} to ‘int*’ [-fpermissive]
iodbc:[ 17s] fetch.c:740:45: error: too many arguments to function ‘hproc’; expected 0, have 4
ioquake3:[ 53s] code/tools/lcc/src/c.h:648:23: error: expected identifier or ‘(’ before ‘int’
ior:[ 14s] aiori-RADOS.c:84:24: error: initialization of ‘option_help * (*)(void **, void *)’ from incompatible pointer type ‘option_help * (*)(void)’ [-Wincompatible-pointer-types]
iperf:[ 11s] iperf_api.c:622:29: error: assignment to 'void (*)(struct iperf_test *)' from incompatible pointer type 'void (*)(void)' [-Wincompatible-pointer-types]
ipxe:[ 22s] include/nic.h:221:17: error: too many arguments to function ‘_unsafe_disable’; expected 0, have 2
ipxrip:[ 7s] ipxd.c:370:23: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
iredis:[ 11s] 1486:M 17 Jan 2025 15:59:41.215 # Server can't set maximum open files to 10032 because of OS error: Operation not permitted.
irqbalance:[ 15s] ui/ui.c:237:6: error: conflicting types for ‘get_cpu’; have ‘void(cpu_node_t *, void *)’ {aka ‘void(struct cpu_node *, void *)’}
isatapd:[ 12s] isatap.c:415:24: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
ispell:[ 9s] term.c:657:29: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
jack-rack:[ 15s] plugin_desc.c:113:1: error: conflicting types for ‘plugin_desc_destroy’; have ‘void(plugin_desc_t *)’ {aka ‘void(struct _plugin_desc *)’}
java-11-openj9:[ 161s] /home/abuild/rpmbuild/BUILD/openj9-openjdk-jdk11-30b62e68b859d4a716ae799da0711722efed53de/omr/compiler/control/OMROptions.hpp:2062:74: error: 'const class OMR::Options::OptionFlagArray<Enum, NUM_FLAGS>' has no member named 'words'; did you mean '_words'? [-Wtemplate-body]
java-11-openjdk:[ 802s] /home/abuild/rpmbuild/BUILD/jdk11u-jdk-11.0.25-9/src/java.base/unix/native/libnet/DefaultProxySelector.c:450:10: error: too many arguments to function 'g_strfreev'; expected 0, have 1
java-17-openj9:[ 157s] /home/abuild/rpmbuild/BUILD/openj9-openjdk-jdk17-784bd66222d3a9569eff3335f33b48b5e611b518/omr/compiler/control/OMROptions.hpp:2062:74: error: 'const class OMR::Options::OptionFlagArray<Enum, NUM_FLAGS>' has no member named 'words'; did you mean '_words'? [-Wtemplate-body]
java-1_8_0-openj9:[ 89s] /home/abuild/rpmbuild/BUILD/openj9-openjdk-jdk8-a75ff73ce586d4105f89e83f0b3a80ca922e0d6f/omr/compiler/control/OMROptions.hpp:2062:74: error: ‘const class OMR::Options::OptionFlagArray<Enum, NUM_FLAGS>’ has no member named ‘words’; did you mean ‘_words’? [-Wtemplate-body]
java-1_8_0-openjdk:[ 223s] /home/abuild/rpmbuild/BUILD/icedtea-3.33.0/openjdk-boot/hotspot/agent/src/os/linux/libproc.h:86:13: error: 'bool' cannot be defined via 'typedef'
java-21-openj9:[ 168s] /home/abuild/rpmbuild/BUILD/openj9-openjdk-jdk21-7d844187b25a8dbb9cf527a7aa7d5c5c29f1e33c/omr/compiler/control/OMROptions.hpp:2062:74: error: 'const class OMR::Options::OptionFlagArray<Enum, NUM_FLAGS>' has no member named 'words'; did you mean '_words'? [-Wtemplate-body]
jemalloc:jq:[ 16s] src/builtin.c:1786:4: error: initialization of ‘jv (*)(void)’ from incompatible pointer type ‘jv (*)(jq_state *, jv)’ [-Wincompatible-pointer-types]
julia:[ 78s] fatal error: too many errors emitted, stopping now [-ferror-limit=]
julia:compat:[ 83s] fatal error: too many errors emitted, stopping now [-ferror-limit=]
kakasi:[ 15s] jj2.c:217:20: error: too many arguments to function ‘proc’; expected 0, have 2
kakoune:kanjipad:[ 12s] kanjipad.c:357:1: error: conflicting types for ‘save_callback’; have ‘void(GtkWidget *)’ {aka ‘void(struct _GtkWidget *)’}
kbdsniffd:[ 9s] kbdsniffd.c:303:16: error: too many arguments to function ‘gethostbyname’; expected 0, have 1
kbuild:[ 17s] /home/abuild/rpmbuild/BUILD/kbuild-0.1.9998+svn3613/src/kmk/glob/fnmatch.c:299:33: error: too many arguments to function ‘getenv’; expected 0, have 1
kernel-source-longterm:kernel-longterm:[ 741s] ../include/linux/types.h:35:33: error: ‘bool’ cannot be defined via ‘typedef’
kernel-source:kernel-debug:[ 1095s] ../include/linux/types.h:35:33: error: ‘bool’ cannot be defined via ‘typedef’
kernel-source:kernel-default:[ 1017s] ../include/linux/types.h:35:33: error: ‘bool’ cannot be defined via ‘typedef’
kernel-source:kernel-kvmsmall:[ 477s] ../include/linux/types.h:35:33: error: ‘bool’ cannot be defined via ‘typedef’
kernel-source:kernel-vanilla:[ 1013s] ../include/linux/types.h:35:33: error: ‘bool’ cannot be defined via ‘typedef’
klee:[ 21s] fatal error: too many errors emitted, stopping now [-ferror-limit=]
krb5:[ 42s] authgss_prot.c:249:22: error: too many arguments to function ‘xdr_func’; expected 0, have 2
krb5-appl:[ 18s] krlogin.c:167:6: error: prototype declaration
krb5:krb5-mini:[ 41s] authgss_prot.c:249:22: error: too many arguments to function ‘xdr_func’; expected 0, have 2
kstars:[ 318s] /home/abuild/rpmbuild/BUILD/kstars-3.7.4/kstars/auxiliary/gslhelpers.h:510:15: error: redefinition of ‘double Mathematics::GSLHelpers::gslQnFromSortedData(const int32_t*, size_t, size_t, int32_t*, int*)’
kubediff:[ 66s] cargo:warning=oniguruma/src/st.c:500:23: error: too many arguments to function 'func'; expected 0, have 3
labplot-kf5:lal:test:[ 420s] ValueTest.c:28:22: error: initializer-string for array of ‘char’ is too long [-Werror=unterminated-string-initialization]
lammps:lash:[ 16s] conn_mgr.c:868:9: error: too many arguments to function ‘server_event_destroy’; expected 0, have 1
lasso:[ 32s] providerprivate.h:95:26: error: conflicting types for 'lasso_provider_get_key_encryption_method'; have 'LassoKeyEncryptionMethod(const LassoProvider *)' {aka 'LassoKeyEncryptionMethod(const struct _LassoProvider *)'}
latrace:[ 14s] src/objsearch.c:116:20: error: implicit declaration of function ‘malloc’ [-Wimplicit-function-declaration]
lbreakouthd:[ 18s] tools.h:103:13: error: ‘int FileParser::get(const std::string&, int&)’ cannot be overloaded with ‘int FileParser::get(const std::string&, int&)’
lha:[ 16s] lhadd.c:620:9: error: too many arguments to function ‘remove_files’; expected 0, have 2
libArcus:[ 11s] /home/abuild/rpmbuild/BUILD/libArcus-4.13/src/MessageTypeStore.cpp:132:10: error: no declaration matches ‘uint32_t Arcus::MessageTypeStore::getMessageTypeId(const Arcus::MessagePtr&)’
libXbgi:[ 15s] outtextxy.c:85:17: error: too many arguments to function 'XRotDrawAlignedString'; expected 0, have 9
libadlmidi:[ 16s] /usr/include/c++/15/bits/stl_iterator_base_types.h:190:53: error: ‘unsigned char’ is not a class, struct, or union type
libaom:[ 41s] /home/abuild/rpmbuild/BUILD/libaom-3.9.1/third_party/libwebm/mkvparser/mkvparser.cc:272:5: error: ‘dd’ was not declared in this scope
libargtable2:[ 12s] arg_int.c:89:8: error: implicit declaration of function ‘toupper’ [-Wimplicit-function-declaration]
libburn:[ 11s] test/poll.c:67:27: error: assignment to ‘__sighandler_t’ {aka ‘void (*)(int)’} from incompatible pointer type ‘void (*)(void)’ [-Wincompatible-pointer-types]
libcamera:[ 26s] ../src/libcamera/dma_buf_allocator.cpp:319:6: error: no declaration matches ‘void libcamera::DmaSyncer::sync(uint64_t)’
libcamera:full:[ 31s] ../src/libcamera/dma_buf_allocator.cpp:319:6: error: no declaration matches ‘void libcamera::DmaSyncer::sync(uint64_t)’
libcint:[ 12s] /home/abuild/rpmbuild/BUILD/libcint-5.5.0/src/cart2sph.c:6511:28: error: too many arguments to function ‘c2s_bra_sph[l]’; expected 0, have 4
libconfig:[ 13s] grammar.c:64:25: error: too many arguments to function 'libconfig_yylex'; expected 0, have 2
libedit:[ 18s] fileman.c:197:1: error: conflicting types for ‘stripwhite’; have ‘char *(char *)’
libfabric:[ 44s] ./prov/opx/include/rdma/opx/fi_opx.h:300:44: error: expected identifier or '(' before 'if'
libfabric:fabtests:[ 21s] ubertest/xfer.c:588:5: error: conflicting types for ‘ft_recv_n_msg’; have ‘int(int)’
libffi:libfm:[ 18s] base/fm-dummy-monitor.c:48:22: error: assignment to 'gboolean (*)(GFileMonitor *)' {aka 'int (*)(struct _GFileMonitor *)'} from incompatible pointer type 'gboolean (*)(void)' {aka 'int (*)(void)'} [-Wincompatible-pointer-types]
libgnomesu:[ 17s] realloc.c:41:10: error: too many arguments to function ‘realloc’; expected 0, have 2
libguestfs:libinstpatch:[ 11s] /home/abuild/rpmbuild/BUILD/libinstpatch-1.1.6/libinstpatch/IpatchDLS2Region.c:547:17: error: ‘retval’ undeclared (first use in this function)
libint:[ 28s] dgvertex.cc:471:39: error: ‘address’ was not declared in this scope
libixion:[ 45s] compute_engine.cpp:127:37: error: 'struct ixion::draft::array' has no member named 'uint32'
libkrunfw:[ 243s] ./include/linux/types.h:35:33: error: ‘bool’ cannot be defined via ‘typedef’
liblqr:[ 12s] lqr_energy.c:532:1: error: conflicting types for 'lqr_carver_generate_rcache'; have 'gdouble *(LqrCarver *)' {aka 'double *(struct _LqrCarver *)'}
libmbd:libmbd:mvapich2:libmbd:openmpi4:libmesode:[ 14s] src/handler.c:407:19: error: assignment to 'int (*)(void)' from incompatible pointer type 'xmpp_handler' {aka 'int (*)(struct _xmpp_conn_t * const, struct _xmpp_stanza_t * const, void * const)'} [-Wincompatible-pointer-types]
libmetal:[ 9s] /home/abuild/rpmbuild/BUILD/libmetal-2020.10.0/test/system/linux/shmem.c:14:28: error: initializer element is not constant
libmicro:[ 7s] ../benchmark_initworker.c:43:1: error: conflicting types for ‘benchmark_initworker’; have ‘int(void *)’
libmspub:[ 16s] Coordinate.h:36:19: error: ‘int64_t’ was not declared in this scope
libnbd:libnjb:[ 15s] protocol3.c:2104:19: error: too many arguments to function 'add_to_metadata_post'; expected 0, have 4
libnpupnp:[ 10s] ../src/threadutil/ThreadPool.cpp:612:10: error: ‘MED_PRIORITY’ was not declared in this scope
libodfgen:[ 15s] OdfGenerator.cxx:95:32: error: ‘first’ was not declared in this scope
liboldX:[ 12s] ../include/X11/X10.h:86:14: error: prototype declaration
liborcus:[ 34s] ../../include/orcus/sax_parser.hpp:24:22: error: 'uint8_t' does not name a type
libowfat:[ 9s] ./buffer.h:40:65: error: initialization of ‘ssize_t (*)(void)’ {aka ‘long int (*)(void)’} from incompatible pointer type ‘ssize_t (*)(int, char *, size_t)’ {aka ‘long int (*)(int, char *, long unsigned int)’} [-Wincompatible-pointer-types]
libpano:[ 9s] /home/abuild/rpmbuild/BUILD/libpano13-2.9.22/adjust.c:2448:5: error: conflicting types for ‘fcnPano’; have ‘int(int, int, double *, double *, int *)’
libpgeasy:[ 10s] halt.c:54:18: error: too many arguments to function 'sig_func'; expected 0, have 1
libphonenumber:[ 23s] /usr/include/c++/15/ciso646:46:4: error: #warning "<ciso646> is deprecated in C++17, use <version> to detect implementation-specific macros" [-Werror=cpp]
libpmemobj-cpp:[ 121s] /home/abuild/rpmbuild/BUILD/libpmemobj-cpp-1.13.0/include/libpmemobj++/container/detail/concurrent_skip_list_impl.hpp:713:36: error: ‘class pmem::detail::concurrent_skip_list<Traits>’ has no member named ‘get_allocator’ [-Wtemplate-body]
libpst:[ 27s] readpst.c:155:5: error: conflicting types for ‘grim_reaper’; have ‘int(int)’
libqt5-qtwebengine:[ 222s] ../../3rdparty/chromium/third_party/perfetto/src/tracing/core/trace_packet.cc:55:21: error: non-constant condition for static assertion
libquicktime:[ 35s] lqtplay.c:1560:7: error: too many arguments to function ‘decode_audio’; expected 0, have 1
libsemigroups:[ 59s] /home/abuild/rpmbuild/BUILD/libsemigroups-2.7.3/include/libsemigroups/sims1.tpp:622:39: error: ‘class libsemigroups::Sims1<T>::iterator_base’ has no member named ‘long_rules’ [-Wtemplate-body]
libshine:[ 9s] src/lib/layer3.c:95:3: error: too many arguments to function ‘shine_mdct_initialise’; expected 0, have 1
libshumate:[ 19s] ../shumate/vector/shumate-vector-symbol-container.c:176:21: error: too many arguments to function ‘shumate_vector_collision_new’; expected 0, have 1
libsidplayfp:[ 19s] src/builders/exsid-builder/driver/exSID_ftdiwrap.c:255:9: error: too many arguments to function ‘xSfw_dlclose’; expected 0, have 1
libsmi:[ 14s] data.c:4782:9: error: too many arguments to function 'smingparse'; expected 0, have 1
libsolv:[ 55s] /home/abuild/rpmbuild/BUILD/libsolv-0.7.31/bindings/ruby/solv_ruby.c:1989:13: error: ‘bool’ cannot be defined via ‘typedef’
libstorage-ng:[ 144s] ../../storage/FreeInfo.h:293:9: error: 'uint32_t' does not name a type
libstoragemgmt:[ 28s] db.h:19: error: header guard ‘_SIMC_DB_H_’ followed by ‘#define’ of a different macro [-Werror=header-guard]
libstrophe:[ 15s] src/handler.c:763:54: error: passing argument 3 of '_timed_handler_delete' from incompatible pointer type [-Wincompatible-pointer-types]
libsynce:[ 13s] config.c:280:6: error: conflicting types for ‘_cfgdbgPrintConfigFile’; have ‘void(struct configFile *)’
libt3widget:libtirpc:[ 10s] auth_none.c:99:23: error: too many arguments to function 'xdr_opaque_auth'; expected 0, have 2
libunwind:[ 24s] Gtest-nomalloc.c:49:12: error: too many arguments to function ‘func’; expected 0, have 1
libvsg:[ 95s] /home/abuild/rpmbuild/BUILD/VulkanSceneGraph-1.0.9/src/glslang/SPIRV/SpvBuilder.h:426:21: error: ‘uint32_t’ has not been declared
libxcrypt:libxpp:[ 9s] include/xpp/types.hxx:124:102: error: no matching function for call to 'std::basic_string_view<char>::basic_string_view(<brace-enclosed initializer list>)'
libyui:libyui-rest-api:[ 14s] /home/abuild/rpmbuild/BUILD/libyui-4.6.3/libyui-rest-api/src/YWidgetActionHandler.cc:25:17: error: ‘template<class _Codecvt, class _Elem, class _Wide_alloc, class _Byte_alloc> class std::__cxx11::wstring_convert’ is deprecated [-Werror=deprecated-declarations]
libzim:[ 11s] /usr/include/c++/15/ciso646:46:4: error: #warning "<ciso646> is deprecated in C++17, use <version> to detect implementation-specific macros" [-Werror=cpp]
libzrtpcpp:[ 11s] /home/abuild/rpmbuild/BUILD/ZRTPCPP-4.7.0/zrtp/EmojiBase32.cpp:168:21: error: ‘uint8_t’ was not declared in this scope
limesuite:[ 23s] /home/abuild/rpmbuild/BUILD/LimeSuite-23.11.0/src/GFIR/lms.c:158:40: error: too many arguments to function ‘f’; expected 0, have 2
linbox:[ 27s] ../../linbox/vector/blas-subvector.h:121:20: error: 'LinBox::BlasSubvector<_Vector>::Self_t' has no member named 'data'; did you mean 'at'? [-Wtemplate-body]
link-grammar:[ 17s] error.c:264:21: error: ‘outbuf’ undeclared (first use in this function); did you mean ‘setbuf’?
linphone:[ 40s] ../../include/ac/string.h:72:6: error: conflicting types for ‘strncasecmp’; have ‘int(void)’
linphoneqt:[ 19s] /home/abuild/rpmbuild/BUILD/linphone-desktop-5.2.6/external/ispell/term.c:543:29: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
linuxrc:[ 13s] linuxrc.c:744:19: error: assignment to ‘__sighandler_t’ {aka ‘void (*)(int)’} from incompatible pointer type ‘void (*)(void)’ [-Wincompatible-pointer-types]
littleb:[ 10s] /home/abuild/rpmbuild/BUILD/littleb-0.1.2/src/littleb.c:1376:10: error: too many arguments to function ‘_is_bus_connected’; expected 0, have 1
llamacpp:[ 63s] /home/abuild/rpmbuild/BUILD/llamacpp-4501/src/llama-mmap.cpp:262:6: error: no declaration matches ‘void llama_file::write_u32(uint32_t) const’
llcbench:[ 9s] bb.c:324:7: error: too many arguments to function ‘dgemm_’; expected 0, have 13
llvm13:[ 53s] /home/abuild/rpmbuild/BUILD/llvm-13.0.1.src/include/llvm/ADT/SmallVector.h:565:9: error: no type named ‘size_type’ in ‘using llvm::SmallVectorImpl<llvm::StringRef>::SuperClass = class llvm::SmallVectorTemplateBase<llvm::StringRef, true>’ {aka ‘class llvm::SmallVectorTemplateBase<llvm::StringRef, true>’}
llvm14:[ 39s] /home/abuild/rpmbuild/BUILD/llvm-14.0.6.src/include/llvm/ADT/SmallVector.h:1226:14: error: ‘class llvm::SmallVector<char, 64>’ has no member named ‘empty’
llvm15:[ 42s] /home/abuild/rpmbuild/BUILD/llvm-15.0.7.src/include/llvm/ADT/SmallVector.h:1229:14: error: ‘class llvm::SmallVector<char, 64>’ has no member named ‘empty’
llvm16:[ 41s] /home/abuild/rpmbuild/BUILD/llvm-16.0.6.src/include/llvm/ADT/SmallVector.h:1206:46: error: ‘class llvm::SmallVector<char, 0>’ has no member named ‘end’
llvm17:[ 42s] /home/abuild/rpmbuild/BUILD/llvm-17.0.6.src/include/llvm/ADT/SmallVector.h:1206:46: error: ‘class llvm::SmallVector<char, 0>’ has no member named ‘end’
llvm18:[ 46s] /home/abuild/rpmbuild/BUILD/llvm-18.1.8.src/include/llvm/ADT/SmallVector.h:1215:46: error: ‘class llvm::SmallVector<char, 0>’ has no member named ‘end’
lnav:[ 55s] vtab_module.hh:591:59: error: ‘struct vtab_module<T>::vtab’ has no member named ‘base’; did you mean ‘v_base’? [-Wtemplate-body]
localsearch:[ 19s] /usr/include/glib-2.0/glib/gthread.h:262:25: error: passing argument 2 of ‘g_once_impl’ from incompatible pointer type [-Wincompatible-pointer-types]
lrslib:[ 9s] lrslib.c:7848:36: error: too many arguments to function ‘calloc’; expected 0, have 2
lsof:[ 17s] lib/misc.c:1508:28: error: passing argument 2 of ‘doinchild’ from incompatible pointer type [-Wincompatible-pointer-types]
lua-language-server:[ 38s] 3rd/EmmyLuaCodeStyle/Util/src/SymSpell/SymSpell.cpp:337:13: error: ‘lenMask’ was not declared in this scope
lucene++:[ 223s] /home/abuild/rpmbuild/BUILD/LucenePlusPlus-rel_3.0.8/src/test/gtest/googletest/src/gtest-death-test.cc:1385:26: error: ‘uintptr_t’ does not name a type
lxinput:[ 19s] lxinput.c:117:5: error: too many arguments to function ‘set_left_handed_mouse’; expected 0, have 1
lyx:[ 142s] mathed/MathParser.cpp:375:42: error: ‘uint32_t’ does not name a type
m17n-lib:[ 36s] medit.c:2736:8: error: too many arguments to function ‘read_file’; expected 0, have 1
m4:[ 55s] test-stdalign.c:38:3: error: #error "alignof is not a macro"
mailutils:[ 40s] progmailer.c:302:18: error: assignment to ‘void (*)(void)’ from incompatible pointer type ‘void (*)(int)’ [-Wincompatible-pointer-types]
makedumpfile:[ 8s] erase_info.c:2226:13: error: too many arguments to function ‘eppic_init’; expected 0, have 1
mame:[ 402s] ../../../../../src/lib/util/corestr.cpp:137:64: error: ‘uint8_t’ was not declared in this scope
mariadb:[ 237s] /home/abuild/rpmbuild/BUILD/mariadb-11.6.2/mysys/stacktrace.c:66:16: error: assignment to ‘__sighandler_t’ {aka ‘void (*)(int)’} from incompatible pointer type ‘int (*)(int)’ [-Wincompatible-pointer-types]
mariadb-connector-c:[ 13s] /home/abuild/rpmbuild/BUILD/mariadb-connector-c-3.3.10-src/include/ma_global.h:687:1: error: useless type name in empty declaration [-Werror]
mayavi:mbedtls:[ 12s] /home/abuild/rpmbuild/BUILD/mbedtls-3.6.2/library/ssl_tls13_keys.c:84:43: error: initializer-string for array of ‘char’ is too long [-Werror=unterminated-string-initialization]
mbedtls-2:[ 11s] /home/abuild/rpmbuild/BUILD/mbedtls-2.28.9/tests/src/psa_exercise_key.c:153:36: error: initializer-string for array of ‘unsigned char’ is too long [-Werror=unterminated-string-initialization]
mcpp:[ 12s] eval.c:1638:51: error: expected ',' or ';' before 'LL_FORM'
med-tools:[ 22s] /home/abuild/rpmbuild/BUILD/med-4.1.1_SRC/src/ci/_MEDfieldComputingStepCheck236.c:160:32: error: passing argument 2 of ‘_MEDiterate’ from incompatible pointer type [-Wincompatible-pointer-types]
meshlab:meson:test:[ 469s] pgen.p/parser.tab.c:1215:3: error: too many arguments to function ‘yyerror’; expected 0, have 1
metamail:[ 7s] metamail.c:145:5: error: prototype declaration
metis:gnu-hpc:[ 9s] Lmod has detected the following error: The following module(s) are unknown:
mfgtools:[ 15s] /home/abuild/rpmbuild/BUILD/mfgtools-1.5.191.0/libuuu/sdps.cpp:128:41: error: ‘m_scan_limited’ was not declared in this scope
mftrace:[ 9s] gf2pbm.c:109:26: error: expected ‘;’, identifier or ‘(’ before ‘bool’
mgetty:[ 8s] mgetty.c:365:22: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
mhash:[ 21s] keygen.c:171:14: error: conflicting types for 'mhash_keygen_ext'; have 'uint32_t(keygenid, KEYGEN, void *, uint32_t, uint8_t *, uint32_t)' {aka 'unsigned int(enum __keygenid, struct __KEYGEN, void *, unsigned int, unsigned char *, unsigned int)'}
micropython:[ 10s] ../py/emitinlinethumb.c:434:13: error: initializer-string for array of ‘char’ is too long [-Werror=unterminated-string-initialization]
mjpegtools:[ 36s] Region2D.hh:643:54: error: ‘class Region2D<INDEX, SIZE>’ has no member named ‘End’ [-Wtemplate-body]
mlterm:[ 23s] ../../../baselib/src/bl_map.h:149:30: error: assignment to 'int (*)(char *, u_int)' {aka 'int (*)(char *, unsigned int)'} from incompatible pointer type 'int (*)(void)' [-Wincompatible-pointer-types]
mmc-utils:[ 7s] /usr/include/dirent.h:247:12: error: unable to open 'stddef.h'
modsecurity:[ 22s] ../headers/modsecurity/rules_set.h:60:10: error: class 'modsecurity::RulesSet' does not have any field named 'm_secmarker_skipped'
monitoring-plugins-mysql_health:motif:[ 26s] makestrs.c:433:6: error: too many arguments to function ‘sourceproc[abi]’; expected 0, have 1
mozc:mozc:fcitx5:mpd:mpiP:gnu-mpich-hpc:[ 10s] Lmod has detected the following error: The following module(s) are unknown:
mpiP:gnu-mvapich2-hpc:[ 13s] Lmod has detected the following error: The following module(s) are unknown:
mpiP:gnu-openmpi4-hpc:[ 13s] Lmod has detected the following error: The following module(s) are unknown:
mpibash:[ 12s] /usr/include/bash/general.h:151:33: error: too many arguments to function ‘list_reverse’; expected 0, have 1
mpich:gnu-hpc:[ 136s] Lmod has detected the following error: The following module(s) are unknown:
mpich:gnu-hpc-ofi:[ 170s] Lmod has detected the following error: The following module(s) are unknown:
mpich:gnu-hpc-ofi-testsuite:[ 159s] Lmod has detected the following error: The following module(s) are unknown:
mpich:gnu-hpc-testsuite:[ 154s] Lmod has detected the following error: The following module(s) are unknown:
mpvpaper:[ 21s] ../src/holder.c:241:14: error: initialization of ‘void (*)(void *, struct wl_output *, int32_t)’ {aka ‘void (*)(void *, struct wl_output *, int)’} from incompatible pointer type ‘void (*)(void)’ [-Wincompatible-pointer-types]
mrouted:[ 13s] kern.c:111:70: error: expected expression before ‘bool’
mstflint:[ 48s] ../common/bit_slice.h:67:23: error: ‘bool’ cannot be defined via ‘typedef’
mtpaint:[ 12s] png.c:728:51: error: passing argument 3 of ‘png_set_read_user_chunk_fn’ from incompatible pointer type [-Wincompatible-pointer-types]
mtx:[ 12s] mtx.h:225:16: error: cannot use keyword ‘false’ as enumeration constant
multiload-ng:[ 19s] util.c:227:1: error: conflicting types for 'xdg_open_url'; have 'void(const gchar *)' {aka 'void(const char *)'}
mumble:[ 27s] /home/abuild/rpmbuild/BUILD/mumble-1.5.735/overlay_gl/overlay.c:40:23: error: ‘bool’ cannot be defined via ‘typedef’
mumps:gnu-mpich-hpc:[ 10s] Lmod has detected the following error: The following module(s) are unknown:
mumps:gnu-mvapich2-hpc:[ 12s] Lmod has detected the following error: The following module(s) are unknown:
mumps:gnu-openmpi4-hpc:[ 11s] Lmod has detected the following error: The following module(s) are unknown:
mupdf:[ 44s] thirdparty/freeglut/src/x11/fg_init_x11.c:348:6: error: conflicting types for ‘fgPlatformDestroyContext’; have ‘void(SFG_PlatformDisplay, struct __GLXcontextRec *)’ {aka ‘void(struct tagSFG_PlatformDisplay, struct __GLXcontextRec *)’}
mustang-plug:[ 16s] /usr/include/c++/15/ciso646:46:4: error: #warning "<ciso646> is deprecated in C++17, use <version> to detect implementation-specific macros" [-Werror=cpp]
mvapich2:gnu-hpc:[ 121s] Lmod has detected the following error: The following module(s) are unknown:
mvapich2:gnu-hpc-psm2:[ 109s] Lmod has detected the following error: The following module(s) are unknown:
mvapich2:gnu-hpc-testsuite:[ 161s] Lmod has detected the following error: The following module(s) are unknown:
mvapich2:standard:[ 265s] src/mpid/ch3/channels/common/src/reg_cache/avl.c:882:16: error: too many arguments to function 'avl_desc->isize'; expected 0, have 1
mvapich2:testsuite:[ 256s] src/mpid/ch3/channels/common/src/reg_cache/avl.c:882:16: error: too many arguments to function 'avl_desc->isize'; expected 0, have 1
mvapich3:gnu-hpc-ofi:[ 167s] Lmod has detected the following error: The following module(s) are unknown:
mvapich3:gnu-hpc-ucx:[ 169s] Lmod has detected the following error: The following module(s) are unknown:
mvapich3:ofi:[ 815s] src/mpid/ch4/netmod/mvp/smp/src/legacy/mvp_eager.c:171:9: error: too many arguments to function 'mvp_smp_fast_write_contig'; expected 0, have 9
mvapich3:ofi-testsuite:[ 912s] src/mpid/ch4/netmod/mvp/smp/src/legacy/mvp_eager.c:171:9: error: too many arguments to function 'mvp_smp_fast_write_contig'; expected 0, have 9
mvapich3:ucx:[ 852s] src/mpid/ch4/netmod/mvp/smp/src/legacy/mvp_eager.c:171:9: error: too many arguments to function 'mvp_smp_fast_write_contig'; expected 0, have 9
mvapich3:ucx-testsuite:[ 829s] src/mpid/ch4/netmod/mvp/smp/src/legacy/mvp_eager.c:171:9: error: too many arguments to function 'mvp_smp_fast_write_contig'; expected 0, have 9
ncompress:[ 7s] compress.c:600:32: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
nedit:[ 10s] getfiles.c:1092:6: error: too many arguments to function ‘OrigFileSearchProc’; expected 0, have 2
neko:[ 12s] /home/abuild/rpmbuild/BUILD/neko-2-4-0/build/neko.h:302:29: error: ‘bool’ cannot be defined via ‘typedef’
neochat:[ 137s] /home/abuild/rpmbuild/BUILD/neochat-24.12.1/src/neochatroom.cpp:905:1: internal compiler error: in gimplify_var_or_parm_decl, at gimplify.cc:3346
neovide:[ 445s] error: could not compile `skia-bindings` (lib) due to 1 previous error
neovim:[ 27s] /home/abuild/rpmbuild/BUILD/neovim-0.10.3/src/nvim/api/buffer.c:738:50: error: passing argument 4 of ‘normalize_index’ from incompatible pointer type [-Wincompatible-pointer-types]
netcat-openbsd:[ 7s] netcat.c:1451:41: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
netcdf-cxx4:gnu-hpc:[ 12s] Lmod has detected the following error: The following module(s) are unknown:
netcdf:gnu-hpc:[ 12s] Lmod has detected the following error: The following module(s) are unknown:
netcdf:gnu-mpich-hpc:[ 12s] Lmod has detected the following error: The following module(s) are unknown:
netcdf:gnu-mvapich2-hpc:[ 14s] Lmod has detected the following error: The following module(s) are unknown:
netcdf:gnu-openmpi4-hpc:[ 13s] Lmod has detected the following error: The following module(s) are unknown:
netdiscover:[ 11s] main.c:547:6: error: conflicting types for ‘usage’; have ‘void(char *)’
nethack:[ 10s] ../sys/unix/unixunix.c:289:31: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
netpbm:[ 11s] libopt.c:92:23: error: ‘bool’ cannot be defined via ‘typedef’
netsniff-ng:[ 15s] staging/automops.c:161:19: error: conflicting types for ‘automops_search_protocol’; have ‘struct automops *(struct automops *, char *)’
nfs4-acl-tools:[ 12s] nfs4_getfacl.c:121:13: error: conflicting types for ‘print_acl_from_path’; have ‘void(const char *)’
nfswatch:[ 8s] logfile.c:143:48: error: too many arguments to function ‘ctime’; expected 0, have 1
nghttp2:[ 63s] ../tests/munit/munit.c:865:33: error: initializer element is not constant
nghttp3:[ 16s] munit/munit.c:865:33: error: initializer element is not constant
nginx-module-njs:[ 21s] src/njs_string.h:217:36: error: initializer-string for array of ‘unsigned char’ is too long [-Werror=unterminated-string-initialization]
ngrep:[ 8s] ngrep.c:1330:5: error: too many arguments to function ‘dump_delay’; expected 0, have 1
ngtcp2:[ 18s] munit/munit.c:865:33: error: initializer element is not constant
ninvaders:[ 8s] view.c:134:17: error: too many arguments to function ‘doSleep’; expected 0, have 1
nodejs-electron:[ 2149s] /usr/include/c++/15/bits/range_access.h:66:67: error: invalid use of incomplete type ‘class WTF::CodePointIterator’
notify-osd:[ 26s] test-apport.c:51:33: error: passing argument 5 of ‘g_test_create_case’ from incompatible pointer type [-Wincompatible-pointer-types]
nss-pam-ldapd:[ 28s] cfg.c:214:1: error: control reaches end of non-void function [-Werror=return-type]
nst:[ 11s] src/CSIEscape.cxx:602:1: error: 'ColorIndex' does not name a type
nvdock:[ 10s] icon.h:68:92: error: initialization of ‘void (*)(void)’ from incompatible pointer type ‘void (*)(const char *)’ [-Wincompatible-pointer-types]
nvidia-open-driver-G06-signed:[ 144s] /home/abuild/rpmbuild/BUILD/open-gpu-kernel-modules-550.144.03/obj/default/kernel-open/common/inc/nv-linux.h:1212:9: error: implicit declaration of function ‘dma_is_direct’; did you mean ‘d_is_dir’? [-Wimplicit-function-declaration]
nvidia-open-driver-G06-signed:cuda:[ 156s] /usr/src/linux-6.12.9-1/include/sound/pcm.h:1298:37: error: passing argument 1 of ‘ktime_get_real_ts64’ from incompatible pointer type [-Wincompatible-pointer-types]
nxtvepg:[ 9s] ./epgctl/mytypes.h:48:24: error: ‘bool’ cannot be defined via ‘typedef’
o2scl:[ 40s] ../../include/o2scl/table.h:2498:12: error: 'class o2scl::table<vec_t, fp_t>' has no member named 'clear_all'; did you mean 'clear_table'? [-Wtemplate-body]
o2scl:test:[ 40s] ../../include/o2scl/table.h:2498:12: error: 'class o2scl::table<vec_t, fp_t>' has no member named 'clear_all'; did you mean 'clear_table'? [-Wtemplate-body]
ocaml-mccs:[ 13s] gcc-14: fatal error: cannot execute ‘cc1plus’: posix_spawnp: No such file or directory
ocfs2-tools:[ 129s] ./config.h:50:22: error: too many arguments to function ‘usage’; expected 0, have 1
ocr:gnu-hpc:[ 9s] Lmod has detected the following error: The following module(s) are unknown:
ocr:gnu-mpich-hpc:[ 12s] Lmod has detected the following error: The following module(s) are unknown:
ocr:gnu-mvapich2-hpc:[ 10s] Lmod has detected the following error: The following module(s) are unknown:
ocr:gnu-openmpi4-hpc:[ 14s] Lmod has detected the following error: The following module(s) are unknown:
onboard:[ 12s] error: command '/usr/bin/gcc' failed with exit code 1
oneko:[ 9s] oneko.c:1562:19: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
opae:[ 18s] /home/abuild/rpmbuild/BUILD/opae-2.0.01.0.776b2b2718f7/tools/extra/c++utils/log.cpp:94:27: error: ignoring return value of ‘bool std::unique_lock<_Mutex>::try_lock_for(const std::chrono::duration<_Rep, _Period>&) [with _Rep = long int; _Period = std::ratio<1>; _Mutex = std::timed_mutex]’, declared with attribute ‘nodiscard’ [-Werror=unused-result]
opam:open-vm-tools:[ 54s] ul.c:32:8: error: conflicting types for 'MXUserTryAcquireForceFail'; have 'Bool (*)(void)' {aka 'char (*)(void)'}
openafs:[ 93s] iomgr.c:50:23: error: ‘bool’ cannot be defined via ‘typedef’
openal-soft:[ 23s] /home/abuild/rpmbuild/BUILD/openal-soft-1.22.2/alc/alu.cpp:244:14: error: ‘CompatFlagBitset’ was not declared in this scope
openbabel:openblas:gnu-hpc:[ 11s] Lmod has detected the following error: The following module(s) are unknown:
openblas:gnu-hpc-pthreads:[ 10s] Lmod has detected the following error: The following module(s) are unknown:
opencc:[ 11s] /home/abuild/rpmbuild/BUILD/OpenCC-ver.1.1.9/src/SerializedValues.cpp:129:41: error: ‘uint16_t’ does not name a type
opendkim:[ 41s] /usr/include/libmilter/mfapi.h:98:17: error: ‘bool’ cannot be defined via ‘typedef’
openfst:[ 38s] ./../include/fst/bi-table.h:333:25: error: 'const class fst::VectorHashBiTable<I, T, S, FP, H, HS>' has no member named 's_'; did you mean 'h_'? [-Wtemplate-body]
openmpi4:gnu-hpc:[ 107s] Lmod has detected the following error: The following module(s) are unknown:
openmpi4:gnu-hpc-testsuite:[ 124s] Lmod has detected the following error: The following module(s) are unknown:
openmpi5:gnu-hpc:[ 130s] Lmod has detected the following error: The following module(s) are unknown:
openmpi5:gnu-hpc-testsuite:[ 136s] Lmod has detected the following error: The following module(s) are unknown:
openmw:[ 32s] /home/abuild/rpmbuild/BUILD/openmw-master/extern/sol3/sol/optional_implementation.hpp:2194:31: error: ‘class sol::optional<T&>’ has no member named ‘construct’ [-Wtemplate-body]
openrct2:[ 122s] /home/abuild/rpmbuild/BUILD/OpenRCT2-0.4.17/src/openrct2/object/ObjectRepository.h:38:8: error: potential null pointer dereference [-Werror=null-dereference]
opensc:[ 27s] card-piv.c:821:73: error: initializer-string for array of ‘unsigned char’ is too long [-Werror=unterminated-string-initialization]
opentoonz:[ 234s] /home/abuild/rpmbuild/BUILD/opentoonz-1.7.1/toonz/sources/image/tzp/avl.h:75:20: error: passing argument 3 of ‘avl__tree’ from incompatible pointer type [-Wincompatible-pointer-types]
openttd:[ 210s] /home/abuild/rpmbuild/BUILD/openttd-14.1/src/pathfinder/yapf/yapf_road.cpp:465:73: error: ‘class CYapfFollowRoadT<Types>’ has no member named ‘IsTram’ [-Wtemplate-body]
openucx:[ 32s] async/async.c:88:27: error: initialization of 'ucs_status_t (*)(ucs_async_context_t *, int)' {aka 'ucs_status_t (*)(struct ucs_async_context *, int)'} from incompatible pointer type 'ucs_status_t (*)(void)' [-Wincompatible-pointer-types]
openwsman:[ 16s] /home/abuild/rpmbuild/BUILD/openwsman-2.8.0/src/plugins/swig/ruby/../src/../src/target_ruby.c:136:14: error: passing argument 1 of ‘rb_protect’ from incompatible pointer type [-Wincompatible-pointer-types]
orthanc:orthanc-wsi:osdlyrics:[ 24s] ol_keybindings.c:55:40: error: passing argument 2 of ‘ol_keybinder_bind’ from incompatible pointer type [-Wincompatible-pointer-types]
ossim:[ 234s] /home/abuild/rpmbuild/BUILD/ossim-OrchidIsland-2.11.1/src/vpfutil/vpftidx.c:608:46: error: conflicting types for ‘atof’; have ‘double(void)’
ovmf:[ 19s] main.c:168:42: error: too many arguments to function ‘p->process’; expected 0, have 1
packetdrill:[ 8s] types.h:66:9: error: cannot use keyword ‘false’ as enumeration constant
packit:[ 13s] injection.c:289:11: error: conflicting types for ‘without_response’; have ‘u_int16_t(u_int32_t)’ {aka ‘short unsigned int(unsigned int)’}
paho-mqtt-c:[ 8s] /home/abuild/rpmbuild/BUILD/paho.mqtt.c-1.3.13/src/MQTTPacket.h:31:22: error: ‘bool’ cannot be defined via ‘typedef’
pam_ssh:[ 22s] pam_option.h:50:21: error: 'bool' cannot be used here
papi:hpc:[ 16s] high-level/papi_hl.c:409:12: error: conflicting types for ‘_internal_hl_read_user_events’; have ‘int(const char *)’
papi:standard:[ 17s] high-level/papi_hl.c:409:12: error: conflicting types for ‘_internal_hl_read_user_events’; have ‘int(const char *)’
parcellite:[ 11s] main.c:2522:3: error: too many arguments to function ‘parcellite_init’; expected 0, have 1
partclone:[ 36s] f2fs/f2fs_fs.h:30:25: error: two or more data types in declaration specifiers
parted:[ 61s] parted.c:2567:9: error: passing argument 2 of 'command_create' from incompatible pointer type [-Wincompatible-pointer-types]
pasystray:[ 15s] pasystray.c:89:6: error: conflicting types for ‘destroy’; have ‘void(settings_t *)’ {aka ‘void(struct settings_t_ *)’}
pcfclock:[ 56s] /home/abuild/rpmbuild/BUILD/pcfclock-0.44/obj/default/pcfclock.c:396:27: error: ‘no_llseek’ undeclared here (not in a function); did you mean ‘noop_llseek’?
pcsc-eco5000:[ 13s] defines.h:81:14: error: 'bool' cannot be defined via 'typedef'
pcsc-reflex60:[ 7s] defines.h:54:16: error: both ‘short’ and ‘_Bool’ in declaration specifiers
pcsc-towitoko:[ 15s] ../../src/driver/defines.h:51:13: error: 'bool' cannot be defined via 'typedef'
pdns:[ 171s] credentials.hh:98:3: error: ‘uint32_t’ does not name a type
pdns-recursor:[ 54s] json11.cpp:327:56: error: 'uint8_t' does not name a type
pdsh:[ 12s] macros.h:62:30: error: expected ‘;’, identifier or ‘(’ before ‘bool’
perl-Bit-Vector:[ 8s] ToolBox.h:98:20: error: cannot use keyword ‘false’ as enumeration constant
perl-CommonMark:[ 7s] CommonMark.c:966:18: error: too many arguments to function ‘XSFUNCTION’; expected 0, have 3
perl-Convert-UUlib:[ 8s] UUlib.xs:468:9: error: too many arguments to function ‘UUInfoFile’; expected 0, have 3
perl-DBD-Pg:[ 9s] dbdimp.c:3828:21: error: too many arguments to function ‘type_info->dequote’; expected 0, have 3
perl-MouseX-Getopt:perl-Net-AMQP-RabbitMQ:perl-Net-IDN-Encode:[ 8s] lib/Net/IDN/Punycode.xs:256:19: error: implicit declaration of function ‘uvuni_to_utf8_flags’; did you mean ‘uvchr_to_utf8_flags’? [-Wimplicit-function-declaration]
perl-Net-Patricia:[ 8s] Patricia.xs:537:32: error: passing argument 2 of ‘Destroy_Patricia’ from incompatible pointer type [-Wincompatible-pointer-types]
perl-SDL:[ 32s] lib/SDL_perl.c:655:13: error: conflicting types for ‘boot_SDL’; have ‘void(PerlInterpreter *, CV *)’ {aka ‘void(struct interpreter *, struct cv *)’}
perl-Session-Token:[ 7s] randport.c:119:4: error: too many arguments to function ‘isaac’; expected 0, have 1
perl-Term-ReadLine-Gnu:[ 8s] Gnu.xs:625:34: error: initialization of ‘int (*)(void)’ from incompatible pointer type ‘int (*)(PerlIOl **)’ {aka ‘int (*)(struct _PerlIO **)’} [-Wincompatible-pointer-types]
perl-Text-BibTeX:[ 10s] btparse/src/../pccts/ast.c:139:1: error: conflicting types for ‘zzpre_ast’; have ‘void(AST *, void (*)(AST *), void (*)(AST *), void (*)(AST *))’ {aka ‘void(struct _ast *, void (*)(struct _ast *), void (*)(struct _ast *), void (*)(struct _ast *))’}
perl-Tk:[ 40s] ClientWin.c:94:15: error: too many arguments to function ‘TryChildren’; expected 0, have 3
perl-UUID:[ 10s] UUID.xs:166:14: error: too many arguments to function ‘my_cxtp->myNVtime’; expected 0, have 1
perl-Verilog-Perl:[ 7s] cc1plus: fatal error: VParseBison.c: No such file or directory
perl-Wx:perl-YAML-Syck:[ 8s] emitter.c:1348:13: error: too many arguments to function ‘st_insert’; expected 0, have 3
perl-autovivification:petsc:gnu-mpich-hpc:[ 13s] Lmod has detected the following error: The following module(s) are unknown:
petsc:gnu-mvapich2-hpc:[ 12s] Lmod has detected the following error: The following module(s) are unknown:
petsc:gnu-openmpi4-hpc:[ 14s] Lmod has detected the following error: The following module(s) are unknown:
pgpdump:[ 9s] packet.c:456:26: error: too many arguments to function ‘uatsub_func[subtype]’; expected 0, have 1
pidgin:[ 57s] ZSendNot.c:38:37: error: passing argument 4 of 'Z_SendFragmentedNotice' from incompatible pointer type [-Wincompatible-pointer-types]
pingus:[ 24s] src/engine/display/font.cpp:214:1: error: no declaration matches ‘float Font::get_width(uint32_t) const’
plantri:[ 7s] fullgen.c:980:6: error: conflicting types for ‘codiereplanar’; have ‘void(KANTE (*)[3])’ {aka ‘void(struct K (*)[3])’}
plasma6-mobile:[ 207s] /home/abuild/rpmbuild/BUILD/plasma-mobile-6.2.5/kded/autodetectapn/autodetectapn.cpp:116:1: internal compiler error: in gimplify_var_or_parm_decl, at gimplify.cc:3346
plasma6-nm:[ 90s] /home/abuild/rpmbuild/BUILD/plasma-nm-6.2.5/libs/handler.cpp:484:1: internal compiler error: in gimplify_var_or_parm_decl, at gimplify.cc:3346
plee-the-bear:[ 31s] /home/abuild/rpmbuild/BUILD/bear-project/bear/bear-engine/core/src/audio/code/sdl_sound.cpp:21:10: fatal error: claw/logger.hpp: No such file or directory
plotutils:[ 21s] ./../include/sys-defines.h:258:38: error: expected ‘;’, identifier or ‘(’ before ‘bool’
pmacct:[ 39s] util.c:1818:19: error: passing argument 2 of 'signal' from incompatible pointer type [-Wincompatible-pointer-types]
pnetcdf:gnu-mpich-hpc:[ 10s] Lmod has detected the following error: The following module(s) are unknown:
pnetcdf:gnu-mvapich2-hpc:[ 10s] Lmod has detected the following error: The following module(s) are unknown:
pnetcdf:gnu-openmpi4-hpc:[ 11s] Lmod has detected the following error: The following module(s) are unknown:
pnetcdf:mpich:[ 541s] ncmpidump.h:19:7: error: cannot use keyword ‘false’ as enumeration constant
pnetcdf:mvapich2:[ 551s] ncmpidump.h:19:7: error: cannot use keyword ‘false’ as enumeration constant
pnetcdf:openmpi4:[ 533s] ncmpidump.h:19:7: error: cannot use keyword ‘false’ as enumeration constant
pnm2ppa:[ 10s] global.h:30:3: error: cannot use keyword ‘false’ as enumeration constant
pocl:[ 23s] /usr/include/llvm/ADT/SmallVector.h:1215:46: error: ‘class llvm::SmallVector<std::unique_ptr<clang::PCHContainerReader> >’ has no member named ‘end’
poco:[ 76s] /home/abuild/rpmbuild/BUILD/poco-poco-1.13.1-release/Data/include/Poco/Data/SimpleRowFormatter.h:114:21: error: declaration of ‘std::_Require<std::__not_<std::__is_tuple_like<_Tp> >, std::is_move_constructible<_Tp>, std::is_move_assignable<_Tp> > std::swap(_Tp&, _Tp&) noexcept [with _Tp = Poco::Data::SimpleRowFormatter; _Require<__not_<__is_tuple_like<_Tp> >, is_move_constructible<_Tp>, is_move_assignable<_Tp> > = void]’ has a different exception specifier
poedit:[ 36s] /usr/include/boost/thread/future.hpp:4671:19: error: ‘struct boost::detail::run_it<FutureExecutorContinuationSharedState>’ has no member named ‘that’; did you mean ‘that_’? [-Wtemplate-body]
polybar:[ 45s] /home/abuild/rpmbuild/BUILD/polybar-3.7.2/src/ipc/encoder.cpp:28:32: error: ‘type_t’ does not name a type; did you mean ‘time_t’?
polymake:[ 48s] /home/abuild/rpmbuild/BUILD/polymake-4.12/include/core/polymake/internal/comparators.h:299:51: error: redefinition of ‘template<class SizeT> int pm::hash_combine(SizeT&, SizeT)’
postfix:[ 12s] ./mail_params.h:17:13: error: ‘bool’ cannot be defined via ‘typedef’
postfix:postfix-bdb:[ 11s] ./mail_params.h:17:13: error: ‘bool’ cannot be defined via ‘typedef’
postgresql12:[ 42s] ../../src/include/c.h:348:23: error: ‘bool’ cannot be defined via ‘typedef’
postgresql13:[ 37s] ../../src/include/c.h:364:23: error: ‘bool’ cannot be defined via ‘typedef’
postgresql14:[ 38s] ../../src/include/c.h:419:23: error: ‘bool’ cannot be defined via ‘typedef’
postgresql15:[ 36s] ../../src/include/c.h:419:23: error: ‘bool’ cannot be defined via ‘typedef’
postgresql16:[ 35s] ../../src/include/c.h:440:23: error: ‘bool’ cannot be defined via ‘typedef’
postgresql17:[ 47s] ../../src/include/c.h:456:23: error: ‘bool’ cannot be defined via ‘typedef’
postgresql17:mini:[ 36s] ../../../src/include/c.h:456:23: error: ‘bool’ cannot be defined via ‘typedef’
power-profiles-daemon:powerd:[ 8s] powerd.c:285:31: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
powerdevil6:[ 68s] /home/abuild/rpmbuild/BUILD/powerdevil-6.2.5/applets/brightness/plugin/screenbrightnesscontrol.cpp:216:21: internal compiler error: in gimplify_expr, at gimplify.cc:20118
powerman:[ 12s] parse_tab.c:2228:3: error: too many arguments to function ‘yyerror’; expected 0, have 1
ppp:[ 15s] pppdump.c:59:6: error: prototype declaration
ppsspp:[ 24s] /home/abuild/rpmbuild/BUILD/ppsspp-1.18.1/ext/libzip/compat.h:57:14: error: ‘bool’ cannot be defined via ‘typedef’
prboom-plus:[ 16s] /home/abuild/rpmbuild/BUILD/prboom-plus-2.6.66/prboom2/src/doomtype.h:48:15: error: cannot use keyword ‘false’ as enumeration constant
presenterm:[ 31s] cargo:warning=oniguruma/src/regparse.c:1932:24: error: passing argument 2 of ‘onig_st_foreach’ from incompatible pointer type [-Wincompatible-pointer-types]
privoxy:[ 16s] filters.c:2547:42: error: too many arguments to function ‘content_filter’; expected 0, have 1
proftpd:[ 54s] table.c:1283:23: error: expected expression before ‘bool’
protobuf-c:psmisc:[ 17s] src/lists.h:23:24: error: cannot use keyword ‘false’ as enumeration constant
psqlODBC:[ 13s] psqlodbc.h:264:23: error: 'bool' cannot be defined via 'typedef'
purple-facebook:[ 21s] facebook.c:1640:25: error: assignment to 'GList * (*)(PurpleConnection *)' {aka 'struct _GList * (*)(struct _PurpleConnection *)'} from incompatible pointer type 'GList * (*)(void)' {aka 'struct _GList * (*)(void)'} [-Wincompatible-pointer-types]
purple-import-empathy:[ 12s] import-empathy.c:217:9: error: initialization of ‘void (*)(PurplePlugin *)’ {aka ‘void (*)(struct _PurplePlugin *)’} from incompatible pointer type ‘void (*)(void)’ [-Wincompatible-pointer-types]
purple-libsteam:[ 14s] error: %{requires_eq pidgin} does not resolve
purple-mattermost:[ 12s] error: %{requires_eq pidgin} does not resolve
purple-plugin-pack:[ 14s] ../album/album-ui.c:1166:30: error: initialization of ‘void (*)(void)’ from incompatible pointer type ‘void (*)(PurpleBlistNode *, void *)’ {aka ‘void (*)(struct _PurpleBlistNode *, void *)’} [-Wincompatible-pointer-types]
purple-rocketchat:[ 13s] error: %{requires_eq pidgin} does not resolve
python-Mathics:test:python-aws-xray-sdk:test:python-ctypesgen:python-distributed:test-py312:python-gphoto2:python-gpt4all:[ 20s] /home/abuild/rpmbuild/BUILD/gpt4all-3.4.2/gpt4all-backend/deps/llama.cpp-mainline/ggml/src/kompute/external/bin/xxd.c:684:19: error: too many arguments to function ‘ftell’; expected 0, have 1
python-gwpy:python-hotdoc:[ 32s] error: command '/usr/bin/gcc' failed with exit code 1
python-kiwi-keg:python-librosa:[ 291s] tests/test_core.py::test_yin_tone[110] Fatal Python error: Segmentation fault
python-ligo-lw:test:python-mypy:[ 696s] /home/abuild/rpmbuild/BUILD/mypy-1.12.0/mypyc/lib-rt/pythoncapi_compat.h:38:11: error: ‘_Py_NULL’ redefined [-Werror]
python-numpy1:gnu-hpc:[ 17s] Lmod has detected the following error: The following module(s) are unknown:
python-numpy:gnu-hpc:[ 17s] Lmod has detected the following error: The following module(s) are unknown:
python-opencensus-ext-azure:python-oslo.rootwrap:[ 7s] update-alternatives: error: no alternatives for twist
python-pelican:python-physt:python-poppler-qt5:python-pyahocorasick:[ 10s] error: command '/usr/bin/gcc' failed with exit code 1
python-pymemcache:python-pymilter:[ 9s] error: command '/usr/bin/gcc' failed with exit code 1
python-pyo:[ 13s] error: command '/usr/bin/gcc' failed with exit code 1
python-pyogrio:test:[ 37s] test_geopandas_io.py::test_read_multisurface[True] Fatal Python error: Segmentation fault
python-pytest-isort:python-python-poppler:[ 14s] /usr/include/pybind11/pybind11.h:244:40: error: static assertion failed: The number of argument annotations does not match the number of function arguments
python-pythran:test-py311:[ 2289s] /home/abuild/rpmbuild/BUILD/pythran-0.17.0/pythran/pythonic/builtins/map.hpp:129:36: error: no match for ‘operator==’ (operand types are ‘std::__tuple_element_t<0, std::tuple<{anonymous}::pythonic::numpy::ndindex_iterator<2> > >’ {aka ‘const {anonymous}::pythonic::numpy::ndindex_iterator<2>’} and ‘std::__tuple_element_t<0, std::tuple<{anonymous}::pythonic::numpy::ndindex_iterator<2> > >’ {aka ‘const {anonymous}::pythonic::numpy::ndindex_iterator<2>’})
python-pythran:test-py312:[ 2295s] /home/abuild/rpmbuild/BUILD/pythran-0.17.0/pythran/pythonic/builtins/map.hpp:129:36: error: no match for ‘operator==’ (operand types are ‘std::__tuple_element_t<0, std::tuple<{anonymous}::pythonic::numpy::ndindex_iterator<2> > >’ {aka ‘const {anonymous}::pythonic::numpy::ndindex_iterator<2>’} and ‘std::__tuple_element_t<0, std::tuple<{anonymous}::pythonic::numpy::ndindex_iterator<2> > >’ {aka ‘const {anonymous}::pythonic::numpy::ndindex_iterator<2>’})
python-scipy:gnu-hpc:[ 16s] Lmod has detected the following error: The following module(s) are unknown:
python-setproctitle:[ 10s] src/c.h:18:14: error: ‘bool’ cannot be defined via ‘typedef’
python-sherpa:[ 35s] error: subprocess-exited-with-error
python-snimpy:python-sphinxcontrib-plantuml:python-thriftpy2:[ 97s] socket.gaierror: [Errno -3] Temporary failure in name resolution
python-tokenizers:[ 40s] error: subprocess-exited-with-error
python-torch:openmpi4:python-torch:standard:python-tpm2-pytss:[ 25s] error: subprocess-exited-with-error
python-tsk:[ 15s] error: command '/usr/bin/gcc' failed with exit code 1
python314:python314:nogil:qemacs:[ 8s] qe.c:2959:10: error: too many arguments to function ‘(void (*)(void))func’; expected 0, have 5
qemu:[ 3153s] include/nic.h:221:17: error: too many arguments to function ‘_unsafe_disable’; expected 0, have 2
qiv:[ 11s] main.c:211:19: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
qpdf:[ 49s] /home/abuild/rpmbuild/BUILD/qpdf-11.9.1/libtests/cxx11.cc:81:25: error: template argument 1 is invalid
qt-creator:qt6:[ 1194s] /home/abuild/rpmbuild/BUILD/qt-creator-opensource-src-15.0.0/src/libs/sqlite/sqlitebasestatement.h:416:43: error: ‘class Sqlite::StatementImplementation<BaseStatement, ResultCount, BindParameterCount>::BaseSqliteResultRange<ResultType>’ has no member named ‘resetter’ [-Wtemplate-body]
qt6-quick3d:[ 42s] /home/abuild/rpmbuild/BUILD/qtquick3d-everywhere-src-6.8.1/src/3rdparty/embree/kernels/common/../subdiv/bezier_curve.h:138:77: error: ‘const struct embree::QuadraticBezierCurve<V>’ has no member named ‘u’ [-Wtemplate-body]
qt6-shadertools:[ 16s] /home/abuild/rpmbuild/BUILD/qtshadertools-everywhere-src-6.8.1/src/3rdparty/glslang/SPIRV/SpvBuilder.h:444:28: error: ‘uint32_t’ has not been declared
quantum-espresso:openmpi4:[ 18s] qsort.c:29:15: error: assignment to ‘int (*)(unsigned int, unsigned int)’ from incompatible pointer type ‘int (*)(void)’ [-Wincompatible-pointer-types]
quantum-espresso:serial:[ 17s] qsort.c:29:15: error: assignment to ‘int (*)(unsigned int, unsigned int)’ from incompatible pointer type ‘int (*)(void)’ [-Wincompatible-pointer-types]
quota:[ 9s] rquota_svc.c:223:9: error: assignment to ‘void (*)(void)’ from incompatible pointer type ‘void (*)(struct host_info *)’ [-Wincompatible-pointer-types]
rabbitmq-server:racket:[ 416s] ../rktio/rktio_process.c:452:39: error: passing argument 2 of ‘rktio_set_signal_handler’ from incompatible pointer type [-Wincompatible-pointer-types]
rasmol:[ 13s] cif_fract.c:369:12: error: too many arguments to function ‘det’; expected 0, have 1
readline6:[ 14s] ../histlib.h:55:14: error: conflicting types for 'strchr'; have 'char *(void)'
remake:[ 22s] src/make.h:429:7: error: conflicting types for ‘getcwd’; have ‘char *(void)’
remmina:[ 28s] /usr/include/freerdp3/freerdp/codecs.h:93:42: error: expected identifier or ‘(’ before ‘rdpCodecs’
renameutils:[ 36s] hmap.c:389:13: error: too many arguments to function ‘iterator’; expected 0, have 1
renderdoc:[ 126s] /home/abuild/rpmbuild/BUILD/renderdoc-1.34/renderdoc/3rdparty/glslang/SPIRV/SpvBuilder.cpp:2179:6: error: no declaration matches ‘void spv::Builder::enterScope(uint32_t)’
rlwrap:[ 16s] readline.c:192:5: error: too many arguments to function ‘rl_message’; expected 0, have 1
rmt-server:[ 34s] database.c:750:84: error: passing argument 4 of ‘sqlite3_exec’ makes pointer
rnp:rocksdb:[ 26s] /home/abuild/rpmbuild/BUILD/rocksdb-9.10.0/db/blob/blob_file_meta.cc:57:41: error: ‘const class rocksdb::BlobFileMetaData’ has no member named ‘GetGarbageBlobBytes’
rott:[ 19s] ../../rott/rt_def.h:277:3: error: cannot use keyword ‘false’ as enumeration constant
rpcbind:[ 11s] src/security.c:119:9: error: assignment to ‘void (*)(void)’ from incompatible pointer type ‘void (*)(struct host_info *)’ [-Wincompatible-pointer-types]
rpcs3:[ 87s] /home/abuild/rpmbuild/BUILD/rpcs3-0.0.34~git20250110/3rdparty/glslang/glslang/SPIRV/SpvBuilder.h:430:21: error: ‘uint32_t’ has not been declared
rstudio:[ 66s] /home/abuild/rpmbuild/BUILD/rstudio-2024.04.0-735/src/cpp/core/http/Message.cpp:133:6: error: no declaration matches ‘void rstudio::core::http::Message::setHeader(const std::string&, uintmax_t)’
rsync:[ 45s] wildtest.c:35:14: error: ‘bool’ cannot be defined via ‘typedef’
rsyslog:[ 31s] glbl.c:1530:9: error: passing argument 4 of ‘regCfSysLineHdlr’ from incompatible pointer type [-Wincompatible-pointer-types]
rttr:[ 13s] /usr/include/c++/15/ciso646:46:4: error: #warning "<ciso646> is deprecated in C++17, use <version> to detect implementation-specific macros" [-Werror=cpp]
rubygem-passenger:[ 24s] src/cxx_supportlib/Algorithms/MovingAverage.h:193:58: error: ‘class Passenger::DiscExpMovingAverageWithStddev<alpha, alphaTimeUnit, maxAge>’ has no member named ‘sumOfWeights’ [-Wtemplate-body]
rust1.81:[ 80s] /home/abuild/rpmbuild/BUILD/rustc-1.81.0-src/src/llvm-project/llvm/include/llvm/ADT/STLExtras.h:2026:30: error: ‘class llvm::SmallVector<unsigned int, 4>’ has no member named ‘end’
rust1.81:test:[ 99s] /home/abuild/rpmbuild/BUILD/rustc-1.81.0-src/src/llvm-project/llvm/include/llvm/ADT/STLExtras.h:2026:30: error: ‘class llvm::SmallVector<unsigned int, 4>’ has no member named ‘end’
rust1.82:test:[ 2387s] cargo:warning=oniguruma/src/regparse.c:1932:24: error: passing argument 2 of ‘onig_st_foreach’ from incompatible pointer type [-Wincompatible-pointer-types]
rust1.83:test:[ 2038s] cargo:warning=oniguruma/src/regparse.c:1932:24: error: passing argument 2 of ‘onig_st_foreach’ from incompatible pointer type [-Wincompatible-pointer-types]
rzsz:[ 19s] error.c:205:30: error: too many arguments to function ‘strerror’; expected 0, have 1
samba:[ 251s] ../../libcli/smbreadline/smbreadline.c:139:50: error: assignment to ‘char ** (*)(const char *, int, int)’ from incompatible pointer type ‘char ** (*)(void)’ [-Wincompatible-pointer-types]
sane-backends:[ 59s] sm3600.h:80:16: error: cannot use keyword 'false' as enumeration constant
sbl:[ 11s] kbdsniff.c:36:11: error: too many arguments to function ‘gethostbyname’; expected 0, have 1
sblim-cmpi-base:[ 19s] OSBase_Common.c:279:7: error: too many arguments to function 'func'; expected 0, have 2
sblim-sfcb:[ 40s] providerMgr.c:1953:12: error: too many arguments to function 'UtilFactory->newList'; expected 0, have 2
sc-im:[ 11s] function.c:81:18: error: passing argument 1 of ‘fn2_eval’ from incompatible pointer type [-Wincompatible-pointer-types]
scalapack:gnu-mpich-hpc:[ 12s] Lmod has detected the following error: The following module(s) are unknown:
scalapack:gnu-mvapich2-hpc:[ 12s] Lmod has detected the following error: The following module(s) are unknown:
scalapack:gnu-openmpi4-hpc:[ 13s] Lmod has detected the following error: The following module(s) are unknown:
scalapack:gnu-openmpi5-hpc:[ 11s] Lmod has detected the following error: The following module(s) are unknown:
scalapack:mvapich2:[ 37s] reshape.c:101:6: error: conflicting types for ‘proc_inc’; have ‘void(int *, int *, int, int, int)’
scalapack:openmpi4:[ 38s] reshape.c:101:6: error: conflicting types for ‘proc_inc’; have ‘void(int *, int *, int, int, int)’
scalapack:openmpi5:[ 30s] reshape.c:101:6: error: conflicting types for ‘proc_inc’; have ‘void(int *, int *, int, int, int)’
schily:[ 157s] avoffset.c:84:24: error: passing argument 2 of 'signal' from incompatible pointer type [-Wincompatible-pointer-types]
scim:[ 42s] i18nMethod.c:480:17: error: too many arguments to function '_TransR[i].checkAddr'; expected 0, have 3
scitokens-cpp:[ 11s] /home/abuild/rpmbuild/BUILD/scitokens-cpp-0.6.3/vendor/jwt-cpp/include/jwt-cpp/base.h:172:33: error: ‘triple’ was not declared in this scope
scotch:gnu-hpc:[ 9s] Lmod has detected the following error: The following module(s) are unknown:
scotch:gnu-mpich-hpc:[ 13s] Lmod has detected the following error: The following module(s) are unknown:
scotch:gnu-mvapich2-hpc:[ 10s] Lmod has detected the following error: The following module(s) are unknown:
scotch:gnu-openmpi4-hpc:[ 10s] Lmod has detected the following error: The following module(s) are unknown:
scotch:mpich:[ 10s] arch.c:433:11: error: too many arguments to function ‘((const ArchClass *)((const Arch *)archptr)->class)->domSave’; expected 0, have 3
scotch:mvapich2:[ 10s] arch_sub.c:480:3: error: too many arguments to function ‘((Arch *)orgarchptr)->class->matchExit’; expected 0, have 1
scotch:openmpi4:[ 10s] arch.c:433:11: error: too many arguments to function ‘((const ArchClass *)((const Arch *)archptr)->class)->domSave’; expected 0, have 3
scotch:serial:[ 8s] arch_sub.c:480:3: error: too many arguments to function ‘((Arch *)orgarchptr)->class->matchExit’; expected 0, have 1
screen:[ 18s] socket.c:1466:12: error: too many arguments to function ‘getenv’; expected 0, have 1
scsh:[ 25s] c/syscalls.c:674:18: error: too many arguments to function ‘gethostname’; expected 0, have 2
scsh:base:[ 17s] c/syscalls.c:674:18: error: too many arguments to function ‘gethostname’; expected 0, have 2
scsires:[ 7s] scsires.h:66:3: error: expected ‘;’, identifier or ‘(’ before ‘bool’
sdcc:[ 133s] lkelf.c:857:1: error: conflicting types for ‘elf’; have ‘void(int)’
sdl_bomber:[ 11s] game.c:582:17: error: too many arguments to function ‘gen->draw’; expected 0, have 1
sendmail:[ 9s] ./include/libmilter/mfapi.h:98:17: error: ‘bool’ cannot be defined via ‘typedef’
sgmltool:[ 15s] sgmlsasp.c:40:17: error: too many arguments to function ‘getopt’; expected 0, have 3
sharutils:[ 40s] ./compat/compat.h:188:41: error: expected ‘;’, identifier or ‘(’ before ‘_Bool’
shntool:[ 10s] core_format.c:503:6: error: conflicting types for ‘clobber_check’; have ‘_Bool(char *)’
siege:[ 15s] browser.c:977:20: error: too many arguments to function ‘new_date’; expected 0, have 1
simple-multicast:[ 8s] ipv4/../compatibility.h:50:13: error: ‘bool’ cannot be defined via ‘typedef’
sleuthkit:[ 14s] crc.h:94:25: error: both ‘unsigned’ and ‘_Bool’ in declaration specifiers
smatch:[ 12s] smatch.h:813:21: error: macro ‘unreachable’ passed 1 arguments, but takes just 0
smc-tools:[ 6s] smc.c:147:13: error: too many arguments to function ‘gen_nl_open’; expected 0, have 1
smenu:[ 10s] ctxopt.c:4976:21: error: assignment to ‘int (*)(char *, int, char *, int, void **)’ from incompatible pointer type ‘int (*)(void)’ [-Wincompatible-pointer-types]
smilutils:[ 45s] blurzoom.c:309:5: error: conflicting types for ‘blurzoomEvent’; have ‘int(SDL_Event *)’
smssend:[ 18s] skyutils.h:40:22: error: 'bool' cannot be defined via 'typedef'
snapraid:[ 14s] raid/tag.c:143:37: error: passing argument 1 of ‘raid_tag’ from incompatible pointer type [-Wincompatible-pointer-types]
socat:[ 27s] xio-tcpwrap.c:150:4: error: assignment to ‘void (*)(void)’ from incompatible pointer type ‘void (*)(struct host_info *)’ [-Wincompatible-pointer-types]
solanum:[ 33s] dictionary.c:657:28: error: too many arguments to function 'dict->compare_cb'; expected 0, have 2
solarus:[ 17s] /home/abuild/rpmbuild/BUILD/solarus-1.6.5/src/audio/ItDecoder.cpp:137:61: error: ‘class CSoundFile’ has no member named ‘GetMusicTempo’
sonic-visualiser:[ 233s] ../piper-vamp-cpp/vamp-server/simple-server.cpp:748:33: error: ‘class piper_vamp::CountingPluginHandleMapper’ has no member named ‘pluginToHandle’
speech-dispatcher:[ 24s] history.c:304:55: error: passing argument 3 of ‘g_list_find_custom’ from incompatible pointer type [-Wincompatible-pointer-types]
spindle:[ 20s] ../../biter/biterc.c:223:11: error: too many arguments to function 'biterc_get_rank'; expected 0, have 1
splint:[ 10s] mtgrammar.c:1669:13: error: conflicting types for ‘yyprint’; have ‘void(FILE *, int, yystype)’
spu-tools:[ 8s] spu-top.c:419:25: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
sql-parser:[ 9s] bison_parser.y:99:2: error: ‘uintmax_t’ does not name a type
sqliteodbc:[ 14s] sqlite3odbc.c:18923:16: error: assignment to ‘void (*)(void)’ from incompatible pointer type ‘void (*)(char **)’ [-Wincompatible-pointer-types]
squidGuard:[ 18s] sgDiv.c:71:6: error: conflicting types for ‘sgAlarm’; have ‘void(int)’
src_vipa:[ 7s] src_vipa.c:1703:25: error: too many arguments to function ‘sinfo->entry->policy.policy_reset’; expected 0, have 1
srecord:[ 13s] /home/abuild/rpmbuild/BUILD/srecord-1.65.0-Source/./srecord/input/file/hp64k.h:82:21: error: ‘uint16_t’ has not been declared
sshguard:[ 9s] blocker.c:299:13: error: conflicting types for ‘sigfin_handler’; have ‘void(int)’
stalld:[ 7s] src/utils.c:385:6: error: conflicting types for ‘cleanup_regex’; have ‘void(unsigned int *, regex_t **)’ {aka ‘void(unsigned int *, struct re_pattern_buffer **)’}
stockfish:strace:[ 42s] bpf.c:765:38: error: initializer-string for array of ‘char’ is too long [-Werror=unterminated-string-initialization]
strongswan:[ 47s] processing/scheduler.c:332:87: error: passing argument 4 of 'callback_job_create_with_prio' from incompatible pointer type [-Wincompatible-pointer-types]
subversion:[ 112s] subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.c:1745:14: error: passing argument 3 of 'rb_iterate' from incompatible pointer type [-Wincompatible-pointer-types]
subversion:testsuite:[ 121s] subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.c:1745:14: error: passing argument 3 of 'rb_iterate' from incompatible pointer type [-Wincompatible-pointer-types]
sudo:[ 37s] ./policy.c:1351:44: error: initialization of 'int (*)(void)' from incompatible pointer type 'int (*)(char *, void *)' [-Wincompatible-pointer-types]
supercollider:[ 145s] /home/abuild/rpmbuild/BUILD/SuperCollider-3.13.0-Source/external_libraries/boost/boost/thread/future.hpp:4672:19: error: ‘struct boost::detail::run_it<FutureExecutorContinuationSharedState>’ has no member named ‘that’; did you mean ‘that_’? [-Wtemplate-body]
supercollider-sc3-plugins:[ 35s] /home/abuild/rpmbuild/BUILD/sc3-plugins-3.13.0-Source/source/NHUGens/nh_hall.hpp:711:22: error: ‘uint32_t’ has not been declared [-Wtemplate-body]
superlu:gnu-hpc:[ 10s] Lmod has detected the following error: The following module(s) are unknown:
supertuxkart:[ 210s] /home/abuild/rpmbuild/BUILD/SuperTuxKart-1.4-src/src/race/race_manager.hpp:872:32: error: ‘HANDICAP_NONE’ was not declared in this scope
symmetrica:[ 22s] macro.h:805:16: error: too many arguments to function 'error_during_computation_code'; expected 0, have 2
syslinux:[ 84s] include/nic.h:211:17: error: too many arguments to function ‘_unsafe_disable’; expected 0, have 2
syslogd:[ 8s] syslogd.c:2372:58: error: passing argument 2 of ‘resignal’ from incompatible pointer type [-Wincompatible-pointer-types]
taskwarrior:[ 19s] /home/abuild/rpmbuild/BUILD/task-3.1.0/src/libshared/src/Timer.h:49:61: error: template argument 2 is invalid
tclx:[ 16s] ./unix/tclXunixSock.c:361:43: error: passing argument 5 of ‘tclStubsPtr->tcl_CreateCommand’ from incompatible pointer type [-Wincompatible-pointer-types]
tcpd:[ 7s] hosts_access.c:512:5: error: conflicting types for ‘match_pattern_ylo’; have ‘int(const char *, const char *)’
tcpreplay:[ 25s] ./compat/compat.h:188:19: error: cannot use keyword ‘false’ as enumeration constant
tdom:[ 10s] ../generic/dom.c:5733:33: error: expected expression before ‘bool’
termcap:[ 8s] tparam.c:127:10: error: too many arguments to function ‘tparam1’; expected 0, have 6
tetrinet-server:[ 7s] main.c:3283:9: error: too many arguments to function ‘init_allowlist’; expected 0, have 2
texinfo:[ 26s] ../system.h:69:14: error: conflicting types for ‘strerror’; have ‘char *(void)’
tftp:[ 16s] tftpd.c:959:5: error: assignment to ‘void (*)(void)’ from incompatible pointer type ‘void (*)(struct host_info *)’ [-Wincompatible-pointer-types]
thrift:[ 75s] src/thrift/concurrency/Mutex.cpp:53:6: error: no declaration matches ‘bool apache::thrift::concurrency::Mutex::timedlock(int64_t) const’
time:[ 18s] src/time.c:758:20: error: passing argument 2 of 'signal' from incompatible pointer type [-Wincompatible-pointer-types]
timidity:[ 22s] nkflib.c:1829:1: error: conflicting types for ‘line_fold’; have ‘int(int, int)’
tnef:[ 12s] attr.c:242:1: error: conflicting types for ‘attr_read’; have ‘Attr *(FILE *)’
touchegg:[ 16s] /home/abuild/rpmbuild/BUILD/touchegg-2.0.17/src/animations/animation.h:76:3: error: ‘uint64_t’ does not name a type
transconnect:[ 7s] tconn.c:662:16: error: too many arguments to function ‘func’; expected 0, have 3
tvheadend:[ 15s] src/htsmsg.h:77:9: error: ‘bool’ cannot be used here
tvm:[ 1475s] /home/abuild/rpmbuild/BUILD/tvm-0.17.0/include/tvm/tir/expr_functor.h:154:48: error: control reaches end of non-void function [-Werror=return-type]
twin:[ 29s] findtwin.c:62:17: error: passing argument 4 of ‘scandir’ from incompatible pointer type [-Wincompatible-pointer-types]
twind:[ 10s] twind.c:394:21: error: too many arguments to function ‘cleanup_and_exit’; expected 0, have 1
uasm:[ 7s] H/bool.h:35:27: error: ‘bool’ cannot be defined via ‘typedef’
ucblogo:[ 18s] coms.c:575:33: error: passing argument 5 of ‘make_strnode’ from incompatible pointer type [-Wincompatible-pointer-types]
uget:[ 17s] UgtkSettingDialog.c:50:21: error: conflicting types for ‘ugtk_setting_dialog_new’; have ‘UgtkSettingDialog *(const gchar *, GtkWindow *)’ {aka ‘UgtkSettingDialog *(const char *, struct _GtkWindow *)’}
uhd:[ 139s] /usr/include/c++/15/bits/stl_construct.h:133:7: error: invalid new-expression of abstract class type ‘uhd::rfnoc::mpmd_mb_controller::ref_clk_calibration’
uim:[ 68s] uim-scm-sigscheme.c:1282:27: error: passing argument 2 of 'scm_register_func' from incompatible pointer type [-Wincompatible-pointer-types]
unclutter:[ 7s] unclutter.c:196:24: error: assignment to ‘int (*)(void)’ from incompatible pointer type ‘XErrorHandler’ {aka ‘int (*)(Display *, XErrorEvent *)’} [-Wincompatible-pointer-types]
unifdef:[ 7s] unifdef.c:1178:1: error: control reaches end of non-void function [-Werror=return-type]
units:[ 9s] units.c:7251:17: error: too many arguments to function ‘strchr’; expected 0, have 2
unixODBC:[ 42s] md5.h:25:14: error: 'bool' cannot be defined via 'typedef'
unzip:[ 6s] unix/unxcfg.h:120:26: error: conflicting types for ‘localtime’; have ‘struct tm *(void)’
unzip:unzip-rcc:[ 7s] unix/unxcfg.h:120:26: error: conflicting types for ‘localtime’; have ‘struct tm *(void)’
usb_modeswitch:[ 7s] usb_modeswitch.c:775:52: error: too many arguments to function ‘get_current_config_value’; expected 0, have 1
uucp:[ 27s] cmdarg.c:69:14: error: assignment to ‘int (*)(const char *, const char *)’ from incompatible pointer type ‘int (*)(void)’ [-Wincompatible-pointer-types]
uudeview:[ 15s] crc32.c:91:9: error: conflicting types for ‘crc32’; have ‘crc32_t(crc32_t, const unsigned char *, unsigned int)’ {aka ‘long unsigned int(long unsigned int, const unsigned char *, unsigned int)’}
uwsgi:[ 19s] core/emperor.c:1685:36: error: passing argument 2 of ‘uwsgi_unix_signal’ from incompatible pointer type [-Wincompatible-pointer-types]
varnish:[ 31s] vcc_std_if.h:107:37: error: declaration does not declare anything [-Werror]
vde2:[ 25s] libvdehist.c:544:49: error: too many arguments to function 'vdehist_termwrite'; expected 0, have 3
vendor-reset:[ 25s] /home/abuild/rpmbuild/BUILD/vendor-reset-0.1.0+084881c/src/amd/amdgpu/atom.c:32:10: fatal error: asm/unaligned.h: No such file or directory
vifm:[ 32s] int/term_title.c:370:39: error: passing argument 1 of ‘XSetErrorHandlerWrapper’ from incompatible pointer type [-Wincompatible-pointer-types]
vigra:[ 53s] /home/abuild/rpmbuild/BUILD/vigra-Version-1-11-2/include/vigra/random_access_set.hxx:404:44: error: ‘class vigra::RandomAccessSet<Key, Compare, Alloc>’ has no member named ‘operator()’; did you mean ‘operator=’? [-Wtemplate-body]
vim:[ 51s] if_ruby.c:1792:43: error: passing argument 2 of ‘dll_rb_define_virtual_variable’ from incompatible pointer type [-Wincompatible-pointer-types]
virt-v2v:virtualbox:[ 52s] /home/abuild/rpmbuild/BUILD/VirtualBox-7.1.4/include/iprt/types.h:285:15: error: ‘bool’ cannot be defined via ‘typedef’
vms-empire:[ 9s] edit.c:140:13: error: too many arguments to function ‘direction’; expected 0, have 1
voms:[ 23s] sslutils.c:3096:46: error: passing argument 3 of 'PEM_read_PrivateKey' from incompatible pointer type [-Wincompatible-pointer-types]
vsftpd:[ 8s] ssl.c:692:13: error: conflicting types for ‘setup_bio_callbacks’; have ‘void(SSL *)’ {aka ‘void(struct ssl_st *)’}
vtk-m:[ 464s] /home/abuild/rpmbuild/BUILD/vtk-m-v2.2.0/vtkm/filter/contour/worklet/mir/MIRTables.h:11405:20: error: ‘const class vtkm::worklet::MIRCases::MIRTables::MIRDevicePortal<DeviceAdapter>’ has no member named ‘CellFacePortal’; did you mean ‘CellEdgesPortal’? [-Wtemplate-body]
vtk-m:mpich:[ 509s] /home/abuild/rpmbuild/BUILD/vtk-m-v2.2.0/vtkm/filter/contour/worklet/mir/MIRTables.h:11405:20: error: ‘const class vtkm::worklet::MIRCases::MIRTables::MIRDevicePortal<DeviceAdapter>’ has no member named ‘CellFacePortal’; did you mean ‘CellEdgesPortal’? [-Wtemplate-body]
vtk-m:openmpi4:[ 15s] /home/abuild/rpmbuild/BUILD/vtk-m-v2.2.0/vtkm/thirdparty/diy/vtkmdiy/include/vtkmdiy/thirdparty/itlib/small_vector.hpp:204:22: error: ‘intptr_t’ does not name a type [-Wtemplate-body]
w3m:[ 17s] conv.c:101:18: error: too many arguments to function ‘st.ces_info->push_to’; expected 0, have 3
w_scan:[ 9s] tools.h:36:15: error: ‘bool’ cannot be defined via ‘typedef’
wadptr:[ 10s] waddir.c:30:8: error: cannot use keyword ‘false’ as enumeration constant
warewulf:modules:[ 7s] error: perl-warewulf-common-3.8.1-13.3.noarch: install failed
warzone2100:[ 4179s] /home/abuild/rpmbuild/BUILD/warzone2100/3rdparty/SQLiteCpp/src/Column.cpp:59:1: error: ‘uint32_t’ does not name a type
wdiff:[ 24s] mdiff.c:56:7: error: conflicting types for 'strstr'; have 'char *(void)'
wdisplays:[ 12s] ../src/outputs.c:609:18: error: initialization of ‘void (*)(void *, struct zxdg_output_v1 *, const char *)’ from incompatible pointer type ‘void (*)(void)’ [-Wincompatible-pointer-types]
webrtc-audio-processing:[ 12s] ../webrtc/api/task_queue/task_queue_base.h:53:32: error: ‘uint32_t’ has not been declared
weechat:wesnoth:[ 132s] /home/abuild/rpmbuild/BUILD/wesnoth-1.18.3/src/filesystem.hpp:206:20: error: template argument 2 is invalid
widelands:[ 38s] /home/abuild/rpmbuild/BUILD/widelands-1.2.1/src/third_party/eris/eris.c:33:13: error: ‘bool’ cannot be defined via ‘typedef’
wizznic:[ 11s] src/credits.c:124:6: error: conflicting types for ‘initCredits’; have ‘void(SDL_Surface *)’
wlopm:[ 8s] wlopm.c:170:26: error: initialization of ‘void (*)(void *, struct wl_registry *, uint32_t)’ {aka ‘void (*)(void *, struct wl_registry *, unsigned int)’} from incompatible pointer type ‘void (*)(void)’ [-Wincompatible-pointer-types]
woff2:[ 9s] /home/abuild/rpmbuild/BUILD/woff2-1.0.2/src/woff2_out.cc:61:15: error: ‘buf_’ was not declared in this scope; did you mean ‘buf’?
wol:[ 15s] realloc.c:43:10: error: too many arguments to function ‘realloc’; expected 0, have 2
wpebackend-fdo:[ 12s] ../src/ipc.cpp:89:68: error: ‘message’ was not declared in this scope; did you mean ‘g_message’?
wyrmgus:[ 76s] /home/abuild/rpmbuild/BUILD/Wyrmgus-5.3.6/src/database/database.cpp:761:1: internal compiler error: in gimplify_var_or_parm_decl, at gimplify.cc:3346
x2x:[ 11s] x2x.c:2539:22: error: too many arguments to function ‘xmalloc’; expected 0, have 1
x3270:[ 46s] x026.c:606:18: error: initialization of ‘void (*)(int)’ from incompatible pointer type ‘void (*)(void)’ [-Wincompatible-pointer-types]
xalan-c:[ 21s] /home/abuild/rpmbuild/BUILD/xalan_c-1.12/src/xalanc/XMLSupport/XalanOtherEncodingWriter.hpp:329:31: error: ‘class xalanc_1_12::XalanOtherEncodingWriter<Predicate, ConstantsType>’ has no member named ‘writeNumberedEntityReference’ [-Wtemplate-body]
xcb:[ 7s] xcb.c:1013:16: error: too many arguments to function ‘fn’; expected 0, have 3
xcolors:[ 8s] xcolors.c:285:10: error: prototype declaration
xcoral:[ 7s] xcoral.c:377:28: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
xemacs:[ 143s] /home/abuild/rpmbuild/BUILD/xemacs-21.5.34/lib-src/ootags.c:184:13: error: 'bool' cannot be defined via 'typedef'
xengine:[ 7s] xengine.c:64:29: error: prototype declaration
xfishtank:[ 8s] medcut.h:8:13: error: prototype declaration
xfstests:[ 14s] string_to_tokens.c:71:37: error: too many arguments to function 'strtok'; expected 0, have 2
xh:[ 47s] cargo:warning=oniguruma/src/regparse.c:1932:24: error: passing argument 2 of 'onig_st_foreach' from incompatible pointer type [-Wincompatible-pointer-types]
xine-lib:[ 39s] ../input/input_file.c:924:61: error: passing argument 4 of 'qsort' from incompatible pointer type [-Wincompatible-pointer-types]
xinetd:[ 11s] src/builtins.h:33:41: error: too many arguments to function ‘(void (*)(void))scp->sc_builtin->b_handler’; expected 0, have 1
xl2tpd:[ 7s] xl2tpd.c:91:35: error: initialization of ‘int (*)(FILE *, char *)’ from incompatible pointer type ‘int (*)(void)’ [-Wincompatible-pointer-types]
xless:[ 8s] regexp.c:1124:17: error: too many arguments to function ‘regerror’; expected 0, have 1
xmgrace:[ 20s] jv.c:823:1: error: too many arguments to function ‘airy’; expected 0, have 5
xmlrpc-c:[ 12s] srcdir/lib/util/include/bool.h:15:3: error: expected ‘;’, identifier or ‘(’ before ‘bool’
xmoontool:[ 10s] xmoontool.c:1124:5: error: too many arguments to function ‘jyear’; expected 0, have 4
xonotic:[ 28s] ../../../qtypes.h:9:26: error: cannot use keyword ‘false’ as enumeration constant
xprompt:[ 8s] xprompt.c:583:20: error: too many arguments to function ‘get_user_text_translations’; expected 0, have 1
xquarto:[ 8s] xquarto.c:1365:13: error: conflicting types for ‘UndoProc’; have ‘void(struct _WidgetRec *, void *, void *)’
xreader:[ 123s] /usr/include/kpathsea/c-std.h:58:51: error: conflicting types for ‘realloc’; have ‘void *(void)’
xsane:xselection:[ 8s] xselection.c:550:25: error: too many arguments to function ‘send_selection’; expected 0, have 4
xsession:[ 9s] exec.c:1109:21: error: assignment to ‘__sighandler_t’ {aka ‘void (*)(int)’} from incompatible pointer type ‘void (*)(void)’ [-Wincompatible-pointer-types]
xtermset:[ 11s] xtermset.c:242:6: error: conflicting types for ‘set_geom’; have ‘void(char *)’
xtexit:[ 7s] xtexit.c:96:14: error: initialization of ‘void (*)(struct _WidgetRec *, XEvent *, char **, Cardinal *)’ {aka ‘void (*)(struct _WidgetRec *, XEvent *, char **, unsigned int *)’} from incompatible pointer type ‘void (*)(void)’ [-Wincompatible-pointer-types]
xvidcore:[ 9s] ../../src/encoder.h:45:13: error: ‘bool’ cannot be defined via ‘typedef’
yamagi-quake2-ctf:[ 10s] /home/abuild/rpmbuild/BUILD/quake2-ctf-1.10/src/player/../header/shared.h:40:15: error: cannot use keyword ‘false’ as enumeration constant
yaml-cpp:[ 9s] /home/abuild/rpmbuild/BUILD/yaml-cpp-0.8.0/src/emitterutils.cpp:247:55: error: request for member ‘second’ in ‘surrogatePair’, which is of non-class type ‘int’
yasm:[ 11s] ./libyasm/bitvect.h:86:32: error: cannot use keyword ‘false’ as enumeration constant
yaz:[ 21s] cql2ccl.c:242:16: error: expected expression before 'bool'
yazi:[ 67s] cargo:warning=oniguruma/src/regparse.c:1932:24: error: passing argument 2 of ‘onig_st_foreach’ from incompatible pointer type [-Wincompatible-pointer-types]
ytree:[ 8s] filewin.c:2907:16: error: too many arguments to function ‘fkt’; expected 0, have 2
zig:[ 14s] fatal error: too many errors emitted, stopping now [-ferror-limit=]
zimg:zola:[ 75s] cargo:warning=oniguruma/src/st.c:500:23: error: too many arguments to function ‘func’; expected 0, have 3
zoo:[ 7s] comment.c:127:23: error: passing argument 2 of ‘signal’ from incompatible pointer type [-Wincompatible-pointer-types]
zug:[ 48s] /home/abuild/rpmbuild/BUILD/zug-0.1.1/zug/sequence.hpp:75:33: error: ‘struct zug::detail::sequence_data<ValueT, XformT>’ has no member named ‘impl’; did you mean ‘impl_’? [-Wtemplate-body]
zxcvbn:[ 9s] dict-generate.cpp:1744:57: error: request for member ‘size’ in ‘NodeData’, which is of non-class type ‘Uint64Vect’ {aka ‘int’}
2
1
All,
I'm trying to update my package gphotos-sync to the latest release,
jumping from 2.x > 3.x, and the %install is failing during the
%python_clone routine when setting the update-alternatives link, but
from the logs it should be setting the link for python 3.10, but the
it's trying to copy it to python 3.12.
I'm pretty rusty at packaging at this point, having not done it
regularly for a few years, so I'm hoping someone can point me in the
right direction to resolve this. Any assistance is greatly
appreciated.
Thanks!
[ 21s] ++ realpath /usr/bin/python3.10
[ 21s] + sed -ri '1s@#!.*python\S*@#!/usr/bin/python3.10@'
/home/abuild/rpmbuild/BUILDROOT/python-gphotos-sync-3.2.5-2.1.x86_64/usr/bin/gphotos-sync-3.10
[ 21s] + cp /home/abuild/rpmbuild/BUILDROOT/python-gphotos-sync-3.2.5-2.1.x86_64/usr/bin/gphotos-sync
/home/abuild/rpmbuild/BUILDROOT/python-gphotos-sync-3.2.5-2.1.x86_64/usr/bin/gphotos-sync-3.12
[ 21s] cp: cannot stat
'/home/abuild/rpmbuild/BUILDROOT/python-gphotos-sync-3.2.5-2.1.x86_64/usr/bin/gphotos-sync':
No such file or directory
[ 21s] error: Bad exit status from /var/tmp/rpm-tmp.rbcznG (%install)
[ 21s]
[ 21s] RPM build errors:
[ 21s] Bad exit status from /var/tmp/rpm-tmp.rbcznG (%install)
ls -l /var/tmp/build-root/openSUSE_Tumbleweed-x86_64/home/abuild/rpmbuild/BUILDROOT/python-gphotos-sync-3.2.5-0.x86_64/usr/bin/
total 20
lrwxrwxrwx 1 399 399 30 Jan 7 07:00 gphotos-sync ->
/etc/alternatives/gphotos-sync
-rwxr-xr-x 1 399 399 223 Jan 7 07:00 gphotos-sync-3.10
-rwxr-xr-x 1 399 399 223 Jan 7 07:00 gphotos-sync-3.11
-rwxr-xr-x 1 399 399 223 Jan 7 07:00 gphotos-sync-3.12
-rwxr-xr-x 1 399 399 223 Jan 7 07:00 gphotos-sync-3.13
Subproject: https://build.opensuse.org/project/show/home:deadpoint:gphotos-sync
Build logs: https://build.opensuse.org/package/live_build_log/home:deadpoint:gphotos-sy…
--
Later,
Darin
4
4
Hello.
The cpuset package [1] [2] was (is) used to manage cpuset hierarchies.
It lacks support for cpuset cgroup v2 though. The package had been
useful in times before systemd added cpuset support. The Tumbleweed
kernel configuration (and upstream default) disable CONFIG_CPUSETS_V1
nowaday, so there's little use of cpuset package on such kernels.
Therefore, I'd like to drop it eventually from openSUSE Tumbleweed
(following [3], i.e. this message).
Note, cpuset tool can be used for "shielding" by the way of global
cpuset migrations, which is possible yet not conventient with systemd
too. I personally think it's better to spend efforts on [4] than on
keeping the cpuset package.
Also, speak up if you have a scenario where you use cpuset (where I
assume you must also run custom configured openSUSE TW kernel nowadays).
Regards,
Michal
P.S. Please keep me explicitly Cc'd.
[1] https://build.opensuse.org/package/show/openSUSE:Factory/cpuset
[2] https://github.com/SUSE/cpuset
[3] https://en.opensuse.org/openSUSE:Factory_drop_policy#Checking_if_others_nee…
[4] https://github.com/systemd/systemd/issues/31150
1
0