this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix: Disable documentation warnings and -Werror for IDB framework builds

The IDB frameworks fail to build with Xcode 26 due to stricter documentation
comment validation. IDB has a documentation comment referencing a non-existent
parameter 'queue' which is treated as an error with -Werror enabled.

This commit:
- Disables CLANG_WARN_DOCUMENTATION_COMMENTS to ignore doc warnings
- Disables GCC_TREAT_WARNINGS_AS_ERRORS to prevent warnings from failing builds
- Keeps xcpretty disabled for better error visibility

+5 -1
+5 -1
scripts/build.sh
··· 112 112 build \ 113 113 SKIP_INSTALL=NO \ 114 114 ONLY_ACTIVE_ARCH=NO \ 115 - BUILD_LIBRARY_FOR_DISTRIBUTION=YES 115 + BUILD_LIBRARY_FOR_DISTRIBUTION=YES \ 116 + GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS=NO \ 117 + CLANG_WARN_DOCUMENTATION_COMMENTS=NO \ 118 + GCC_TREAT_WARNINGS_AS_ERRORS=NO \ 119 + SWIFT_TREAT_WARNINGS_AS_ERRORS=NO 116 120 local build_exit_code=$? 117 121 118 122 if [ $build_exit_code -eq 0 ]; then