external/mythes/ExternalProject_mythes.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit e2993d551be8853d045ab707cf4210fe9ebd4660 Author: Caolán McNamara <[email protected]> AuthorDate: Wed Oct 29 15:28:11 2025 +0000 Commit: Stephan Bergmann <[email protected]> CommitDate: Wed Oct 29 21:31:19 2025 +0100 disable werror in external mythes avoid useless optimized gcc build warning of: error: 'void* __builtin_memcpy(void*, const void*, long unsigned int)' specified bound 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Werror=stringop-overflow=] Change-Id: Iba277bedfa8061af6040891ae8d77c39454f983a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/193158 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/external/mythes/ExternalProject_mythes.mk b/external/mythes/ExternalProject_mythes.mk index b0e0a6bbdb1d..7cdc20245eac 100644 --- a/external/mythes/ExternalProject_mythes.mk +++ b/external/mythes/ExternalProject_mythes.mk @@ -22,7 +22,7 @@ $(call gb_ExternalProject_get_state_target,mythes,build): $(call gb_ExternalProject_run,build,\ CXXFLAGS=" $(CXXFLAGS) $(call gb_ExternalProject_get_build_flags,mythes)" \ LDFLAGS="$(call gb_ExternalProject_get_link_flags,mythes)" \ - LIBS="$(gb_STDLIBS) $(LIBS)" $(gb_RUN_CONFIGURE) ./configure --disable-shared --with-pic \ + LIBS="$(gb_STDLIBS) $(LIBS)" $(gb_RUN_CONFIGURE) ./configure --disable-shared --disable-werror --with-pic \ $(gb_CONFIGURE_PLATFORMS) \ $(if $(CROSS_COMPILING),gio_can_sniff=no) \ && $(MAKE) \
