[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#1097506: onnxruntime: ftbfs with GCC-15



Package: src:onnxruntime
Version: 1.19.2+dfsg-9
Severity: important
Tags: sid forky
User: debian-gcc@lists.debian.org
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/onnxruntime_1.19.2+dfsg-9_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/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/transpose_optimization/onnx_transpose_optimization.cc:45:60: error: cannot convert ‘std::vector<unsigned char>’ to ‘const int&’
   45 |   return graph.AddInitializer(api::DataType::INT64, shape, data);
      |                                                            ^~~~
      |                                                            |
      |                                                            std::vector<unsigned char>
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/transpose_optimization/optimizer_api.h:402:71: note: initializing argument 3 of ‘virtual std::string_view onnx_transpose_optimization::api::GraphRef::AddInitializer(onnx_transpose_optimization::api::DataType, const std::vector<long int>&, const int&)’
  402 |                                           const std::vector<uint8_t>& data) = 0;
      |                                           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/transpose_optimization/onnx_transpose_optimization.cc: In function ‘std::string_view onnx_transpose_optimization::AddInitializerInt32(api::GraphRef&, const std::vector<long int>&, const std::vector<int>&)’:
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/transpose_optimization/onnx_transpose_optimization.cc:52:60: error: cannot convert ‘std::vector<unsigned char>’ to ‘const int&’
   52 |   return graph.AddInitializer(api::DataType::INT32, shape, data);
      |                                                            ^~~~
      |                                                            |
      |                                                            std::vector<unsigned char>
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/transpose_optimization/optimizer_api.h:402:71: note: initializing argument 3 of ‘virtual std::string_view onnx_transpose_optimization::api::GraphRef::AddInitializer(onnx_transpose_optimization::api::DataType, const std::vector<long int>&, const int&)’
  402 |                                           const std::vector<uint8_t>& data) = 0;
      |                                           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/transpose_optimization/onnx_transpose_optimization.cc: In function ‘bool onnx_transpose_optimization::CheckQDQNodePairMatch(const api::GraphRef&, const api::NodeRef&, const api::NodeRef&)’:
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/transpose_optimization/onnx_transpose_optimization.cc:445:33: error: request for member ‘begin’ in ‘data’, which is of non-class type ‘int’
  445 |           if (!std::all_of(data.begin(), data.end(), [](auto value) { return value == 0; })) {
      |                                 ^~~~~
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/transpose_optimization/onnx_transpose_optimization.cc:445:47: error: request for member ‘end’ in ‘data’, which is of non-class type ‘int’
  445 |           if (!std::all_of(data.begin(), data.end(), [](auto value) { return value == 0; })) {
      |                                               ^~~
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/transpose_optimization/onnx_transpose_optimization.cc:451:33: error: request for member ‘begin’ in ‘data’, which is of non-class type ‘int’
  451 |           if (!std::all_of(data.begin(), data.end(), [](auto value) { return value == 0; })) {
      |                                 ^~~~~
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/transpose_optimization/onnx_transpose_optimization.cc:451:47: error: request for member ‘end’ in ‘data’, which is of non-class type ‘int’
  451 |           if (!std::all_of(data.begin(), data.end(), [](auto value) { return value == 0; })) {
      |                                               ^~~
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/transpose_optimization/onnx_transpose_optimization.cc: In function ‘void onnx_transpose_optimization::Permute1DConstant(api::GraphRef&, api::NodeRef&, api::TensorRef&, size_t, std::string_view, const std::vector<long int>&)’:
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/transpose_optimization/onnx_transpose_optimization.cc:878:44: error: conversion from ‘int’ to non-scalar type ‘std::vector<unsigned char>’ requested
  878 |   std::vector<uint8_t> data = constant.Data();
      |                               ~~~~~~~~~~~~~^~
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/transpose_optimization/onnx_transpose_optimization.cc:889:84: error: cannot convert ‘std::vector<unsigned char>’ to ‘const int&’
  889 |   std::string_view new_initializer = graph.AddInitializer(constant.DType(), shape, new_data);
      |                                                                                    ^~~~~~~~
      |                                                                                    |
      |                                                                                    std::vector<unsigned char>
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/transpose_optimization/optimizer_api.h:402:71: note: initializing argument 3 of ‘virtual std::string_view onnx_transpose_optimization::api::GraphRef::AddInitializer(onnx_transpose_optimization::api::DataType, const std::vector<long int>&, const int&)’
  402 |                                           const std::vector<uint8_t>& data) = 0;
      |                                           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/transpose_optimization/onnx_transpose_optimization.cc: In function ‘bool onnx_transpose_optimization::HandleReshape(HandlerArgs&)’:
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/transpose_optimization/onnx_transpose_optimization.cc:2179:71: error: request for member ‘size’ in ‘requested_shape_data.std::unique_ptr<onnx_transpose_optimization::api::TensorRef>::operator->()->onnx_transpose_optimization::api::TensorRef::Data()’, which is of non-class type ‘int’
 2179 |   if (requested_shape_data == nullptr || requested_shape_data->Data().size() == 0) {
      |                                                                       ^~~~
[506/601] /usr/bin/c++ -DCPUINFO_SUPPORTED_PLATFORM=1 -DDISABLE_ABSEIL -DDNNL_OPENMP -DEIGEN_MPL2_ONLY -DEIGEN_USE_THREADS -DENABLE_CPU_FP16_TRAINING_OPS -DHAS_STRING_VIEW=1 -DNSYNC_ATOMIC_CPP11 -DONLY_C_LOCALE=1 -DONNX_ML=1 -DONNX_NAMESPACE=onnx -DORT_ENABLE_STREAM -DPLATFORM_POSIX -DUSE_DNNL=1 -DUSE_XNNPACK=1 -D_GNU_SOURCE -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/include/onnxruntime -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/include/onnxruntime/core/session -I/build/reproducible-path/onnxruntime-1.19.2+dfsg -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime -I/usr/include/safeint -g -O2 -ffile-prefix-map=/build/reproducible-path/onnxruntime-1.19.2+dfsg=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -ffunction-sections -fdata-sections -Wno-restrict  -DCPUINFO_SUPPORTED -O2 -g -DNDEBUG -fPIC -Wall -Wextra -Wno-deprecated-copy -Wno-nonnull-compare -Werror -MD -MT CMakeFi
 les/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/selectors_actions/actions.cc.o -MF CMakeFiles/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/selectors_actions/actions.cc.o.d -o CMakeFiles/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/selectors_actions/actions.cc.o -c /build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/selectors_actions/actions.cc
[507/601] /usr/bin/c++ -DCPUINFO_SUPPORTED_PLATFORM=1 -DDISABLE_ABSEIL -DDNNL_OPENMP -DEIGEN_MPL2_ONLY -DEIGEN_USE_THREADS -DENABLE_CPU_FP16_TRAINING_OPS -DHAS_STRING_VIEW=1 -DNSYNC_ATOMIC_CPP11 -DONLY_C_LOCALE=1 -DONNX_ML=1 -DONNX_NAMESPACE=onnx -DORT_ENABLE_STREAM -DPLATFORM_POSIX -DUSE_DNNL=1 -DUSE_XNNPACK=1 -D_GNU_SOURCE -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/include/onnxruntime -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/include/onnxruntime/core/session -I/build/reproducible-path/onnxruntime-1.19.2+dfsg -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime -I/usr/include/safeint -g -O2 -ffile-prefix-map=/build/reproducible-path/onnxruntime-1.19.2+dfsg=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -ffunction-sections -fdata-sections -Wno-restrict  -DCPUINFO_SUPPORTED -O2 -g -DNDEBUG -fPIC -Wall -Wextra -Wno-deprecated-copy -Wno-nonnull-compare -Werror -MD -MT CMakeFi
 les/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/selectors_actions/helpers.cc.o -MF CMakeFiles/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/selectors_actions/helpers.cc.o.d -o CMakeFiles/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/selectors_actions/helpers.cc.o -c /build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/selectors_actions/helpers.cc
[508/601] /usr/bin/c++ -DCPUINFO_SUPPORTED_PLATFORM=1 -DDISABLE_ABSEIL -DDNNL_OPENMP -DEIGEN_MPL2_ONLY -DEIGEN_USE_THREADS -DENABLE_CPU_FP16_TRAINING_OPS -DHAS_STRING_VIEW=1 -DNSYNC_ATOMIC_CPP11 -DONLY_C_LOCALE=1 -DONNX_ML=1 -DONNX_NAMESPACE=onnx -DORT_ENABLE_STREAM -DPLATFORM_POSIX -DUSE_DNNL=1 -DUSE_XNNPACK=1 -D_GNU_SOURCE -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/include/onnxruntime -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/include/onnxruntime/core/session -I/build/reproducible-path/onnxruntime-1.19.2+dfsg -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime -I/usr/include/safeint -g -O2 -ffile-prefix-map=/build/reproducible-path/onnxruntime-1.19.2+dfsg=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -ffunction-sections -fdata-sections -Wno-restrict  -DCPUINFO_SUPPORTED -O2 -g -DNDEBUG -fPIC -Wall -Wextra -Wno-deprecated-copy -Wno-nonnull-compare -Werror -MD -MT CMakeFi
 les/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/slice_elimination.cc.o -MF CMakeFiles/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/slice_elimination.cc.o.d -o CMakeFiles/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/slice_elimination.cc.o -c /build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/slice_elimination.cc
[509/601] /usr/bin/c++ -DCPUINFO_SUPPORTED_PLATFORM=1 -DDISABLE_ABSEIL -DDNNL_OPENMP -DEIGEN_MPL2_ONLY -DEIGEN_USE_THREADS -DENABLE_CPU_FP16_TRAINING_OPS -DHAS_STRING_VIEW=1 -DNSYNC_ATOMIC_CPP11 -DONLY_C_LOCALE=1 -DONNX_ML=1 -DONNX_NAMESPACE=onnx -DORT_ENABLE_STREAM -DPLATFORM_POSIX -DUSE_DNNL=1 -DUSE_XNNPACK=1 -D_GNU_SOURCE -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/include/onnxruntime -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/include/onnxruntime/core/session -I/build/reproducible-path/onnxruntime-1.19.2+dfsg -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime -I/usr/include/safeint -g -O2 -ffile-prefix-map=/build/reproducible-path/onnxruntime-1.19.2+dfsg=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -ffunction-sections -fdata-sections -Wno-restrict  -DCPUINFO_SUPPORTED -O2 -g -DNDEBUG -fPIC -Wall -Wextra -Wno-deprecated-copy -Wno-nonnull-compare -Werror -MD -MT CMakeFi
 les/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/skip_layer_norm_fusion.cc.o -MF CMakeFiles/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/skip_layer_norm_fusion.cc.o.d -o CMakeFiles/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/skip_layer_norm_fusion.cc.o -c /build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/skip_layer_norm_fusion.cc
[510/601] /usr/bin/c++ -DCPUINFO_SUPPORTED_PLATFORM=1 -DDISABLE_ABSEIL -DDNNL_OPENMP -DEIGEN_MPL2_ONLY -DEIGEN_USE_THREADS -DENABLE_CPU_FP16_TRAINING_OPS -DHAS_STRING_VIEW=1 -DNSYNC_ATOMIC_CPP11 -DONLY_C_LOCALE=1 -DONNX_ML=1 -DONNX_NAMESPACE=onnx -DORT_ENABLE_STREAM -DPLATFORM_POSIX -DUSE_DNNL=1 -DUSE_XNNPACK=1 -D_GNU_SOURCE -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/include/onnxruntime -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/include/onnxruntime/core/session -I/build/reproducible-path/onnxruntime-1.19.2+dfsg -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime -I/usr/include/safeint -g -O2 -ffile-prefix-map=/build/reproducible-path/onnxruntime-1.19.2+dfsg=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -ffunction-sections -fdata-sections -Wno-restrict  -DCPUINFO_SUPPORTED -O2 -g -DNDEBUG -fPIC -Wall -Wextra -Wno-deprecated-copy -Wno-nonnull-compare -Werror -MD -MT CMakeFi
 les/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/stft_decomposition.cc.o -MF CMakeFiles/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/stft_decomposition.cc.o.d -o CMakeFiles/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/stft_decomposition.cc.o -c /build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/stft_decomposition.cc
[511/601] /usr/bin/c++ -DCPUINFO_SUPPORTED_PLATFORM=1 -DDISABLE_ABSEIL -DDNNL_OPENMP -DEIGEN_MPL2_ONLY -DEIGEN_USE_THREADS -DENABLE_CPU_FP16_TRAINING_OPS -DHAS_STRING_VIEW=1 -DNSYNC_ATOMIC_CPP11 -DONLY_C_LOCALE=1 -DONNX_ML=1 -DONNX_NAMESPACE=onnx -DORT_ENABLE_STREAM -DPLATFORM_POSIX -DUSE_DNNL=1 -DUSE_XNNPACK=1 -D_GNU_SOURCE -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/include/onnxruntime -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/include/onnxruntime/core/session -I/build/reproducible-path/onnxruntime-1.19.2+dfsg -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime -I/usr/include/safeint -g -O2 -ffile-prefix-map=/build/reproducible-path/onnxruntime-1.19.2+dfsg=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -ffunction-sections -fdata-sections -Wno-restrict  -DCPUINFO_SUPPORTED -O2 -g -DNDEBUG -fPIC -Wall -Wextra -Wno-deprecated-copy -Wno-nonnull-compare -Werror -MD -MT CMakeFi
 les/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/selectors_actions/selector_action_transformer.cc.o -MF CMakeFiles/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/selectors_actions/selector_action_transformer.cc.o.d -o CMakeFiles/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/selectors_actions/selector_action_transformer.cc.o -c /build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/selectors_actions/selector_action_transformer.cc
FAILED: CMakeFiles/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/selectors_actions/selector_action_transformer.cc.o 
/usr/bin/c++ -DCPUINFO_SUPPORTED_PLATFORM=1 -DDISABLE_ABSEIL -DDNNL_OPENMP -DEIGEN_MPL2_ONLY -DEIGEN_USE_THREADS -DENABLE_CPU_FP16_TRAINING_OPS -DHAS_STRING_VIEW=1 -DNSYNC_ATOMIC_CPP11 -DONLY_C_LOCALE=1 -DONNX_ML=1 -DONNX_NAMESPACE=onnx -DORT_ENABLE_STREAM -DPLATFORM_POSIX -DUSE_DNNL=1 -DUSE_XNNPACK=1 -D_GNU_SOURCE -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/include/onnxruntime -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/include/onnxruntime/core/session -I/build/reproducible-path/onnxruntime-1.19.2+dfsg -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime -I/usr/include/safeint -g -O2 -ffile-prefix-map=/build/reproducible-path/onnxruntime-1.19.2+dfsg=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -ffunction-sections -fdata-sections -Wno-restrict  -DCPUINFO_SUPPORTED -O2 -g -DNDEBUG -fPIC -Wall -Wextra -Wno-deprecated-copy -Wno-nonnull-compare -Werror -MD -MT CMakeFiles/onnxru
 ntime_optimizer.dir/onnxruntime/core/optimizer/selectors_actions/selector_action_transformer.cc.o -MF CMakeFiles/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/selectors_actions/selector_action_transformer.cc.o.d -o CMakeFiles/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/selectors_actions/selector_action_transformer.cc.o -c /build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/selectors_actions/selector_action_transformer.cc
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/selectors_actions/selector_action_transformer.cc: In function ‘onnxruntime::common::Status onnxruntime::MatchAndProcess(Graph&, const GraphViewer&, Node&, bool&, const logging::Logger&, const std::string&, const SelectorActionRegistry&, const SatRuntimeOptimizationSaveContext*)’:
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/selectors_actions/selector_action_transformer.cc:152:23: error: loop variable ‘op_schema’ creates a copy from type ‘const gsl::not_null<const onnx::OpSchema*>’ [-Werror=range-loop-construct]
  152 |       for (const auto op_schema : action_saved_state.produced_node_op_schemas) {
      |                       ^~~~~~~~~
/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/selectors_actions/selector_action_transformer.cc:152:23: note: use reference type to prevent copying
  152 |       for (const auto op_schema : action_saved_state.produced_node_op_schemas) {
      |                       ^~~~~~~~~
      |                       &
cc1plus: all warnings being treated as errors
[512/601] /usr/bin/c++ -DCPUINFO_SUPPORTED_PLATFORM=1 -DDISABLE_ABSEIL -DDNNL_OPENMP -DEIGEN_MPL2_ONLY -DEIGEN_USE_THREADS -DENABLE_CPU_FP16_TRAINING_OPS -DHAS_STRING_VIEW=1 -DNSYNC_ATOMIC_CPP11 -DONLY_C_LOCALE=1 -DONNX_ML=1 -DONNX_NAMESPACE=onnx -DORT_ENABLE_STREAM -DPLATFORM_POSIX -DUSE_DNNL=1 -DUSE_XNNPACK=1 -D_GNU_SOURCE -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/include/onnxruntime -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/include/onnxruntime/core/session -I/build/reproducible-path/onnxruntime-1.19.2+dfsg -I/build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime -I/usr/include/safeint -g -O2 -ffile-prefix-map=/build/reproducible-path/onnxruntime-1.19.2+dfsg=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -ffunction-sections -fdata-sections -Wno-restrict  -DCPUINFO_SUPPORTED -O2 -g -DNDEBUG -fPIC -Wall -Wextra -Wno-deprecated-copy -Wno-nonnull-compare -Werror -MD -MT CMakeFi
 les/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/transformer_memcpy.cc.o -MF CMakeFiles/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/transformer_memcpy.cc.o.d -o CMakeFiles/onnxruntime_optimizer.dir/onnxruntime/core/optimizer/transformer_memcpy.cc.o -c /build/reproducible-path/onnxruntime-1.19.2+dfsg/onnxruntime/core/optimizer/transformer_memcpy.cc
ninja: build stopped: subcommand failed.
dh_auto_build: error: LC_ALL=C.UTF-8 ninja -j8 -v returned exit code 1
make[1]: *** [debian/rules:52: override_dh_auto_build] Error 25
make[1]: Leaving directory '/build/reproducible-path/onnxruntime-1.19.2+dfsg'
make: *** [debian/rules:29: binary] Error 2
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2


Reply to: