KhronosGroup / Vulkan-Hpp

Open-Source Vulkan C++ API
Apache License 2.0
3.06k stars 302 forks source link

"/data/data/com.termux/files/home/Vulkan-Hpp/vulkan/vulkan.hpp:59:16: error: static assertion failed due to requirement '272 == 271': Wrong VK_HEADER_VERSION!" #1744

Closed ETERNALBLUEbullrun closed 7 months ago

ETERNALBLUEbullrun commented 8 months ago
~/Vulkan-Hpp $ git pull && git submodule foreach git pull && date
Already up to date.
Entering 'Vulkan-Headers'
Already up to date.
Entering 'glfw'
Already up to date.
Entering 'glm'
Already up to date.
Entering 'glslang'
Already up to date.
Entering 'tinyxml2'
Already up to date.
Sun Dec  3 16:01:45 PST 2023
~/Vulkan-Hpp $ cat ./RunCmakeSamples.sh
echo cmake \
        -fresh \
        -B build \
        -DVULKAN_HPP_SAMPLES_BUILD=ON \
        -DVULKAN_HPP_TESTS_BUILD=ON \
        -DVULKAN_HPP_BUILD_WITH_LOCAL_VULKAN_HPP=ON \
        -DENABLE_OPT=1 \
        -DALLOW_EXTERNAL_SPIRV_TOOLS=ON \
        -G Ninja \
        &&
cmake --build build --parallel2 --clean-first
~/Vulkan-Hpp $ ./RunCmakeSamples.sh
cmake --fresh -B build -DVULKAN_HPP_SAMPLES_BUILD=ON -DVULKAN_HPP_TESTS_BUILD=ON -DVULKAN_HPP_BUILD_WITH_LOCAL_VULKAN_HPP=ON -DENABLE_OPT=1 -DALLOW_EXTERNAL_SPIRV_TOOLS=ON -G Ninja
[0/1] Re-running CMake...
-- The CXX compiler identification is Clang 17.0.6
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /data/data/com.termux/files/usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
--  Found clang-format version <17.0.6>.
--  Using .clang-format version 15.
-- GLM: Version 0.9.9.9
-- The C compiler identification is Clang 17.0.6
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /data/data/com.termux/files/usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Including X11 support
-- Trying to find local SPIR-V tools
-- optimizer enabled
-- Found Vulkan: /data/data/com.termux/files/usr/lib/libvulkan.so (found version "1.3.272")  missing components: glslc glslangValidator
-- Configuring done (8.8s)
-- Generating done (0.2s)
-- Build files have been written to: /data/data/com.termux/files/home/Vulkan-Hpp/build
[1/1] Cleaning all built files...
Cleaning... 341 files.
[89/341] Building CXX object samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx.pch
FAILED: samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx.pch
/data/data/com.termux/files/usr/bin/c++ -DCLANG_FORMAT_EXECUTABLE=\"/data/data/com.termux/files/usr/bin/clang-format\" -DVK_USE_PLATFORM_XCB_KHR -DVULKAN_HPP_DISPATCH_LOADER_DYNAMIC=1 -I/data/data/com.termux/files/home/Vulkan-Hpp -I/data/data/com.termux/files/home/Vulkan-Hpp/Vulkan-Headers/include -I/data/data/com.termux/files/home/Vulkan-Hpp/glm -I/data/data/com.termux/files/home/Vulkan-Hpp/glfw/include -I/data/data/com.termux/files/home/Vulkan-Hpp/glslang/glslang/.. -I/data/data/com.termux/files/home/Vulkan-Hpp/build/include -I/data/data/com.termux/files/home/Vulkan-Hpp/glslang/SPIRV/.. -I/data/data/com.termux/files/home/Vulkan-Hpp/glslang/SPIRV/../External -O2 -g -DNDEBUG -std=gnu++11 -Wall -Wextra -pedantic -Werror -Wno-c++20-extensions -std=c++20 -Winvalid-pch -fpch-instantiate-templates -Xclang -emit-pch -Xclang -include -Xclang /data/data/com.termux/files/home/Vulkan-Hpp/build/samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx -x c++-header -MD -MT samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx.pch -MF samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx.pch.d -o samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx.pch -c /data/data/com.termux/files/home/Vulkan-Hpp/build/samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx.cxx
In file included from <built-in>:1:
In file included from /data/data/com.termux/files/home/Vulkan-Hpp/build/samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx:5:
/data/data/com.termux/files/home/Vulkan-Hpp/vulkan/vulkan.hpp:59:16: error: static assertion failed due to requirement '272 == 271': Wrong VK_HEADER_VERSION!
   59 | static_assert( VK_HEADER_VERSION == 271, "Wrong VK_HEADER_VERSION!" );
      |                ^~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.termux/files/home/Vulkan-Hpp/Vulkan-Headers/include/vulkan/vulkan_core.h:72:27: note: expanded from macro 'VK_HEADER_VERSION'
   72 | #define VK_HEADER_VERSION 272
      |                           ^
1 error generated.
[90/341] Building CXX object glslang/SPIRV/CMakeFiles/SPVRemapper.dir/SPVRemapper.cpp.o
ninja: build stopped: subcommand failed.
ETERNALBLUEbullrun commented 8 months ago

sed 's/VK_HEADER_VERSION == 271/VK_HEADER_VERSION == 272/g' vulkan/vulkan.hpp -i'' leads to much more errors, possibly unrelated (ergo, errors would have happened with good versions, but compilation failed before it could reach errors,) or possibly caused from bad versions:

~/Vulkan-Hpp $ ./RunCmakeSamples.sh
cmake -B build -DVULKAN_HPP_SAMPLES_BUILD=ON -DVULKAN_HPP_TESTS_BUILD=ON -DVULKAN_HPP_BUILD_WITH_LOCAL_VULKAN_HPP=ON -DENABLE_OPT=1 -DALLOW_EXTERNAL_SPIRV_TOOLS=ON -G Ninja
[5/252] Building CXX object samples/utils/CMakeFiles/utils.dir/shaders.cpp.o
FAILED: samples/utils/CMakeFiles/utils.dir/shaders.cpp.o
/data/data/com.termux/files/usr/bin/c++ -DCLANG_FORMAT_EXECUTABLE=\"/data/data/com.termux/files/usr/bin/clang-format\" -DVK_USE_PLATFORM_XCB_KHR -DVULKAN_HPP_DISPATCH_LOADER_DYNAMIC=1 -I/data/data/com.termux/files/home/Vulkan-Hpp -I/data/data/com.termux/files/home/Vulkan-Hpp/Vulkan-Headers/include -I/data/data/com.termux/files/home/Vulkan-Hpp/glm -I/data/data/com.termux/files/home/Vulkan-Hpp/glfw/include -I/data/data/com.termux/files/home/Vulkan-Hpp/glslang/glslang/.. -I/data/data/com.termux/files/home/Vulkan-Hpp/build/include -I/data/data/com.termux/files/home/Vulkan-Hpp/glslang/SPIRV/.. -I/data/data/com.termux/files/home/Vulkan-Hpp/glslang/SPIRV/../External -O2 -g -DNDEBUG -std=gnu++11 -Wall -Wextra -pedantic -Werror -Wno-c++20-extensions -std=c++20 -Winvalid-pch -Xclang -include-pch -Xclang /data/data/com.termux/files/home/Vulkan-Hpp/build/samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /data/data/com.termux/files/home/Vulkan-Hpp/build/samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx -MD -MT samples/utils/CMakeFiles/utils.dir/shaders.cpp.o -MF samples/utils/CMakeFiles/utils.dir/shaders.cpp.o.d -o samples/utils/CMakeFiles/utils.dir/shaders.cpp.o -c /data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:27:5: error: unknown type name 'EShLanguage'
   27 |     EShLanguage translateShaderStage( vk::ShaderStageFlagBits stage )
      |     ^
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:31:55: error: use of undeclared identifier 'EShLangVertex'
   31 |         case vk::ShaderStageFlagBits::eVertex: return EShLangVertex;
      |                                                       ^
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:32:68: error: use of undeclared identifier 'EShLangTessControl'
   32 |         case vk::ShaderStageFlagBits::eTessellationControl: return EShLangTessControl;
      |                                                                    ^
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:33:71: error: use of undeclared identifier 'EShLangTessEvaluation'
   33 |         case vk::ShaderStageFlagBits::eTessellationEvaluation: return EShLangTessEvaluation;
      |                                                                       ^
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:34:57: error: use of undeclared identifier 'EShLangGeometry'
   34 |         case vk::ShaderStageFlagBits::eGeometry: return EShLangGeometry;
      |                                                         ^
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:35:57: error: use of undeclared identifier 'EShLangFragment'
   35 |         case vk::ShaderStageFlagBits::eFragment: return EShLangFragment;
      |                                                         ^
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:36:56: error: use of undeclared identifier 'EShLangCompute'
   36 |         case vk::ShaderStageFlagBits::eCompute: return EShLangCompute;
      |                                                        ^
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:37:57: error: use of undeclared identifier 'EShLangRayGenNV'
   37 |         case vk::ShaderStageFlagBits::eRaygenNV: return EShLangRayGenNV;
      |                                                         ^
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:38:57: error: use of undeclared identifier 'EShLangAnyHitNV'
   38 |         case vk::ShaderStageFlagBits::eAnyHitNV: return EShLangAnyHitNV;
      |                                                         ^
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:39:61: error: use of undeclared identifier 'EShLangClosestHitNV'
   39 |         case vk::ShaderStageFlagBits::eClosestHitNV: return EShLangClosestHitNV;
      |                                                             ^
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:40:55: error: use of undeclared identifier 'EShLangMissNV'
   40 |         case vk::ShaderStageFlagBits::eMissNV: return EShLangMissNV;
      |                                                       ^
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:41:63: error: use of undeclared identifier 'EShLangIntersectNV'
   41 |         case vk::ShaderStageFlagBits::eIntersectionNV: return EShLangIntersectNV;
      |                                                               ^
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:42:59: error: use of undeclared identifier 'EShLangCallableNV'
   42 |         case vk::ShaderStageFlagBits::eCallableNV: return EShLangCallableNV;
      |                                                           ^
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:43:55: error: use of undeclared identifier 'EShLangTaskNV'
   43 |         case vk::ShaderStageFlagBits::eTaskNV: return EShLangTaskNV;
      |                                                       ^
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:44:55: error: use of undeclared identifier 'EShLangMeshNV'
   44 |         case vk::ShaderStageFlagBits::eMeshNV: return EShLangMeshNV;
      |                                                       ^
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:45:68: error: use of undeclared identifier 'EShLangVertex'
   45 |         default: assert( false && "Unknown shader stage" ); return EShLangVertex;
      |                                                                    ^
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:51:7: error: unknown type name 'EShLanguage'
   51 |       EShLanguage stage = translateShaderStage( shaderType );
      |       ^
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:56:23: error: expected ';' after expression
   56 |       glslang::TShader shader( stage );
      |                       ^
      |                       ;
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:56:7: error: no member named 'TShader' in namespace 'glslang'; did you mean 'spvShader'?
   56 |       glslang::TShader shader( stage );
      |       ^~~~~~~~~~~~~~~~
      |       spvShader
/data/data/com.termux/files/home/Vulkan-Hpp/samples/utils/shaders.cpp:49:123: note: 'spvShader' declared here
   49 |     bool GLSLtoSPV( const vk::ShaderStageFlagBits shaderType, std::string const & glslShader, std::vector<unsigned int> & spvShader )
      |                                                                                                                           ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
[6/252] Building CXX object samples/utils/CMakeFiles/utils.dir/utils.cpp.o
ninja: build stopped: subcommand failed.
Unused:
sed 's/-Wno-error -Wno-c++17-extensions -std=c++17 )/-Wno-error -Wno-c++20-extensions -std=c++20 )/g' CMakeLists.txt -i'' &&
        --fresh         -DVULKAN_HPP_SAMPLES_BUILD=ON -DVULKAN_HPP_SAMPLES_BUILD_WITH_LOCAL_VULKAN_HPP=ON     -DVULKAN_HPP_TESTS_BUILD=ON -DVULKAN_HPP_TESTS_BUILD_WITH_LOCAL_VULKAN_HPP=ON         -DVULKAN_HPP_RUN_GENERATOR=ON     -DCMAKE_CXX__FLAGS="-I/data/data/com.termux/files/usr/include/glslang/"         -DVULKAN_HPP_ENABLE_EXPERIMENTAL_CPP20_MODULES=1       -DCMAKE_EXPERIMENTAL_CXX_MODULE_CMAKE_API=aa1f7df0-828a-4fcd-9afc-2dc80491aca7 -DCMAKE_CXX_STANDARD=20
~/Vulkan-Hpp $
asuessenbach commented 8 months ago

Having this static assertion firing says, your Vulkan version and your Vulkan-Hpp version are different. That's not allowed. In this specific case, your Vulkan version is 272 while your Vulkan-Hpp version is only 271. Please use the same version to prevent this error.

AmericaPacific42 commented 8 months ago

Howto pull Vulkan-Hpp to 273?

~/Vulkan-Hpp $ pkg up && git pull && git submodule foreach git pull && date
Checking availability of current mirror:
[*] https://packages-cf.termux.dev/apt/termux-main: ok
Hit:1 https://packages-cf.termux.dev/apt/termux-main stable InRelease
Hit:2 https://packages-cf.termux.dev/apt/termux-x11 x11 InRelease
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
All packages are up to date.
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Updating 84b77d1..e621db0
Fast-forward
Vulkan-Headers                           |    2 +-
vulkan/vulkan.cppm                       |   23 ++
vulkan/vulkan.hpp                        |   92 ++++-
vulkan/vulkan_enums.hpp                  |   21 ++
vulkan/vulkan_extension_inspection.hpp   |   27 +-
vulkan/vulkan_handles.hpp                |   12 +
vulkan/vulkan_hash.hpp                   |  152 +++++++-
vulkan/vulkan_static_assertions.hpp      |   56 +++
vulkan/vulkan_structs.hpp                | 1169 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-------
vulkan/vulkan_to_string.hpp              |   25 ++
vulkan/vulkansc.hpp                      |    4 +-
vulkan/vulkansc_extension_inspection.hpp |   11 +-
12 files changed, 1431 insertions(+), 163 deletions(-)
Entering 'Vulkan-Headers'
Already up to date.
Entering 'glfw'
Already up to date.
Entering 'glm'
Already up to date.
Entering 'glslang'
Already up to date.
Entering 'tinyxml2'
Already up to date.
Sat Dec  9 01:56:11 PST 2023
~/Vulkan-Hpp $ ./RunCmakeSamples.sh
cmake -B build -DVULKAN_HPP_SAMPLES_BUILD=ON -DVULKAN_HPP_TESTS_BUILD=ON -DVULKAN_HPP_BUILD_WITH_LOCAL_VULKAN_HPP=ON -DENABLE_OPT=1 -DALLOW_EXTERNAL_SPIRV_TOOLS=ON -G Ninja
[1/251] Building CXX object samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx.pch
FAILED: samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx.pch
/data/data/com.termux/files/usr/bin/c++ -DCLANG_FORMAT_EXECUTABLE=\"/data/data/com.termux/files/usr/bin/clang-format\" -DVK_USE_PLATFORM_XCB_KHR -DVULKAN_HPP_DISPATCH_LOADER_DYNAMIC=1 -I/data/data/com.termux/files/home/Vulkan-Hpp -I/data/data/com.termux/files/home/Vulkan-Hpp/Vulkan-Headers/include -I/data/data/com.termux/files/home/Vulkan-Hpp/glm -I/data/data/com.termux/files/home/Vulkan-Hpp/glfw/include -I/data/data/com.termux/files/home/Vulkan-Hpp/glslang/glslang/.. -I/data/data/com.termux/files/home/Vulkan-Hpp/build/include -I/data/data/com.termux/files/home/Vulkan-Hpp/glslang/SPIRV/.. -I/data/data/com.termux/files/home/Vulkan-Hpp/glslang/SPIRV/../External -O2 -g -DNDEBUG -std=gnu++11 -Wall -Wextra -pedantic -Werror -Wno-c++20-extensions -std=c++20 -Winvalid-pch -fpch-instantiate-templates -Xclang -emit-pch -Xclang -include -Xclang /data/data/com.termux/files/home/Vulkan-Hpp/build/samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx -x c++-header -MD -MT samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx.pch -MF samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx.pch.d -o samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx.pch -c /data/data/com.termux/files/home/Vulkan-Hpp/build/samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx.cxx
In file included from <built-in>:1:
In file included from /data/data/com.termux/files/home/Vulkan-Hpp/build/samples/utils/CMakeFiles/utils.dir/cmake_pch.hxx:5:
/data/data/com.termux/files/home/Vulkan-Hpp/vulkan/vulkan.hpp:59:16: error: static assertion failed due to requirement '273 == 271': Wrong VK_HEADER_VERSION!
   59 | static_assert( VK_HEADER_VERSION == 271, "Wrong VK_HEADER_VERSION!" );
      |                ^~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.termux/files/home/Vulkan-Hpp/Vulkan-Headers/include/vulkan/vulkan_core.h:72:27: note: expanded from macro 'VK_HEADER_VERSION'
   72 | #define VK_HEADER_VERSION 273
      |                           ^
1 error generated.
[2/251] Building CXX object samples/01_InitInstance/CMakeFiles/01_InitInstance.dir/cmake_pch.hxx.pch
FAILED: samples/01_InitInstance/CMakeFiles/01_InitInstance.dir/cmake_pch.hxx.pch
/data/data/com.termux/files/usr/bin/c++ -DCLANG_FORMAT_EXECUTABLE=\"/data/data/com.termux/files/usr/bin/clang-format\" -DVK_USE_PLATFORM_XCB_KHR -DVULKAN_HPP_DISPATCH_LOADER_DYNAMIC=0 -I/data/data/com.termux/files/home/Vulkan-Hpp -I/data/data/com.termux/files/home/Vulkan-Hpp/Vulkan-Headers/include -O2 -g -DNDEBUG -std=gnu++11 -Wall -Wextra -pedantic -Werror -Wno-c++20-extensions -std=c++20 -Winvalid-pch -fpch-instantiate-templates -Xclang -emit-pch -Xclang -include -Xclang /data/data/com.termux/files/home/Vulkan-Hpp/build/samples/01_InitInstance/CMakeFiles/01_InitInstance.dir/cmake_pch.hxx -x c++-header -MD -MT samples/01_InitInstance/CMakeFiles/01_InitInstance.dir/cmake_pch.hxx.pch -MF samples/01_InitInstance/CMakeFiles/01_InitInstance.dir/cmake_pch.hxx.pch.d -o samples/01_InitInstance/CMakeFiles/01_InitInstance.dir/cmake_pch.hxx.pch -c /data/data/com.termux/files/home/Vulkan-Hpp/build/samples/01_InitInstance/CMakeFiles/01_InitInstance.dir/cmake_pch.hxx.cxx
In file included from <built-in>:1:
In file included from /data/data/com.termux/files/home/Vulkan-Hpp/build/samples/01_InitInstance/CMakeFiles/01_InitInstance.dir/cmake_pch.hxx:5:
/data/data/com.termux/files/home/Vulkan-Hpp/vulkan/vulkan.hpp:59:16: error: static assertion failed due to requirement '273 == 271': Wrong VK_HEADER_VERSION!
   59 | static_assert( VK_HEADER_VERSION == 271, "Wrong VK_HEADER_VERSION!" );
      |                ^~~~~~~~~~~~~~~~~~~~~~~~
/data/data/com.termux/files/home/Vulkan-Hpp/Vulkan-Headers/include/vulkan/vulkan_core.h:72:27: note: expanded from macro 'VK_HEADER_VERSION'
   72 | #define VK_HEADER_VERSION 273
      |                           ^
1 error generated.
ninja: build stopped: subcommand failed.
Unused:
sed 's/-Wno-error -Wno-c++17-extensions -std=c++17 )/-Wno-error -Wno-c++20-extensions -std=c++20 )/g' CMakeLists.txt -i'' &&
        --fresh         -DVULKAN_HPP_SAMPLES_BUILD=ON -DVULKAN_HPP_SAMPLES_BUILD_WITH_LOCAL_VULKAN_HPP=ON     -DVULKAN_HPP_TESTS_BUILD=ON -DVULKAN_HPP_TESTS_BUILD_WITH_LOCAL_VULKAN_HPP=ON         -DVULKAN_HPP_RUN_GENERATOR=ON     -DCMAKE_CXX__FLAGS="-I/data/data/com.termux/files/usr/include/glslang/"         -DVULKAN_HPP_ENABLE_EXPERIMENTAL_CPP20_MODULES=1       -DCMAKE_EXPERIMENTAL_CXX_MODULE_CMAKE_API=aa1f7df0-828a-4fcd-9afc-2dc80491aca7 -DCMAKE_CXX_STANDARD=20
~/Vulkan-Hpp $
theHamsta commented 8 months ago

I recommend cloning https://github.com/KhronosGroup/Vulkan-Headers/ and running cmake -B build && sudo cmake --install build. This installs both the C and the C++ headers of the same version on your system.

asuessenbach commented 7 months ago

Assuming this is resolved...