3fc2c054c5
Building Executable_odbcconfig using VS2022 failed for me reproducibly for some time, with mt.exe : general error c101008d: Failed to write the updated manifest to the resource of file "C:/lo/src/build/instdir/program/odbcconfig.exe". The file or directory is corrupted and unreadable. make[1]: *** [C:/lo/src/core/dbaccess/Executable_odbcconfig.mk:10: C:/lo/src/build/instdir/program/odbcconfig.exe] Error 139 It is caused by linking odbccp32, and legacy_stdio_definitions required by the latter with current versions of UCRT. It seems to work OK for others; but being unable to find what's different on my system, I have this workaround, using run-time loading instead. Change-Id: Iab1fe7747ca6e677d89a120778ca805465a05611 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147627 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
26 lines
773 B
Makefile
26 lines
773 B
Makefile
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
#
|
|
# This file is part of the LibreOffice project.
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
|
|
$(eval $(call gb_Executable_Executable,odbcconfig))
|
|
|
|
$(eval $(call gb_Executable_set_targettype_gui,odbcconfig,YES))
|
|
|
|
$(eval $(call gb_Executable_use_libraries,odbcconfig,\
|
|
comphelper \
|
|
))
|
|
|
|
$(eval $(call gb_Library_use_sdk_api,odbcconfig))
|
|
|
|
$(eval $(call gb_Executable_add_exception_objects,odbcconfig,\
|
|
dbaccess/win32/source/odbcconfig/odbcconfig \
|
|
))
|
|
|
|
$(eval $(call gb_Executable_add_default_nativeres,odbcconfig))
|
|
|
|
# vim: set noet sw=4 ts=4:
|