8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-02 10:00:38 +01:00

Fix test to call implib

This commit is contained in:
Paul Reeves 2024-07-19 16:41:57 +02:00
parent 94161e90fa
commit 384fbf3e81

View File

@ -228,11 +228,13 @@ set > %FB_ROOT_PATH%\builds\install\arch-specific\win32\test_installer\fb_build_
@if ERRORLEVEL 1 ( (call :ERROR Copying MSVC runtime library failed with error %ERRORLEVEL% ) & (goto :EOF))
@where /Q implib.exe
@if not ERRORLEVEL 1 (
if "%VSCMD_ARG_TGT_ARCH%"=="x86" (
echo Generating fbclient_bor.lib
if "%PROCESSOR_ARCHITECTURE%"=="x86" (
echo Generating fbclient_bor.lib
where /Q implib.exe
if not ERRORLEVEL 1 (
implib %FB_OUTPUT_DIR%\lib\fbclient_bor.lib %FB_OUTPUT_DIR%\fbclient.dll > nul
) else (
call :ERROR implib not found & goto :EOF
)
)