fix: suppress cbindgen stderr warnings (types resolved by C #include chain)

This commit is contained in:
Red Bear OS
2026-06-28 19:28:59 +03:00
parent bae5afa1b4
commit 2f320c1ea0
+1 -1
View File
@@ -55,7 +55,7 @@ endif
out=`echo "$$header" | sed 's/_/\//g'`; \
out="$(TARGET_HEADERS)/$$out.h"; \
cat "src/header/$$header/cbindgen.toml" cbindgen.globdefs.toml \
| cbindgen "src/header/$$header/mod.rs" --config=/dev/stdin --output "$$out"; \
| cbindgen "src/header/$$header/mod.rs" --config=/dev/stdin --output "$$out" 2>/dev/null; \
fi \
done; echo -e "\033[0;36;49mAll headers written\033[0m";