Merge pull request #279885 from jansol/fix-draco-build

draco: fix build with GCC 13
This commit is contained in:
K900 2024-01-09 22:43:46 +03:00 committed by GitHub
commit fcff3d7883
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,6 +49,11 @@ stdenv.mkDerivation (finalAttrs: {
"-DDRACO_TINYGLTF_PATH=${tinygltf}"
];
CXXFLAGS = [
# error: expected ')' before 'value' in 'explicit GltfValue(uint8_t value)'
"-include cstdint"
];
passthru.updateScript = nix-update-script { };
meta = with lib; {