mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-30 22:21:26 +00:00
Merge pull request #279885 from jansol/fix-draco-build
draco: fix build with GCC 13
This commit is contained in:
commit
fcff3d7883
@ -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; {
|
||||
|
Loading…
Reference in New Issue
Block a user