gaussian-splatting icon indicating copy to clipboard operation
gaussian-splatting copied to clipboard

Build error on GCC 13 due to missing headers

Open yklcs opened this issue 3 months ago • 1 comments

GCC 13 does not implicitly include cstdint, which breaks builds.

diff-gaussian-rasterization/cuda_rasterizer/rasterizer_impl.h(24): error: namespace "std" has no member "uintptr_t"
          std::size_t offset = (reinterpret_cast<std::uintptr_t>(chunk) + alignment - 1) & ~(alignment - 1);

yklcs avatar May 04 '24 15:05 yklcs

Simple fix: https://github.com/graphdeco-inria/diff-gaussian-rasterization/pull/49

#715 seems to also include the same problem.

yklcs avatar May 04 '24 15:05 yklcs