Your message dated Thu, 11 Sep 2025 16:24:07 +0000
with message-id <[email protected]>
and subject line Bug#1098046: fixed in urdfdom 4.0.0-4
has caused the Debian Bug report #1098046,
regarding urdfdom: ftbfs with GCC-15
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1098046: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1098046
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:urdfdom
Version: 4.0.0-3
Severity: important
Tags: sid forky
User: [email protected]
Usertags: ftbfs-gcc-15
[This bug is NOT targeted to the upcoming trixie release]
Please keep this issue open in the bug tracker for the package it
was filed for. If a fix in another package is required, please
file a bug for the other package (or clone), and add a block in this
package. Please keep the issue open until the package can be built in
a follow-up test rebuild.
The package fails to build in a test rebuild on at least amd64 with
gcc-15/g++-15, but succeeds to build with gcc-14/g++-14. The
severity of this report will be raised before the forky release.
The full build log can be found at:
http://qa-logs.debian.net/2025/02/16/amd64exp/urdfdom_4.0.0-3_unstable_gccexp.log.gz
The last lines of the build log are at the end of this report.
To build with GCC 15, either set CC=gcc-15 CXX=g++-15 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.
apt-get -t=experimental install g++
GCC 15 now defaults to the C23/C++23 standards, exposing many FTBFS.
Other Common build failures are new warnings resulting in build failures
with -Werror turned on, or new/dropped symbols in Debian symbols files.
For other C/C++ related build failures see the porting guide at
http://gcc.gnu.org/gcc-15/porting_to.html
[...]
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:102:3:
error: ‘uint32_t’ does not name a type
102 | uint32_t getMajor() const
| ^~~~~~~~
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:102:3:
note: ‘uint32_t’ is defined in header ‘<cstdint>’; this is probably fixable by
adding ‘#include <cstdint>’
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:107:3:
error: ‘uint32_t’ does not name a type
107 | uint32_t getMinor() const
| ^~~~~~~~
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:107:3:
note: ‘uint32_t’ is defined in header ‘<cstdint>’; this is probably fixable by
adding ‘#include <cstdint>’
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:113:3:
error: ‘uint32_t’ does not name a type
113 | uint32_t strToUnsigned(const char *str)
| ^~~~~~~~
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:113:3:
note: ‘uint32_t’ is defined in header ‘<cstdint>’; this is probably fixable by
adding ‘#include <cstdint>’
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:142:3:
error: ‘uint32_t’ does not name a type
142 | uint32_t major_;
| ^~~~~~~~
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:142:3:
note: ‘uint32_t’ is defined in header ‘<cstdint>’; this is probably fixable by
adding ‘#include <cstdint>’
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:143:3:
error: ‘uint32_t’ does not name a type
143 | uint32_t minor_;
| ^~~~~~~~
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:143:3:
note: ‘uint32_t’ is defined in header ‘<cstdint>’; this is probably fixable by
adding ‘#include <cstdint>’
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:
In constructor ‘urdf_export_helpers::URDFVersion::URDFVersion(const char*)’:
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:78:7:
error: ‘major_’ was not declared in this scope
78 | major_ = 1;
| ^~~~~~
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:79:7:
error: ‘minor_’ was not declared in this scope
79 | minor_ = 0;
| ^~~~~~
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:88:7:
error: ‘major_’ was not declared in this scope
88 | major_ = strToUnsigned(split[0].c_str());
| ^~~~~~
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:88:16:
error: ‘strToUnsigned’ was not declared in this scope
88 | major_ = strToUnsigned(split[0].c_str());
| ^~~~~~~~~~~~~
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:89:7:
error: ‘minor_’ was not declared in this scope
89 | minor_ = strToUnsigned(split[1].c_str());
| ^~~~~~
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:
In member function ‘bool urdf_export_helpers::URDFVersion::equal(int, int)’:
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:99:18:
error: ‘class urdf_export_helpers::URDFVersion’ has no member named ‘major_’
99 | return this->major_ == maj && this->minor_ == min;
| ^~~~~~
/build/reproducible-path/urdfdom-4.0.0/urdf_parser/include/urdf_parser/urdf_parser.h:99:41:
error: ‘class urdf_export_helpers::URDFVersion’ has no member named ‘minor_’
99 | return this->major_ == maj && this->minor_ == min;
| ^~~~~~
make[3]: *** [urdf_parser/CMakeFiles/urdfdom_model.dir/build.make:96:
urdf_parser/CMakeFiles/urdfdom_model.dir/src/model.cpp.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [urdf_parser/CMakeFiles/urdfdom_model.dir/build.make:110:
urdf_parser/CMakeFiles/urdfdom_model.dir/src/link.cpp.o] Error 1
make[3]: Leaving directory
'/build/reproducible-path/urdfdom-4.0.0/obj-x86_64-linux-gnu'
make[2]: *** [CMakeFiles/Makefile2:225:
urdf_parser/CMakeFiles/urdfdom_world.dir/all] Error 2
make[2]: *** Waiting for unfinished jobs....
[ 38%] Linking CXX shared library
../lib/x86_64-linux-gnu/liburdfdom_model_state.so
cd /build/reproducible-path/urdfdom-4.0.0/obj-x86_64-linux-gnu/urdf_parser &&
/usr/bin/cmake -E cmake_link_script CMakeFiles/urdfdom_model_state.dir/link.txt
--verbose=1
/usr/bin/c++ -fPIC -g -O2
-ffile-prefix-map=/build/reproducible-path/urdfdom-4.0.0=.
-fstack-protector-strong -fstack-clash-protection -Wformat
-Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2
-fvisibility=hidden
-Wl,--dependency-file=CMakeFiles/urdfdom_model_state.dir/link.d -Wl,-z,relro
-Wl,-z,now -shared -Wl,-soname,liburdfdom_model_state.so.4.0 -o
../lib/x86_64-linux-gnu/liburdfdom_model_state.so.4.0
CMakeFiles/urdfdom_model_state.dir/src/urdf_model_state.cpp.o
CMakeFiles/urdfdom_model_state.dir/src/twist.cpp.o
/usr/lib/x86_64-linux-gnu/libconsole_bridge.so.1.0
/usr/lib/x86_64-linux-gnu/libtinyxml2.so.10.0.0
cd /build/reproducible-path/urdfdom-4.0.0/obj-x86_64-linux-gnu/urdf_parser &&
/usr/bin/cmake -E cmake_symlink_library
../lib/x86_64-linux-gnu/liburdfdom_model_state.so.4.0
../lib/x86_64-linux-gnu/liburdfdom_model_state.so.4.0
../lib/x86_64-linux-gnu/liburdfdom_model_state.so
make[3]: Leaving directory
'/build/reproducible-path/urdfdom-4.0.0/obj-x86_64-linux-gnu'
[ 38%] Built target urdfdom_model_state
make[3]: Leaving directory
'/build/reproducible-path/urdfdom-4.0.0/obj-x86_64-linux-gnu'
make[2]: *** [CMakeFiles/Makefile2:257:
urdf_parser/CMakeFiles/urdfdom_model.dir/all] Error 2
[ 41%] Linking CXX static library ../../lib/x86_64-linux-gnu/libgtest.a
cd /build/reproducible-path/urdfdom-4.0.0/obj-x86_64-linux-gnu/urdf_parser/test
&& /usr/bin/cmake -P CMakeFiles/gtest.dir/cmake_clean_target.cmake
cd /build/reproducible-path/urdfdom-4.0.0/obj-x86_64-linux-gnu/urdf_parser/test
&& /usr/bin/cmake -E cmake_link_script CMakeFiles/gtest.dir/link.txt --verbose=1
/usr/bin/ar qc ../../lib/x86_64-linux-gnu/libgtest.a
"CMakeFiles/gtest.dir/usr/src/googletest/googletest/src/gtest-all.cc.o"
/usr/bin/ranlib ../../lib/x86_64-linux-gnu/libgtest.a
make[3]: Leaving directory
'/build/reproducible-path/urdfdom-4.0.0/obj-x86_64-linux-gnu'
[ 41%] Built target gtest
make[2]: Leaving directory
'/build/reproducible-path/urdfdom-4.0.0/obj-x86_64-linux-gnu'
make[1]: *** [Makefile:149: all] Error 2
make[1]: Leaving directory
'/build/reproducible-path/urdfdom-4.0.0/obj-x86_64-linux-gnu'
dh_auto_build: error: cd obj-x86_64-linux-gnu && make -j8 "INSTALL=install
--strip-program=true" VERBOSE=1 returned exit code 2
make: *** [debian/rules:7: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: urdfdom
Source-Version: 4.0.0-4
Done: Jose Luis Rivero <[email protected]>
We believe that the bug you reported is fixed in the latest version of
urdfdom, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Jose Luis Rivero <[email protected]> (supplier of updated urdfdom
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Thu, 11 Sep 2025 15:23:12 +0000
Source: urdfdom
Built-For-Profiles: noudeb
Architecture: source
Version: 4.0.0-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers
<[email protected]>
Changed-By: Jose Luis Rivero <[email protected]>
Closes: 1098046
Changes:
urdfdom (4.0.0-4) unstable; urgency=medium
.
* Add patch for gcc15 (Closes: #1098046)
Checksums-Sha1:
d33da7f6eb478eb03083658ccbb9fcb13666904b 2495 urdfdom_4.0.0-4.dsc
08eaedd86974b65c5cc5de5f422384eeca3de29d 5244 urdfdom_4.0.0-4.debian.tar.xz
45cda6fb5a04a65354c47e35fc022fddc99e0ad4 8447 urdfdom_4.0.0-4_source.buildinfo
Checksums-Sha256:
e8ac00126be85099728dbc9ad106f35ddea546ce139e1a30199ce990819cb114 2495
urdfdom_4.0.0-4.dsc
062c307dc6a34ce2ee9bc2fe46b8c062344858f9ecdc05ce10635078c112ebd4 5244
urdfdom_4.0.0-4.debian.tar.xz
7a474eec10eaf34a495d1cc00c1fe3a80574efeecb08c389b0aba3ffdd82c882 8447
urdfdom_4.0.0-4_source.buildinfo
Files:
f18b656aa1b2ba0ea2f6d80f3d458d19 2495 libs optional urdfdom_4.0.0-4.dsc
699f6c95c9fa9a8cde0ed17659dc164d 5244 libs optional
urdfdom_4.0.0-4.debian.tar.xz
e5fbd19b3e3ff135227379f0475c3ab8 8447 libs optional
urdfdom_4.0.0-4_source.buildinfo
-----BEGIN PGP SIGNATURE-----
iQJOBAEBCgA4FiEEAdpEaaCpcexeTaBvVJmeqbzejJQFAmjC8GMaHGpyaXZlcm9A
b3NyZm91bmRhdGlvbi5vcmcACgkQVJmeqbzejJSHrQ/9HgFL0ujL2r8b+6E3LsNv
oaoSfpc9+hQwMfVZrvePTVup0FZWH0FGco5tB5s5Klca4Yt0UZILq+Fa/GjPp646
MtlsKP9rp9hkwk3WAYe5XvbLhMAa8L40ZGNygRsNmb+rr/N4lreBqTcw65UfGbsH
boZo4Ihl9QeZv/p8q6C203TcdS3WSf/xyDzEPmQw6jHure5jnQbHg1qCdOhxA2BM
1FA8zuwnVVx5jNEAO1xCcShVnu3W8C4Pi8J9EIKqOcbMgVrl3g8gN6xatWqcvb4k
QhB2AXgtSnx0Lq/G1a7IBU+lWPc96DBSaph4p/vvU6Kfp2oY973sSS1qZpxHGe6w
Kt776cu28zgflnTcb7Y7Mx4V9FH2CaT0GWrLD+Y4FAwuNz0Q2q60YYLHWxh5Ukgi
ipx794r5pdqVy7bWrp8/6W7IaxObiBZvE6TE89iXUej0mdbzesyiGqpOWZiP+Rsd
C2j3Mocc9tWgbsCoaIcozwyFAy8ZfBeVnMfHs6dqXL/Isc5KOVB7kNLcZnUpZMFK
2+q75ZmIngfnHwBXRwIBeX6JvV+tKptZZbrx2U102B0400d3ZjsGlvHLLCr634No
rxqZD5sWVGMtsLzOPmbeDLKLKincfsuhnZU4rFkkauEMlCqHPZt1kQLnWjz1utnh
2f4roaOy4iW9auh+Ka6T9iw=
=KE2q
-----END PGP SIGNATURE-----
pgpRrY48vZM1a.pgp
Description: PGP signature
--- End Message ---