Skip to content

Instantly share code, notes, and snippets.

@DerKnerd
Last active March 23, 2022 10:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DerKnerd/ab506480e32aab0d2b3e564fa2e67906 to your computer and use it in GitHub Desktop.
Save DerKnerd/ab506480e32aab0d2b3e564fa2e67906 to your computer and use it in GitHub Desktop.
cmake_minimum_required(VERSION 3.16)
project(test CXX)
set(CMAKE_CXX_STANDARD 20)
include(./conan.cmake)
set(BUILD_SHARED_LIBS false)
set(CMAKE_SYSTEM_NAME Windows)
set(CMAKE_SYSTEM_PROCESSOR x86_64)
list(APPEND CMAKE_MODULE_PATH ${CMAKE_BINARY_DIR})
list(APPEND CMAKE_PREFIX_PATH ${CMAKE_BINARY_DIR})
conan_cmake_configure(
REQUIRES libpq/12.2
GENERATORS cmake_find_package
)
conan_cmake_autodetect(settings)
conan_cmake_install(PATH_OR_REFERENCE .
BUILD missing
REMOTE conancenter
SETTINGS ${settings}
PROFILE ${CMAKE_SOURCE_DIR}/linux_to_win64.conan)
find_package(PostgreSQL)
add_subdirectory(${CMAKE_SOURCE_DIR}/libs/libpqxx)
add_executable(test ${target} main.cpp)
target_link_libraries(test PRIVATE PostgreSQL::PostgreSQL pqxx)
# The MIT License (MIT)
# Copyright (c) 2018 JFrog
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# This file comes from: https://github.com/conan-io/cmake-conan. Please refer
# to this repository for issues and documentation.
# Its purpose is to wrap and launch Conan C/C++ Package Manager when cmake is called.
# It will take CMake current settings (os, compiler, compiler version, architecture)
# and translate them to conan settings for installing and retrieving dependencies.
# It is intended to facilitate developers building projects that have conan dependencies,
# but it is only necessary on the end-user side. It is not necessary to create conan
# packages, in fact it shouldn't be use for that. Check the project documentation.
# version: 0.17.0-dev
include(CMakeParseArguments)
function(_get_msvc_ide_version result)
set(${result} "" PARENT_SCOPE)
if(NOT MSVC_VERSION VERSION_LESS 1400 AND MSVC_VERSION VERSION_LESS 1500)
set(${result} 8 PARENT_SCOPE)
elseif(NOT MSVC_VERSION VERSION_LESS 1500 AND MSVC_VERSION VERSION_LESS 1600)
set(${result} 9 PARENT_SCOPE)
elseif(NOT MSVC_VERSION VERSION_LESS 1600 AND MSVC_VERSION VERSION_LESS 1700)
set(${result} 10 PARENT_SCOPE)
elseif(NOT MSVC_VERSION VERSION_LESS 1700 AND MSVC_VERSION VERSION_LESS 1800)
set(${result} 11 PARENT_SCOPE)
elseif(NOT MSVC_VERSION VERSION_LESS 1800 AND MSVC_VERSION VERSION_LESS 1900)
set(${result} 12 PARENT_SCOPE)
elseif(NOT MSVC_VERSION VERSION_LESS 1900 AND MSVC_VERSION VERSION_LESS 1910)
set(${result} 14 PARENT_SCOPE)
elseif(NOT MSVC_VERSION VERSION_LESS 1910 AND MSVC_VERSION VERSION_LESS 1920)
set(${result} 15 PARENT_SCOPE)
elseif(NOT MSVC_VERSION VERSION_LESS 1920 AND MSVC_VERSION VERSION_LESS 1930)
set(${result} 16 PARENT_SCOPE)
elseif(NOT MSVC_VERSION VERSION_LESS 1930 AND MSVC_VERSION VERSION_LESS 1940)
set(${result} 17 PARENT_SCOPE)
else()
message(FATAL_ERROR "Conan: Unknown MSVC compiler version [${MSVC_VERSION}]")
endif()
endfunction()
macro(_conan_detect_build_type)
conan_parse_arguments(${ARGV})
if(ARGUMENTS_BUILD_TYPE)
set(_CONAN_SETTING_BUILD_TYPE ${ARGUMENTS_BUILD_TYPE})
elseif(CMAKE_BUILD_TYPE)
set(_CONAN_SETTING_BUILD_TYPE ${CMAKE_BUILD_TYPE})
else()
message(FATAL_ERROR "Please specify in command line CMAKE_BUILD_TYPE (-DCMAKE_BUILD_TYPE=Release)")
endif()
string(TOUPPER ${_CONAN_SETTING_BUILD_TYPE} _CONAN_SETTING_BUILD_TYPE_UPPER)
if (_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "DEBUG")
set(_CONAN_SETTING_BUILD_TYPE "Debug")
elseif(_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "RELEASE")
set(_CONAN_SETTING_BUILD_TYPE "Release")
elseif(_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "RELWITHDEBINFO")
set(_CONAN_SETTING_BUILD_TYPE "RelWithDebInfo")
elseif(_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "MINSIZEREL")
set(_CONAN_SETTING_BUILD_TYPE "MinSizeRel")
endif()
endmacro()
macro(_conan_check_system_name)
#handle -s os setting
if(CMAKE_SYSTEM_NAME AND NOT CMAKE_SYSTEM_NAME STREQUAL "Generic")
#use default conan os setting if CMAKE_SYSTEM_NAME is not defined
set(CONAN_SYSTEM_NAME ${CMAKE_SYSTEM_NAME})
if(${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
set(CONAN_SYSTEM_NAME Macos)
endif()
if(${CMAKE_SYSTEM_NAME} STREQUAL "QNX")
set(CONAN_SYSTEM_NAME Neutrino)
endif()
set(CONAN_SUPPORTED_PLATFORMS Windows Linux Macos Android iOS FreeBSD WindowsStore WindowsCE watchOS tvOS FreeBSD SunOS AIX Arduino Emscripten Neutrino)
list (FIND CONAN_SUPPORTED_PLATFORMS "${CONAN_SYSTEM_NAME}" _index)
if (${_index} GREATER -1)
#check if the cmake system is a conan supported one
set(_CONAN_SETTING_OS ${CONAN_SYSTEM_NAME})
else()
message(FATAL_ERROR "cmake system ${CONAN_SYSTEM_NAME} is not supported by conan. Use one of ${CONAN_SUPPORTED_PLATFORMS}")
endif()
endif()
endmacro()
macro(_conan_check_language)
get_property(_languages GLOBAL PROPERTY ENABLED_LANGUAGES)
if (";${_languages};" MATCHES ";CXX;")
set(LANGUAGE CXX)
set(USING_CXX 1)
elseif (";${_languages};" MATCHES ";C;")
set(LANGUAGE C)
set(USING_CXX 0)
else ()
message(FATAL_ERROR "Conan: Neither C or C++ was detected as a language for the project. Unabled to detect compiler version.")
endif()
endmacro()
macro(_conan_detect_compiler)
conan_parse_arguments(${ARGV})
if(ARGUMENTS_ARCH)
set(_CONAN_SETTING_ARCH ${ARGUMENTS_ARCH})
endif()
if (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL GNU)
# using GCC
# TODO: Handle other params
string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION})
list(GET VERSION_LIST 0 MAJOR)
list(GET VERSION_LIST 1 MINOR)
set(COMPILER_VERSION ${MAJOR}.${MINOR})
if(${MAJOR} GREATER 4)
set(COMPILER_VERSION ${MAJOR})
endif()
set(_CONAN_SETTING_COMPILER gcc)
set(_CONAN_SETTING_COMPILER_VERSION ${COMPILER_VERSION})
if (USING_CXX)
conan_cmake_detect_unix_libcxx(_LIBCXX)
set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX})
endif ()
elseif (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL Intel)
string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION})
list(GET VERSION_LIST 0 MAJOR)
list(GET VERSION_LIST 1 MINOR)
set(COMPILER_VERSION ${MAJOR}.${MINOR})
set(_CONAN_SETTING_COMPILER intel)
set(_CONAN_SETTING_COMPILER_VERSION ${COMPILER_VERSION})
if (USING_CXX)
conan_cmake_detect_unix_libcxx(_LIBCXX)
set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX})
endif ()
elseif (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL AppleClang)
# using AppleClang
string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION})
list(GET VERSION_LIST 0 MAJOR)
list(GET VERSION_LIST 1 MINOR)
set(_CONAN_SETTING_COMPILER apple-clang)
set(_CONAN_SETTING_COMPILER_VERSION ${MAJOR}.${MINOR})
if (USING_CXX)
conan_cmake_detect_unix_libcxx(_LIBCXX)
set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX})
endif ()
elseif (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL Clang)
string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION})
list(GET VERSION_LIST 0 MAJOR)
list(GET VERSION_LIST 1 MINOR)
set(_CONAN_SETTING_COMPILER clang)
set(_CONAN_SETTING_COMPILER_VERSION ${MAJOR}.${MINOR})
if(APPLE)
cmake_policy(GET CMP0025 APPLE_CLANG_POLICY)
if(NOT APPLE_CLANG_POLICY STREQUAL NEW)
message(STATUS "Conan: APPLE and Clang detected. Assuming apple-clang compiler. Set CMP0025 to avoid it")
set(_CONAN_SETTING_COMPILER apple-clang)
endif()
endif()
if(${_CONAN_SETTING_COMPILER} STREQUAL clang AND ${MAJOR} GREATER 7)
set(_CONAN_SETTING_COMPILER_VERSION ${MAJOR})
endif()
if (USING_CXX)
conan_cmake_detect_unix_libcxx(_LIBCXX)
set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX})
endif ()
elseif(${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL MSVC)
set(_VISUAL "Visual Studio")
_get_msvc_ide_version(_VISUAL_VERSION)
if("${_VISUAL_VERSION}" STREQUAL "")
message(FATAL_ERROR "Conan: Visual Studio not recognized")
else()
set(_CONAN_SETTING_COMPILER ${_VISUAL})
set(_CONAN_SETTING_COMPILER_VERSION ${_VISUAL_VERSION})
endif()
if(NOT _CONAN_SETTING_ARCH)
if (MSVC_${LANGUAGE}_ARCHITECTURE_ID MATCHES "64")
set(_CONAN_SETTING_ARCH x86_64)
elseif (MSVC_${LANGUAGE}_ARCHITECTURE_ID MATCHES "^ARM")
message(STATUS "Conan: Using default ARM architecture from MSVC")
set(_CONAN_SETTING_ARCH armv6)
elseif (MSVC_${LANGUAGE}_ARCHITECTURE_ID MATCHES "86")
set(_CONAN_SETTING_ARCH x86)
else ()
message(FATAL_ERROR "Conan: Unknown MSVC architecture [${MSVC_${LANGUAGE}_ARCHITECTURE_ID}]")
endif()
endif()
conan_cmake_detect_vs_runtime(_vs_runtime ${ARGV})
message(STATUS "Conan: Detected VS runtime: ${_vs_runtime}")
set(_CONAN_SETTING_COMPILER_RUNTIME ${_vs_runtime})
if (CMAKE_GENERATOR_TOOLSET)
set(_CONAN_SETTING_COMPILER_TOOLSET ${CMAKE_VS_PLATFORM_TOOLSET})
elseif(CMAKE_VS_PLATFORM_TOOLSET AND (CMAKE_GENERATOR STREQUAL "Ninja"))
set(_CONAN_SETTING_COMPILER_TOOLSET ${CMAKE_VS_PLATFORM_TOOLSET})
endif()
else()
message(FATAL_ERROR "Conan: compiler setup not recognized")
endif()
endmacro()
function(conan_cmake_settings result)
#message(STATUS "COMPILER " ${CMAKE_CXX_COMPILER})
#message(STATUS "COMPILER " ${CMAKE_CXX_COMPILER_ID})
#message(STATUS "VERSION " ${CMAKE_CXX_COMPILER_VERSION})
#message(STATUS "FLAGS " ${CMAKE_LANG_FLAGS})
#message(STATUS "LIB ARCH " ${CMAKE_CXX_LIBRARY_ARCHITECTURE})
#message(STATUS "BUILD TYPE " ${CMAKE_BUILD_TYPE})
#message(STATUS "GENERATOR " ${CMAKE_GENERATOR})
#message(STATUS "GENERATOR WIN64 " ${CMAKE_CL_64})
message(STATUS "Conan: Automatic detection of conan settings from cmake")
conan_parse_arguments(${ARGV})
_conan_detect_build_type(${ARGV})
_conan_check_system_name()
_conan_check_language()
_conan_detect_compiler(${ARGV})
# If profile is defined it is used
if(CMAKE_BUILD_TYPE STREQUAL "Debug" AND ARGUMENTS_DEBUG_PROFILE)
set(_APPLIED_PROFILES ${ARGUMENTS_DEBUG_PROFILE})
elseif(CMAKE_BUILD_TYPE STREQUAL "Release" AND ARGUMENTS_RELEASE_PROFILE)
set(_APPLIED_PROFILES ${ARGUMENTS_RELEASE_PROFILE})
elseif(CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo" AND ARGUMENTS_RELWITHDEBINFO_PROFILE)
set(_APPLIED_PROFILES ${ARGUMENTS_RELWITHDEBINFO_PROFILE})
elseif(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel" AND ARGUMENTS_MINSIZEREL_PROFILE)
set(_APPLIED_PROFILES ${ARGUMENTS_MINSIZEREL_PROFILE})
elseif(ARGUMENTS_PROFILE)
set(_APPLIED_PROFILES ${ARGUMENTS_PROFILE})
endif()
foreach(ARG ${_APPLIED_PROFILES})
set(_SETTINGS ${_SETTINGS} -pr=${ARG})
endforeach()
foreach(ARG ${ARGUMENTS_PROFILE_BUILD})
conan_check(VERSION 1.24.0 REQUIRED DETECT_QUIET)
set(_SETTINGS ${_SETTINGS} -pr:b=${ARG})
endforeach()
if(NOT _SETTINGS OR ARGUMENTS_PROFILE_AUTO STREQUAL "ALL")
set(ARGUMENTS_PROFILE_AUTO arch build_type compiler compiler.version
compiler.runtime compiler.libcxx compiler.toolset)
endif()
# remove any manually specified settings from the autodetected settings
foreach(ARG ${ARGUMENTS_SETTINGS})
string(REGEX MATCH "[^=]*" MANUAL_SETTING "${ARG}")
message(STATUS "Conan: ${MANUAL_SETTING} was added as an argument. Not using the autodetected one.")
list(REMOVE_ITEM ARGUMENTS_PROFILE_AUTO "${MANUAL_SETTING}")
endforeach()
# Automatic from CMake
foreach(ARG ${ARGUMENTS_PROFILE_AUTO})
string(TOUPPER ${ARG} _arg_name)
string(REPLACE "." "_" _arg_name ${_arg_name})
if(_CONAN_SETTING_${_arg_name})
set(_SETTINGS ${_SETTINGS} -s ${ARG}=${_CONAN_SETTING_${_arg_name}})
endif()
endforeach()
foreach(ARG ${ARGUMENTS_SETTINGS})
set(_SETTINGS ${_SETTINGS} -s ${ARG})
endforeach()
message(STATUS "Conan: Settings= ${_SETTINGS}")
set(${result} ${_SETTINGS} PARENT_SCOPE)
endfunction()
function(conan_cmake_detect_unix_libcxx result)
# Take into account any -stdlib in compile options
get_directory_property(compile_options DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} COMPILE_OPTIONS)
string(GENEX_STRIP "${compile_options}" compile_options)
# Take into account any _GLIBCXX_USE_CXX11_ABI in compile definitions
get_directory_property(defines DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} COMPILE_DEFINITIONS)
string(GENEX_STRIP "${defines}" defines)
foreach(define ${defines})
if(define MATCHES "_GLIBCXX_USE_CXX11_ABI")
if(define MATCHES "^-D")
set(compile_options ${compile_options} "${define}")
else()
set(compile_options ${compile_options} "-D${define}")
endif()
endif()
endforeach()
# add additional compiler options ala cmRulePlaceholderExpander::ExpandRuleVariable
set(EXPAND_CXX_COMPILER ${CMAKE_CXX_COMPILER})
if(CMAKE_CXX_COMPILER_ARG1)
# CMake splits CXX="foo bar baz" into CMAKE_CXX_COMPILER="foo", CMAKE_CXX_COMPILER_ARG1="bar baz"
# without this, ccache, winegcc, or other wrappers might lose all their arguments
separate_arguments(SPLIT_CXX_COMPILER_ARG1 NATIVE_COMMAND ${CMAKE_CXX_COMPILER_ARG1})
list(APPEND EXPAND_CXX_COMPILER ${SPLIT_CXX_COMPILER_ARG1})
endif()
if(CMAKE_CXX_COMPILE_OPTIONS_TARGET AND CMAKE_CXX_COMPILER_TARGET)
# without --target= we may be calling the wrong underlying GCC
list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_TARGET}${CMAKE_CXX_COMPILER_TARGET}")
endif()
if(CMAKE_CXX_COMPILE_OPTIONS_EXTERNAL_TOOLCHAIN AND CMAKE_CXX_COMPILER_EXTERNAL_TOOLCHAIN)
list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_EXTERNAL_TOOLCHAIN}${CMAKE_CXX_COMPILER_EXTERNAL_TOOLCHAIN}")
endif()
if(CMAKE_CXX_COMPILE_OPTIONS_SYSROOT)
# without --sysroot= we may find the wrong #include <string>
if(CMAKE_SYSROOT_COMPILE)
list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_SYSROOT}${CMAKE_SYSROOT_COMPILE}")
elseif(CMAKE_SYSROOT)
list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_SYSROOT}${CMAKE_SYSROOT}")
endif()
endif()
separate_arguments(SPLIT_CXX_FLAGS NATIVE_COMMAND ${CMAKE_CXX_FLAGS})
if(CMAKE_OSX_SYSROOT)
set(xcode_sysroot_option "--sysroot=${CMAKE_OSX_SYSROOT}")
endif()
execute_process(
COMMAND ${CMAKE_COMMAND} -E echo "#include <string>"
COMMAND ${EXPAND_CXX_COMPILER} ${SPLIT_CXX_FLAGS} -x c++ ${xcode_sysroot_option} ${compile_options} -E -dM -
OUTPUT_VARIABLE string_defines
)
if(string_defines MATCHES "#define __GLIBCXX__")
# Allow -D_GLIBCXX_USE_CXX11_ABI=ON/OFF as argument to cmake
if(DEFINED _GLIBCXX_USE_CXX11_ABI)
if(_GLIBCXX_USE_CXX11_ABI)
set(${result} libstdc++11 PARENT_SCOPE)
return()
else()
set(${result} libstdc++ PARENT_SCOPE)
return()
endif()
endif()
if(string_defines MATCHES "#define _GLIBCXX_USE_CXX11_ABI 1\n")
set(${result} libstdc++11 PARENT_SCOPE)
else()
# Either the compiler is missing the define because it is old, and so
# it can't use the new abi, or the compiler was configured to use the
# old abi by the user or distro (e.g. devtoolset on RHEL/CentOS)
set(${result} libstdc++ PARENT_SCOPE)
endif()
else()
set(${result} libc++ PARENT_SCOPE)
endif()
endfunction()
function(conan_cmake_detect_vs_runtime result)
conan_parse_arguments(${ARGV})
if(ARGUMENTS_BUILD_TYPE)
set(build_type "${ARGUMENTS_BUILD_TYPE}")
elseif(CMAKE_BUILD_TYPE)
set(build_type "${CMAKE_BUILD_TYPE}")
else()
message(FATAL_ERROR "Please specify in command line CMAKE_BUILD_TYPE (-DCMAKE_BUILD_TYPE=Release)")
endif()
if(build_type)
string(TOUPPER "${build_type}" build_type)
endif()
set(variables CMAKE_CXX_FLAGS_${build_type} CMAKE_C_FLAGS_${build_type} CMAKE_CXX_FLAGS CMAKE_C_FLAGS)
foreach(variable ${variables})
if(NOT "${${variable}}" STREQUAL "")
string(REPLACE " " ";" flags "${${variable}}")
foreach (flag ${flags})
if("${flag}" STREQUAL "/MD" OR "${flag}" STREQUAL "/MDd" OR "${flag}" STREQUAL "/MT" OR "${flag}" STREQUAL "/MTd")
string(SUBSTRING "${flag}" 1 -1 runtime)
set(${result} "${runtime}" PARENT_SCOPE)
return()
endif()
endforeach()
endif()
endforeach()
if("${build_type}" STREQUAL "DEBUG")
set(${result} "MDd" PARENT_SCOPE)
else()
set(${result} "MD" PARENT_SCOPE)
endif()
endfunction()
function(_collect_settings result)
set(ARGUMENTS_PROFILE_AUTO arch build_type compiler compiler.version
compiler.runtime compiler.libcxx compiler.toolset)
foreach(ARG ${ARGUMENTS_PROFILE_AUTO})
string(TOUPPER ${ARG} _arg_name)
string(REPLACE "." "_" _arg_name ${_arg_name})
if(_CONAN_SETTING_${_arg_name})
set(detected_setings ${detected_setings} ${ARG}=${_CONAN_SETTING_${_arg_name}})
endif()
endforeach()
set(${result} ${detected_setings} PARENT_SCOPE)
endfunction()
function(conan_cmake_autodetect detected_settings)
_conan_detect_build_type(${ARGV})
_conan_check_system_name()
_conan_check_language()
_conan_detect_compiler(${ARGV})
_collect_settings(collected_settings)
set(${detected_settings} ${collected_settings} PARENT_SCOPE)
endfunction()
macro(conan_parse_arguments)
set(options BASIC_SETUP CMAKE_TARGETS UPDATE KEEP_RPATHS NO_LOAD NO_OUTPUT_DIRS OUTPUT_QUIET NO_IMPORTS SKIP_STD)
set(oneValueArgs CONANFILE ARCH BUILD_TYPE INSTALL_FOLDER CONAN_COMMAND)
set(multiValueArgs DEBUG_PROFILE RELEASE_PROFILE RELWITHDEBINFO_PROFILE MINSIZEREL_PROFILE
PROFILE REQUIRES OPTIONS IMPORTS SETTINGS BUILD ENV GENERATORS PROFILE_AUTO
INSTALL_ARGS CONFIGURATION_TYPES PROFILE_BUILD BUILD_REQUIRES)
cmake_parse_arguments(ARGUMENTS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
endmacro()
function(old_conan_cmake_install)
# Calls "conan install"
# Argument BUILD is equivalant to --build={missing, PkgName,...} or
# --build when argument is 'BUILD all' (which builds all packages from source)
# Argument CONAN_COMMAND, to specify the conan path, e.g. in case of running from source
# cmake does not identify conan as command, even if it is +x and it is in the path
conan_parse_arguments(${ARGV})
if(CONAN_CMAKE_MULTI)
set(ARGUMENTS_GENERATORS ${ARGUMENTS_GENERATORS} cmake_multi)
else()
set(ARGUMENTS_GENERATORS ${ARGUMENTS_GENERATORS} cmake)
endif()
set(CONAN_BUILD_POLICY "")
foreach(ARG ${ARGUMENTS_BUILD})
if(${ARG} STREQUAL "all")
set(CONAN_BUILD_POLICY ${CONAN_BUILD_POLICY} --build)
break()
else()
set(CONAN_BUILD_POLICY ${CONAN_BUILD_POLICY} --build=${ARG})
endif()
endforeach()
if(ARGUMENTS_CONAN_COMMAND)
set(CONAN_CMD ${ARGUMENTS_CONAN_COMMAND})
else()
conan_check(REQUIRED)
endif()
set(CONAN_OPTIONS "")
if(ARGUMENTS_CONANFILE)
if(IS_ABSOLUTE ${ARGUMENTS_CONANFILE})
set(CONANFILE ${ARGUMENTS_CONANFILE})
else()
set(CONANFILE ${CMAKE_CURRENT_SOURCE_DIR}/${ARGUMENTS_CONANFILE})
endif()
else()
set(CONANFILE ".")
endif()
foreach(ARG ${ARGUMENTS_OPTIONS})
set(CONAN_OPTIONS ${CONAN_OPTIONS} -o=${ARG})
endforeach()
if(ARGUMENTS_UPDATE)
set(CONAN_INSTALL_UPDATE --update)
endif()
if(ARGUMENTS_NO_IMPORTS)
set(CONAN_INSTALL_NO_IMPORTS --no-imports)
endif()
set(CONAN_INSTALL_FOLDER "")
if(ARGUMENTS_INSTALL_FOLDER)
set(CONAN_INSTALL_FOLDER -if=${ARGUMENTS_INSTALL_FOLDER})
endif()
foreach(ARG ${ARGUMENTS_GENERATORS})
set(CONAN_GENERATORS ${CONAN_GENERATORS} -g=${ARG})
endforeach()
foreach(ARG ${ARGUMENTS_ENV})
set(CONAN_ENV_VARS ${CONAN_ENV_VARS} -e=${ARG})
endforeach()
set(conan_args install ${CONANFILE} ${settings} ${CONAN_ENV_VARS} ${CONAN_GENERATORS} ${CONAN_BUILD_POLICY} ${CONAN_INSTALL_UPDATE} ${CONAN_INSTALL_NO_IMPORTS} ${CONAN_OPTIONS} ${CONAN_INSTALL_FOLDER} ${ARGUMENTS_INSTALL_ARGS})
string (REPLACE ";" " " _conan_args "${conan_args}")
message(STATUS "Conan executing: ${CONAN_CMD} ${_conan_args}")
if(ARGUMENTS_OUTPUT_QUIET)
execute_process(COMMAND ${CONAN_CMD} ${conan_args}
RESULT_VARIABLE return_code
OUTPUT_VARIABLE conan_output
ERROR_VARIABLE conan_output
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
else()
execute_process(COMMAND ${CONAN_CMD} ${conan_args}
RESULT_VARIABLE return_code
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
endif()
if(NOT "${return_code}" STREQUAL "0")
message(FATAL_ERROR "Conan install failed='${return_code}'")
endif()
endfunction()
function(conan_cmake_install)
if(DEFINED CONAN_COMMAND)
set(CONAN_CMD ${CONAN_COMMAND})
else()
conan_check(REQUIRED)
endif()
set(installOptions UPDATE NO_IMPORTS OUTPUT_QUIET ERROR_QUIET)
set(installOneValueArgs PATH_OR_REFERENCE REFERENCE REMOTE LOCKFILE LOCKFILE_OUT LOCKFILE_NODE_ID INSTALL_FOLDER)
set(installMultiValueArgs GENERATOR BUILD ENV ENV_HOST ENV_BUILD OPTIONS_HOST OPTIONS OPTIONS_BUILD PROFILE
PROFILE_HOST PROFILE_BUILD SETTINGS SETTINGS_HOST SETTINGS_BUILD)
cmake_parse_arguments(ARGS "${installOptions}" "${installOneValueArgs}" "${installMultiValueArgs}" ${ARGN})
foreach(arg ${installOptions})
if(ARGS_${arg})
set(${arg} ${${arg}} ${ARGS_${arg}})
endif()
endforeach()
foreach(arg ${installOneValueArgs})
if(DEFINED ARGS_${arg})
if("${arg}" STREQUAL "REMOTE")
set(flag "--remote")
elseif("${arg}" STREQUAL "LOCKFILE")
set(flag "--lockfile")
elseif("${arg}" STREQUAL "LOCKFILE_OUT")
set(flag "--lockfile-out")
elseif("${arg}" STREQUAL "LOCKFILE_NODE_ID")
set(flag "--lockfile-node-id")
elseif("${arg}" STREQUAL "INSTALL_FOLDER")
set(flag "--install-folder")
endif()
set(${arg} ${${arg}} ${flag} ${ARGS_${arg}})
endif()
endforeach()
foreach(arg ${installMultiValueArgs})
if(DEFINED ARGS_${arg})
if("${arg}" STREQUAL "GENERATOR")
set(flag "--generator")
elseif("${arg}" STREQUAL "BUILD")
set(flag "--build")
elseif("${arg}" STREQUAL "ENV")
set(flag "--env")
elseif("${arg}" STREQUAL "ENV_HOST")
set(flag "--env:host")
elseif("${arg}" STREQUAL "ENV_BUILD")
set(flag "--env:build")
elseif("${arg}" STREQUAL "OPTIONS")
set(flag "--options")
elseif("${arg}" STREQUAL "OPTIONS_HOST")
set(flag "--options:host")
elseif("${arg}" STREQUAL "OPTIONS_BUILD")
set(flag "--options:build")
elseif("${arg}" STREQUAL "PROFILE")
set(flag "--profile")
elseif("${arg}" STREQUAL "PROFILE_HOST")
set(flag "--profile:host")
elseif("${arg}" STREQUAL "PROFILE_BUILD")
set(flag "--profile:build")
elseif("${arg}" STREQUAL "SETTINGS")
set(flag "--settings")
elseif("${arg}" STREQUAL "SETTINGS_HOST")
set(flag "--settings:host")
elseif("${arg}" STREQUAL "SETTINGS_BUILD")
set(flag "--settings:build")
endif()
list(LENGTH ARGS_${arg} numargs)
foreach(item ${ARGS_${arg}})
if(${item} STREQUAL "all" AND ${arg} STREQUAL "BUILD")
set(${arg} "--build")
break()
endif()
set(${arg} ${${arg}} ${flag} ${item})
endforeach()
endif()
endforeach()
if(DEFINED UPDATE)
set(UPDATE --update)
endif()
if(DEFINED NO_IMPORTS)
set(NO_IMPORTS --no-imports)
endif()
set(install_args install ${PATH_OR_REFERENCE} ${REFERENCE} ${UPDATE} ${NO_IMPORTS} ${REMOTE} ${LOCKFILE} ${LOCKFILE_OUT} ${LOCKFILE_NODE_ID} ${INSTALL_FOLDER}
${GENERATOR} ${BUILD} ${ENV} ${ENV_HOST} ${ENV_BUILD} ${OPTIONS} ${OPTIONS_HOST} ${OPTIONS_BUILD}
${PROFILE} ${PROFILE_HOST} ${PROFILE_BUILD} ${SETTINGS} ${SETTINGS_HOST} ${SETTINGS_BUILD})
string(REPLACE ";" " " _install_args "${install_args}")
message(STATUS "Conan executing: ${CONAN_CMD} ${_install_args}")
if(ARGS_OUTPUT_QUIET)
set(OUTPUT_OPT OUTPUT_QUIET)
endif()
if(ARGS_ERROR_QUIET)
set(ERROR_OPT ERROR_QUIET)
endif()
execute_process(COMMAND ${CONAN_CMD} ${install_args}
RESULT_VARIABLE return_code
${OUTPUT_OPT}
${ERROR_OPT}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
if(NOT "${return_code}" STREQUAL "0")
if (ARGS_ERROR_QUIET)
message(WARNING "Conan install failed='${return_code}'")
else()
message(FATAL_ERROR "Conan install failed='${return_code}'")
endif()
endif()
endfunction()
function(conan_cmake_setup_conanfile)
conan_parse_arguments(${ARGV})
if(ARGUMENTS_CONANFILE)
get_filename_component(_CONANFILE_NAME ${ARGUMENTS_CONANFILE} NAME)
# configure_file will make sure cmake re-runs when conanfile is updated
configure_file(${ARGUMENTS_CONANFILE} ${CMAKE_CURRENT_BINARY_DIR}/${_CONANFILE_NAME}.junk COPYONLY)
file(REMOVE ${CMAKE_CURRENT_BINARY_DIR}/${_CONANFILE_NAME}.junk)
else()
conan_cmake_generate_conanfile(ON ${ARGV})
endif()
endfunction()
function(conan_cmake_configure)
conan_cmake_generate_conanfile(OFF ${ARGV})
endfunction()
# Generate, writing in disk a conanfile.txt with the requires, options, and imports
# specified as arguments
# This will be considered as temporary file, generated in CMAKE_CURRENT_BINARY_DIR)
function(conan_cmake_generate_conanfile DEFAULT_GENERATOR)
conan_parse_arguments(${ARGV})
set(_FN "${CMAKE_CURRENT_BINARY_DIR}/conanfile.txt")
file(WRITE ${_FN} "")
if(DEFINED ARGUMENTS_REQUIRES)
file(APPEND ${_FN} "[requires]\n")
foreach(REQUIRE ${ARGUMENTS_REQUIRES})
file(APPEND ${_FN} ${REQUIRE} "\n")
endforeach()
endif()
if (DEFAULT_GENERATOR OR DEFINED ARGUMENTS_GENERATORS)
file(APPEND ${_FN} "[generators]\n")
if (DEFAULT_GENERATOR)
file(APPEND ${_FN} "cmake\n")
endif()
if (DEFINED ARGUMENTS_GENERATORS)
foreach(GENERATOR ${ARGUMENTS_GENERATORS})
file(APPEND ${_FN} ${GENERATOR} "\n")
endforeach()
endif()
endif()
if(DEFINED ARGUMENTS_BUILD_REQUIRES)
file(APPEND ${_FN} "[build_requires]\n")
foreach(BUILD_REQUIRE ${ARGUMENTS_BUILD_REQUIRES})
file(APPEND ${_FN} ${BUILD_REQUIRE} "\n")
endforeach()
endif()
if(DEFINED ARGUMENTS_IMPORTS)
file(APPEND ${_FN} "[imports]\n")
foreach(IMPORTS ${ARGUMENTS_IMPORTS})
file(APPEND ${_FN} ${IMPORTS} "\n")
endforeach()
endif()
if(DEFINED ARGUMENTS_OPTIONS)
file(APPEND ${_FN} "[options]\n")
foreach(OPTION ${ARGUMENTS_OPTIONS})
file(APPEND ${_FN} ${OPTION} "\n")
endforeach()
endif()
endfunction()
macro(conan_load_buildinfo)
if(CONAN_CMAKE_MULTI)
set(_CONANBUILDINFO conanbuildinfo_multi.cmake)
else()
set(_CONANBUILDINFO conanbuildinfo.cmake)
endif()
if(ARGUMENTS_INSTALL_FOLDER)
set(_CONANBUILDINFOFOLDER ${ARGUMENTS_INSTALL_FOLDER})
else()
set(_CONANBUILDINFOFOLDER ${CMAKE_CURRENT_BINARY_DIR})
endif()
# Checks for the existence of conanbuildinfo.cmake, and loads it
# important that it is macro, so variables defined at parent scope
if(EXISTS "${_CONANBUILDINFOFOLDER}/${_CONANBUILDINFO}")
message(STATUS "Conan: Loading ${_CONANBUILDINFO}")
include(${_CONANBUILDINFOFOLDER}/${_CONANBUILDINFO})
else()
message(FATAL_ERROR "${_CONANBUILDINFO} doesn't exist in ${CMAKE_CURRENT_BINARY_DIR}")
endif()
endmacro()
macro(conan_cmake_run)
conan_parse_arguments(${ARGV})
if(ARGUMENTS_CONFIGURATION_TYPES AND NOT CMAKE_CONFIGURATION_TYPES)
message(WARNING "CONFIGURATION_TYPES should only be specified for multi-configuration generators")
elseif(ARGUMENTS_CONFIGURATION_TYPES AND ARGUMENTS_BUILD_TYPE)
message(WARNING "CONFIGURATION_TYPES and BUILD_TYPE arguments should not be defined at the same time.")
endif()
if(CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE AND NOT CONAN_EXPORTED
AND NOT ARGUMENTS_BUILD_TYPE)
set(CONAN_CMAKE_MULTI ON)
if (NOT ARGUMENTS_CONFIGURATION_TYPES)
set(ARGUMENTS_CONFIGURATION_TYPES "Release;Debug")
endif()
message(STATUS "Conan: Using cmake-multi generator")
else()
set(CONAN_CMAKE_MULTI OFF)
endif()
if(NOT CONAN_EXPORTED)
conan_cmake_setup_conanfile(${ARGV})
if(CONAN_CMAKE_MULTI)
foreach(CMAKE_BUILD_TYPE ${ARGUMENTS_CONFIGURATION_TYPES})
set(ENV{CONAN_IMPORT_PATH} ${CMAKE_BUILD_TYPE})
conan_cmake_settings(settings ${ARGV})
old_conan_cmake_install(SETTINGS ${settings} ${ARGV})
endforeach()
set(CMAKE_BUILD_TYPE)
else()
conan_cmake_settings(settings ${ARGV})
old_conan_cmake_install(SETTINGS ${settings} ${ARGV})
endif()
endif()
if (NOT ARGUMENTS_NO_LOAD)
conan_load_buildinfo()
endif()
if(ARGUMENTS_BASIC_SETUP)
foreach(_option CMAKE_TARGETS KEEP_RPATHS NO_OUTPUT_DIRS SKIP_STD)
if(ARGUMENTS_${_option})
if(${_option} STREQUAL "CMAKE_TARGETS")
list(APPEND _setup_options "TARGETS")
else()
list(APPEND _setup_options ${_option})
endif()
endif()
endforeach()
conan_basic_setup(${_setup_options})
endif()
endmacro()
macro(conan_check)
# Checks conan availability in PATH
# Arguments REQUIRED, DETECT_QUIET and VERSION are optional
# Example usage:
# conan_check(VERSION 1.0.0 REQUIRED)
set(options REQUIRED DETECT_QUIET)
set(oneValueArgs VERSION)
cmake_parse_arguments(CONAN "${options}" "${oneValueArgs}" "" ${ARGN})
if(NOT CONAN_DETECT_QUIET)
message(STATUS "Conan: checking conan executable")
endif()
find_program(CONAN_CMD conan)
if(NOT CONAN_CMD AND CONAN_REQUIRED)
message(FATAL_ERROR "Conan executable not found! Please install conan.")
endif()
if(NOT CONAN_DETECT_QUIET)
message(STATUS "Conan: Found program ${CONAN_CMD}")
endif()
execute_process(COMMAND ${CONAN_CMD} --version
RESULT_VARIABLE return_code
OUTPUT_VARIABLE CONAN_VERSION_OUTPUT
ERROR_VARIABLE CONAN_VERSION_OUTPUT)
if(NOT "${return_code}" STREQUAL "0")
message(FATAL_ERROR "Conan --version failed='${return_code}'")
endif()
if(NOT CONAN_DETECT_QUIET)
string(STRIP "${CONAN_VERSION_OUTPUT}" _CONAN_VERSION_OUTPUT)
message(STATUS "Conan: Version found ${_CONAN_VERSION_OUTPUT}")
endif()
if(DEFINED CONAN_VERSION)
string(REGEX MATCH ".*Conan version ([0-9]+\\.[0-9]+\\.[0-9]+)" FOO
"${CONAN_VERSION_OUTPUT}")
if(${CMAKE_MATCH_1} VERSION_LESS ${CONAN_VERSION})
message(FATAL_ERROR "Conan outdated. Installed: ${CMAKE_MATCH_1}, \
required: ${CONAN_VERSION}. Consider updating via 'pip \
install conan==${CONAN_VERSION}'.")
endif()
endif()
endmacro()
function(conan_add_remote)
# Adds a remote
# Arguments URL and NAME are required, INDEX, COMMAND and VERIFY_SSL are optional
# Example usage:
# conan_add_remote(NAME bincrafters INDEX 1
# URL https://api.bintray.com/conan/bincrafters/public-conan
# VERIFY_SSL True)
set(oneValueArgs URL NAME INDEX COMMAND VERIFY_SSL)
cmake_parse_arguments(CONAN "" "${oneValueArgs}" "" ${ARGN})
if(DEFINED CONAN_INDEX)
set(CONAN_INDEX_ARG "-i ${CONAN_INDEX}")
endif()
if(DEFINED CONAN_COMMAND)
set(CONAN_CMD ${CONAN_COMMAND})
else()
conan_check(REQUIRED DETECT_QUIET)
endif()
set(CONAN_VERIFY_SSL_ARG "True")
if(DEFINED CONAN_VERIFY_SSL)
set(CONAN_VERIFY_SSL_ARG ${CONAN_VERIFY_SSL})
endif()
message(STATUS "Conan: Adding ${CONAN_NAME} remote repository (${CONAN_URL}) verify ssl (${CONAN_VERIFY_SSL_ARG})")
execute_process(COMMAND ${CONAN_CMD} remote add ${CONAN_NAME} ${CONAN_INDEX_ARG} -f ${CONAN_URL} ${CONAN_VERIFY_SSL_ARG}
RESULT_VARIABLE return_code)
if(NOT "${return_code}" STREQUAL "0")
message(FATAL_ERROR "Conan remote failed='${return_code}'")
endif()
endfunction()
macro(conan_config_install)
# install a full configuration from a local or remote zip file
# Argument ITEM is required, arguments TYPE, SOURCE, TARGET and VERIFY_SSL are optional
# Example usage:
# conan_config_install(ITEM https://github.com/conan-io/cmake-conan.git
# TYPE git SOURCE source-folder TARGET target-folder VERIFY_SSL false)
set(oneValueArgs ITEM TYPE SOURCE TARGET VERIFY_SSL)
set(multiValueArgs ARGS)
cmake_parse_arguments(CONAN "" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
find_program(CONAN_CMD conan)
if(NOT CONAN_CMD AND CONAN_REQUIRED)
message(FATAL_ERROR "Conan executable not found!")
endif()
if(DEFINED CONAN_VERIFY_SSL)
set(CONAN_VERIFY_SSL_ARG "--verify-ssl=${CONAN_VERIFY_SSL}")
endif()
if(DEFINED CONAN_TYPE)
set(CONAN_TYPE_ARG "--type=${CONAN_TYPE}")
endif()
if(DEFINED CONAN_ARGS)
set(CONAN_ARGS_ARGS "--args=\"${CONAN_ARGS}\"")
endif()
if(DEFINED CONAN_SOURCE)
set(CONAN_SOURCE_ARGS "--source-folder=${CONAN_SOURCE}")
endif()
if(DEFINED CONAN_TARGET)
set(CONAN_TARGET_ARGS "--target-folder=${CONAN_TARGET}")
endif()
set (CONAN_CONFIG_INSTALL_ARGS ${CONAN_VERIFY_SSL_ARG}
${CONAN_TYPE_ARG}
${CONAN_ARGS_ARGS}
${CONAN_SOURCE_ARGS}
${CONAN_TARGET_ARGS})
message(STATUS "Conan: Installing config from ${CONAN_ITEM}")
execute_process(COMMAND ${CONAN_CMD} config install ${CONAN_ITEM} ${CONAN_CONFIG_INSTALL_ARGS}
RESULT_VARIABLE return_code)
if(NOT "${return_code}" STREQUAL "0")
message(FATAL_ERROR "Conan config failed='${return_code}'")
endif()
endmacro()
Sending build context to Docker daemon 918.7MB
Step 1/16 : FROM ubuntu:21.10
---> 22cd380ad224
Step 2/16 : RUN apt-get update && apt-get upgrade -y
---> Running in 92c5ad294b7e
Get:1 http://archive.ubuntu.com/ubuntu impish InRelease [270 kB]
Get:2 http://security.ubuntu.com/ubuntu impish-security InRelease [110 kB]
Get:3 http://archive.ubuntu.com/ubuntu impish-updates InRelease [115 kB]
Get:4 http://archive.ubuntu.com/ubuntu impish-backports InRelease [101 kB]
Get:5 http://security.ubuntu.com/ubuntu impish-security/main amd64 Packages [344 kB]
Get:6 http://archive.ubuntu.com/ubuntu impish/restricted amd64 Packages [110 kB]
Get:7 http://archive.ubuntu.com/ubuntu impish/main amd64 Packages [1793 kB]
Get:8 http://security.ubuntu.com/ubuntu impish-security/universe amd64 Packages [170 kB]
Get:9 http://security.ubuntu.com/ubuntu impish-security/multiverse amd64 Packages [1039 B]
Get:10 http://security.ubuntu.com/ubuntu impish-security/restricted amd64 Packages [269 kB]
Get:11 http://archive.ubuntu.com/ubuntu impish/multiverse amd64 Packages [256 kB]
Get:12 http://archive.ubuntu.com/ubuntu impish/universe amd64 Packages [16.7 MB]
Get:13 http://archive.ubuntu.com/ubuntu impish-updates/universe amd64 Packages [216 kB]
Get:14 http://archive.ubuntu.com/ubuntu impish-updates/main amd64 Packages [420 kB]
Get:15 http://archive.ubuntu.com/ubuntu impish-updates/multiverse amd64 Packages [8122 B]
Get:16 http://archive.ubuntu.com/ubuntu impish-updates/restricted amd64 Packages [276 kB]
Get:17 http://archive.ubuntu.com/ubuntu impish-backports/universe amd64 Packages [5199 B]
Fetched 21.2 MB in 3s (7337 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Removing intermediate container 92c5ad294b7e
---> ec57c8d9da25
Step 3/16 : RUN apt-get install mingw-w64-x86-64-dev g++-mingw-w64-x86-64-posix gcc-mingw-w64-x86-64-posix binutils-mingw-w64-x86-64 build-essential cmake git wget -y
---> Running in 6b825d90d267
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
binutils binutils-common binutils-x86-64-linux-gnu bzip2 ca-certificates
cmake-data cpp cpp-11 dirmngr dpkg-dev fakeroot fontconfig-config
fonts-dejavu-core g++ g++-11 gcc gcc-11 gcc-mingw-w64-base
gcc-mingw-w64-x86-64-posix-runtime git-man gnupg gnupg-l10n gnupg-utils gpg
gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm less
libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl
libarchive13 libasan6 libassuan0 libatomic1 libbinutils libbrotli1 libbsd0
libc-dev-bin libc-devtools libc6-dev libcbor0.6 libcc1-0 libcrypt-dev
libctf-nobfd0 libctf0 libcurl3-gnutls libcurl4 libdeflate0 libdpkg-perl
libedit2 liberror-perl libexpat1 libfakeroot libfido2-1
libfile-fcntllock-perl libfontconfig1 libfreetype6 libgcc-11-dev libgd3
libgdbm-compat4 libgdbm6 libgomp1 libicu67 libisl23 libitm1 libjbig0
libjpeg-turbo8 libjpeg8 libjsoncpp24 libksba8 libldap-2.5-0 libldap-common
liblocale-gettext-perl liblsan0 libmd0 libmpc3 libmpfr6 libnghttp2-14
libnpth0 libnsl-dev libperl5.32 libpng16-16 libpsl5 libquadmath0
libreadline8 librhash0 librtmp1 libsasl2-2 libsasl2-modules
libsasl2-modules-db libsqlite3-0 libssh-4 libstdc++-11-dev libtiff5
libtirpc-dev libtsan0 libubsan1 libuv1 libwebp6 libx11-6 libx11-data libxau6
libxcb1 libxdmcp6 libxext6 libxml2 libxmuu1 libxpm4 linux-libc-dev
lto-disabled-list make manpages manpages-dev mingw-w64-common netbase
openssh-client openssl patch perl perl-modules-5.32 pinentry-curses
publicsuffix readline-common rpcsvc-proto ucf xauth xz-utils
Suggested packages:
binutils-doc bzip2-doc cmake-doc ninja-build cpp-doc gcc-11-locales
dbus-user-session libpam-systemd pinentry-gnome3 tor debian-keyring
g++-multilib g++-11-multilib gcc-11-doc gcc-10-locales gcc-multilib autoconf
automake libtool flex bison gdb gcc-doc gcc-11-multilib gettext-base
git-daemon-run | git-daemon-sysvinit git-doc git-email git-gui gitk gitweb
git-cvs git-mediawiki git-svn parcimonie xloadimage scdaemon lrzip glibc-doc
bzr libgd-tools gdbm-l10n libsasl2-modules-gssapi-mit
| libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-modules-otp
libsasl2-modules-sql libstdc++-11-doc make-doc man-browser wine64 keychain
libpam-ssh monkeysphere ssh-askpass ed diffutils-doc perl-doc
libterm-readline-gnu-perl | libterm-readline-perl-perl
libtap-harness-archive-perl pinentry-doc readline-doc
The following NEW packages will be installed:
binutils binutils-common binutils-mingw-w64-x86-64 binutils-x86-64-linux-gnu
build-essential bzip2 ca-certificates cmake cmake-data cpp cpp-11 dirmngr
dpkg-dev fakeroot fontconfig-config fonts-dejavu-core g++ g++-11
g++-mingw-w64-x86-64-posix gcc gcc-11 gcc-mingw-w64-base
gcc-mingw-w64-x86-64-posix gcc-mingw-w64-x86-64-posix-runtime git git-man
gnupg gnupg-l10n gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server
gpgconf gpgsm less libalgorithm-diff-perl libalgorithm-diff-xs-perl
libalgorithm-merge-perl libarchive13 libasan6 libassuan0 libatomic1
libbinutils libbrotli1 libbsd0 libc-dev-bin libc-devtools libc6-dev
libcbor0.6 libcc1-0 libcrypt-dev libctf-nobfd0 libctf0 libcurl3-gnutls
libcurl4 libdeflate0 libdpkg-perl libedit2 liberror-perl libexpat1
libfakeroot libfido2-1 libfile-fcntllock-perl libfontconfig1 libfreetype6
libgcc-11-dev libgd3 libgdbm-compat4 libgdbm6 libgomp1 libicu67 libisl23
libitm1 libjbig0 libjpeg-turbo8 libjpeg8 libjsoncpp24 libksba8 libldap-2.5-0
libldap-common liblocale-gettext-perl liblsan0 libmd0 libmpc3 libmpfr6
libnghttp2-14 libnpth0 libnsl-dev libperl5.32 libpng16-16 libpsl5
libquadmath0 libreadline8 librhash0 librtmp1 libsasl2-2 libsasl2-modules
libsasl2-modules-db libsqlite3-0 libssh-4 libstdc++-11-dev libtiff5
libtirpc-dev libtsan0 libubsan1 libuv1 libwebp6 libx11-6 libx11-data libxau6
libxcb1 libxdmcp6 libxext6 libxml2 libxmuu1 libxpm4 linux-libc-dev
lto-disabled-list make manpages manpages-dev mingw-w64-common
mingw-w64-x86-64-dev netbase openssh-client openssl patch perl
perl-modules-5.32 pinentry-curses publicsuffix readline-common rpcsvc-proto
ucf wget xauth xz-utils
0 upgraded, 138 newly installed, 0 to remove and 0 not upgraded.
Need to get 292 MB of archives.
After this operation, 1148 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu impish/main amd64 liblocale-gettext-perl amd64 1.07-4build1 [16.9 kB]
Get:2 http://archive.ubuntu.com/ubuntu impish/main amd64 perl-modules-5.32 all 5.32.1-3ubuntu3 [2945 kB]
Get:3 http://archive.ubuntu.com/ubuntu impish/main amd64 libgdbm6 amd64 1.19-2 [27.5 kB]
Get:4 http://archive.ubuntu.com/ubuntu impish/main amd64 libgdbm-compat4 amd64 1.19-2 [6236 B]
Get:5 http://archive.ubuntu.com/ubuntu impish/main amd64 libperl5.32 amd64 5.32.1-3ubuntu3 [4713 kB]
Get:6 http://archive.ubuntu.com/ubuntu impish/main amd64 perl amd64 5.32.1-3ubuntu3 [227 kB]
Get:7 http://archive.ubuntu.com/ubuntu impish-updates/main amd64 openssl amd64 1.1.1l-1ubuntu1.2 [651 kB]
Get:8 http://archive.ubuntu.com/ubuntu impish/main amd64 ca-certificates all 20210119ubuntu1 [149 kB]
Get:9 http://archive.ubuntu.com/ubuntu impish/main amd64 less amd64 551-2 [123 kB]
Get:10 http://archive.ubuntu.com/ubuntu impish/main amd64 libmd0 amd64 1.0.3-3build1 [21.5 kB]
Get:11 http://archive.ubuntu.com/ubuntu impish/main amd64 libbsd0 amd64 0.11.3-1ubuntu2 [41.1 kB]
Get:12 http://archive.ubuntu.com/ubuntu impish-updates/main amd64 libexpat1 amd64 2.4.1-2ubuntu0.3 [91.2 kB]
Get:13 http://archive.ubuntu.com/ubuntu impish/main amd64 libicu67 amd64 67.1-7ubuntu1 [10.1 MB]
Get:14 http://archive.ubuntu.com/ubuntu impish/main amd64 readline-common all 8.1-2 [54.1 kB]
Get:15 http://archive.ubuntu.com/ubuntu impish/main amd64 libreadline8 amd64 8.1-2 [138 kB]
Get:16 http://archive.ubuntu.com/ubuntu impish/main amd64 libsqlite3-0 amd64 3.35.5-1 [601 kB]
Get:17 http://archive.ubuntu.com/ubuntu impish-updates/main amd64 libxml2 amd64 2.9.12+dfsg-4ubuntu0.1 [762 kB]
Get:18 http://archive.ubuntu.com/ubuntu impish/main amd64 netbase all 6.3 [12.9 kB]
Get:19 http://archive.ubuntu.com/ubuntu impish/main amd64 ucf all 3.0043 [56.1 kB]
Get:20 http://archive.ubuntu.com/ubuntu impish/main amd64 libcbor0.6 amd64 0.6.0-0ubuntu3 [21.7 kB]
Get:21 http://archive.ubuntu.com/ubuntu impish/main amd64 libedit2 amd64 3.1-20191231-2build1 [97.4 kB]
Get:22 http://archive.ubuntu.com/ubuntu impish/main amd64 libfido2-1 amd64 1.6.0-2build1 [58.1 kB]
Get:23 http://archive.ubuntu.com/ubuntu impish/main amd64 libpng16-16 amd64 1.6.37-3build4 [191 kB]
Get:24 http://archive.ubuntu.com/ubuntu impish/main amd64 libpsl5 amd64 0.21.0-1.2 [53.5 kB]
Get:25 http://archive.ubuntu.com/ubuntu impish/main amd64 libuv1 amd64 1.40.0-2ubuntu1 [90.9 kB]
Get:26 http://archive.ubuntu.com/ubuntu impish/main amd64 libxau6 amd64 1:1.0.9-1build3 [7360 B]
Get:27 http://archive.ubuntu.com/ubuntu impish/main amd64 libxdmcp6 amd64 1:1.1.3-0ubuntu4 [11.0 kB]
Get:28 http://archive.ubuntu.com/ubuntu impish/main amd64 libxcb1 amd64 1.14-3ubuntu1 [45.3 kB]
Get:29 http://archive.ubuntu.com/ubuntu impish/main amd64 libx11-data all 2:1.7.2-1 [123 kB]
Get:30 http://archive.ubuntu.com/ubuntu impish/main amd64 libx11-6 amd64 2:1.7.2-1 [664 kB]
Get:31 http://archive.ubuntu.com/ubuntu impish/main amd64 libxext6 amd64 2:1.3.4-0ubuntu3 [28.9 kB]
Get:32 http://archive.ubuntu.com/ubuntu impish/main amd64 libxmuu1 amd64 2:1.1.3-0ubuntu1 [9728 B]
Get:33 http://archive.ubuntu.com/ubuntu impish/main amd64 manpages all 5.10-1ubuntu1 [1375 kB]
Get:34 http://archive.ubuntu.com/ubuntu impish-updates/main amd64 openssh-client amd64 1:8.4p1-6ubuntu2.1 [771 kB]
Get:35 http://archive.ubuntu.com/ubuntu impish/main amd64 publicsuffix all 20210108.1309-1 [116 kB]
Get:36 http://archive.ubuntu.com/ubuntu impish/main amd64 wget amd64 1.21-1ubuntu3 [351 kB]
Get:37 http://archive.ubuntu.com/ubuntu impish/main amd64 xauth amd64 1:1.1-1 [24.8 kB]
Get:38 http://archive.ubuntu.com/ubuntu impish/main amd64 xz-utils amd64 5.2.5-2 [82.0 kB]
Get:39 http://archive.ubuntu.com/ubuntu impish/main amd64 binutils-common amd64 2.37-7ubuntu1 [212 kB]
Get:40 http://archive.ubuntu.com/ubuntu impish/main amd64 libbinutils amd64 2.37-7ubuntu1 [654 kB]
Get:41 http://archive.ubuntu.com/ubuntu impish/main amd64 libctf-nobfd0 amd64 2.37-7ubuntu1 [106 kB]
Get:42 http://archive.ubuntu.com/ubuntu impish/main amd64 libctf0 amd64 2.37-7ubuntu1 [103 kB]
Get:43 http://archive.ubuntu.com/ubuntu impish/main amd64 binutils-x86-64-linux-gnu amd64 2.37-7ubuntu1 [2315 kB]
Get:44 http://archive.ubuntu.com/ubuntu impish/main amd64 binutils amd64 2.37-7ubuntu1 [3190 B]
Get:45 http://archive.ubuntu.com/ubuntu impish-updates/main amd64 libc-dev-bin amd64 2.34-0ubuntu3.2 [20.3 kB]
Get:46 http://archive.ubuntu.com/ubuntu impish-updates/main amd64 linux-libc-dev amd64 5.13.0-37.42 [1284 kB]
Get:47 http://archive.ubuntu.com/ubuntu impish/main amd64 libcrypt-dev amd64 1:4.4.18-4ubuntu1 [104 kB]
Get:48 http://archive.ubuntu.com/ubuntu impish/main amd64 rpcsvc-proto amd64 1.4.2-0ubuntu5 [68.4 kB]
Get:49 http://archive.ubuntu.com/ubuntu impish/main amd64 libtirpc-dev amd64 1.3.2-2 [192 kB]
Get:50 http://archive.ubuntu.com/ubuntu impish/main amd64 libnsl-dev amd64 1.3.0-2build1 [71.2 kB]
Get:51 http://archive.ubuntu.com/ubuntu impish-updates/main amd64 libc6-dev amd64 2.34-0ubuntu3.2 [1885 kB]
Get:52 http://archive.ubuntu.com/ubuntu impish/main amd64 libisl23 amd64 0.24-1 [668 kB]
Get:53 http://archive.ubuntu.com/ubuntu impish/main amd64 libmpfr6 amd64 4.1.0-3build1 [1400 kB]
Get:54 http://archive.ubuntu.com/ubuntu impish/main amd64 libmpc3 amd64 1.2.0-1build1 [44.1 kB]
Get:55 http://archive.ubuntu.com/ubuntu impish/main amd64 cpp-11 amd64 11.2.0-7ubuntu2 [50.6 MB]
Get:56 http://archive.ubuntu.com/ubuntu impish/main amd64 cpp amd64 4:11.2.0-1ubuntu1 [27.7 kB]
Get:57 http://archive.ubuntu.com/ubuntu impish/main amd64 libcc1-0 amd64 11.2.0-7ubuntu2 [53.9 kB]
Get:58 http://archive.ubuntu.com/ubuntu impish/main amd64 libgomp1 amd64 11.2.0-7ubuntu2 [117 kB]
Get:59 http://archive.ubuntu.com/ubuntu impish/main amd64 libitm1 amd64 11.2.0-7ubuntu2 [30.0 kB]
Get:60 http://archive.ubuntu.com/ubuntu impish/main amd64 libatomic1 amd64 11.2.0-7ubuntu2 [10.0 kB]
Get:61 http://archive.ubuntu.com/ubuntu impish/main amd64 libasan6 amd64 11.2.0-7ubuntu2 [2280 kB]
Get:62 http://archive.ubuntu.com/ubuntu impish/main amd64 liblsan0 amd64 11.2.0-7ubuntu2 [974 kB]
Get:63 http://archive.ubuntu.com/ubuntu impish/main amd64 libtsan0 amd64 11.2.0-7ubuntu2 [2259 kB]
Get:64 http://archive.ubuntu.com/ubuntu impish/main amd64 libubsan1 amd64 11.2.0-7ubuntu2 [920 kB]
Get:65 http://archive.ubuntu.com/ubuntu impish/main amd64 libquadmath0 amd64 11.2.0-7ubuntu2 [154 kB]
Get:66 http://archive.ubuntu.com/ubuntu impish/main amd64 libgcc-11-dev amd64 11.2.0-7ubuntu2 [2526 kB]
Get:67 http://archive.ubuntu.com/ubuntu impish/main amd64 gcc-11 amd64 11.2.0-7ubuntu2 [59.3 MB]
Get:68 http://archive.ubuntu.com/ubuntu impish/main amd64 gcc amd64 4:11.2.0-1ubuntu1 [5112 B]
Get:69 http://archive.ubuntu.com/ubuntu impish/main amd64 libstdc++-11-dev amd64 11.2.0-7ubuntu2 [2073 kB]
Get:70 http://archive.ubuntu.com/ubuntu impish/main amd64 g++-11 amd64 11.2.0-7ubuntu2 [55.2 MB]
Get:71 http://archive.ubuntu.com/ubuntu impish/main amd64 g++ amd64 4:11.2.0-1ubuntu1 [1412 B]
Get:72 http://archive.ubuntu.com/ubuntu impish/main amd64 make amd64 4.3-4ubuntu1 [167 kB]
Get:73 http://archive.ubuntu.com/ubuntu impish/main amd64 libdpkg-perl all 1.20.9ubuntu2 [233 kB]
Get:74 http://archive.ubuntu.com/ubuntu impish/main amd64 bzip2 amd64 1.0.8-4ubuntu3 [33.4 kB]
Get:75 http://archive.ubuntu.com/ubuntu impish/main amd64 patch amd64 2.7.6-7 [105 kB]
Get:76 http://archive.ubuntu.com/ubuntu impish/main amd64 lto-disabled-list all 16 [12.5 kB]
Get:77 http://archive.ubuntu.com/ubuntu impish/main amd64 dpkg-dev all 1.20.9ubuntu2 [937 kB]
Get:78 http://archive.ubuntu.com/ubuntu impish/main amd64 build-essential amd64 12.9ubuntu2 [4678 B]
Get:79 http://archive.ubuntu.com/ubuntu impish/main amd64 cmake-data all 3.18.4-2ubuntu2 [1728 kB]
Get:80 http://archive.ubuntu.com/ubuntu impish-updates/main amd64 libarchive13 amd64 3.4.3-2ubuntu0.1 [361 kB]
Get:81 http://archive.ubuntu.com/ubuntu impish/main amd64 libbrotli1 amd64 1.0.9-2build3 [315 kB]
Get:82 http://archive.ubuntu.com/ubuntu impish-updates/main amd64 libsasl2-modules-db amd64 2.1.27+dfsg-2.1ubuntu0.1 [15.5 kB]
Get:83 http://archive.ubuntu.com/ubuntu impish-updates/main amd64 libsasl2-2 amd64 2.1.27+dfsg-2.1ubuntu0.1 [49.5 kB]
Get:84 http://archive.ubuntu.com/ubuntu impish/main amd64 libldap-2.5-0 amd64 2.5.6+dfsg-1~exp1ubuntu1 [186 kB]
Get:85 http://archive.ubuntu.com/ubuntu impish/main amd64 libnghttp2-14 amd64 1.43.0-1 [72.5 kB]
Get:86 http://archive.ubuntu.com/ubuntu impish/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2build3 [58.3 kB]
Get:87 http://archive.ubuntu.com/ubuntu impish/main amd64 libssh-4 amd64 0.9.6-1 [185 kB]
Get:88 http://archive.ubuntu.com/ubuntu impish/main amd64 libcurl4 amd64 7.74.0-1.3ubuntu2 [273 kB]
Get:89 http://archive.ubuntu.com/ubuntu impish/main amd64 libjsoncpp24 amd64 1.9.4-4build1 [80.3 kB]
Get:90 http://archive.ubuntu.com/ubuntu impish/main amd64 librhash0 amd64 1.4.1-2build1 [124 kB]
Get:91 http://archive.ubuntu.com/ubuntu impish/main amd64 cmake amd64 3.18.4-2ubuntu2 [4435 kB]
Get:92 http://archive.ubuntu.com/ubuntu impish/main amd64 libassuan0 amd64 2.5.5-1 [38.4 kB]
Get:93 http://archive.ubuntu.com/ubuntu impish/main amd64 gpgconf amd64 2.2.20-1ubuntu4 [91.1 kB]
Get:94 http://archive.ubuntu.com/ubuntu impish/main amd64 libksba8 amd64 1.5.1-1 [109 kB]
Get:95 http://archive.ubuntu.com/ubuntu impish/main amd64 libnpth0 amd64 1.6-3 [8220 B]
Get:96 http://archive.ubuntu.com/ubuntu impish/main amd64 dirmngr amd64 2.2.20-1ubuntu4 [281 kB]
Get:97 http://archive.ubuntu.com/ubuntu impish/main amd64 libfakeroot amd64 1.25.3-1.1ubuntu2 [28.1 kB]
Get:98 http://archive.ubuntu.com/ubuntu impish/main amd64 fakeroot amd64 1.25.3-1.1ubuntu2 [62.9 kB]
Get:99 http://archive.ubuntu.com/ubuntu impish/main amd64 fonts-dejavu-core all 2.37-2build1 [1041 kB]
Get:100 http://archive.ubuntu.com/ubuntu impish/main amd64 fontconfig-config all 2.13.1-4.2ubuntu3 [28.2 kB]
Get:101 http://archive.ubuntu.com/ubuntu impish/universe amd64 binutils-mingw-w64-x86-64 amd64 2.35.1-2ubuntu1+8.11 [2776 kB]
Get:102 http://archive.ubuntu.com/ubuntu impish/universe amd64 mingw-w64-common all 8.0.0-1 [4911 kB]
Get:103 http://archive.ubuntu.com/ubuntu impish/universe amd64 mingw-w64-x86-64-dev all 8.0.0-1 [3684 kB]
Get:104 http://archive.ubuntu.com/ubuntu impish/universe amd64 gcc-mingw-w64-base amd64 10.3.0-4ubuntu1+24.2 [186 kB]
Get:105 http://archive.ubuntu.com/ubuntu impish/universe amd64 gcc-mingw-w64-x86-64-posix-runtime amd64 10.3.0-4ubuntu1+24.2 [11.6 MB]
Get:106 http://archive.ubuntu.com/ubuntu impish/universe amd64 gcc-mingw-w64-x86-64-posix amd64 10.3.0-4ubuntu1+24.2 [26.6 MB]
Get:107 http://archive.ubuntu.com/ubuntu impish/universe amd64 g++-mingw-w64-x86-64-posix amd64 10.3.0-4ubuntu1+24.2 [10.7 MB]
Get:108 http://archive.ubuntu.com/ubuntu impish/main amd64 libcurl3-gnutls amd64 7.74.0-1.3ubuntu2 [268 kB]
Get:109 http://archive.ubuntu.com/ubuntu impish/main amd64 liberror-perl all 0.17029-1 [26.5 kB]
Get:110 http://archive.ubuntu.com/ubuntu impish/main amd64 git-man all 1:2.32.0-1ubuntu1 [941 kB]
Get:111 http://archive.ubuntu.com/ubuntu impish/main amd64 git amd64 1:2.32.0-1ubuntu1 [3036 kB]
Get:112 http://archive.ubuntu.com/ubuntu impish/main amd64 gnupg-l10n all 2.2.20-1ubuntu4 [51.4 kB]
Get:113 http://archive.ubuntu.com/ubuntu impish/main amd64 gnupg-utils amd64 2.2.20-1ubuntu4 [302 kB]
Get:114 http://archive.ubuntu.com/ubuntu impish/main amd64 gpg amd64 2.2.20-1ubuntu4 [479 kB]
Get:115 http://archive.ubuntu.com/ubuntu impish/main amd64 pinentry-curses amd64 1.1.1-1 [32.0 kB]
Get:116 http://archive.ubuntu.com/ubuntu impish/main amd64 gpg-agent amd64 2.2.20-1ubuntu4 [191 kB]
Get:117 http://archive.ubuntu.com/ubuntu impish/main amd64 gpg-wks-client amd64 2.2.20-1ubuntu4 [62.3 kB]
Get:118 http://archive.ubuntu.com/ubuntu impish/main amd64 gpg-wks-server amd64 2.2.20-1ubuntu4 [56.9 kB]
Get:119 http://archive.ubuntu.com/ubuntu impish/main amd64 gpgsm amd64 2.2.20-1ubuntu4 [186 kB]
Get:120 http://archive.ubuntu.com/ubuntu impish/main amd64 gnupg all 2.2.20-1ubuntu4 [260 kB]
Get:121 http://archive.ubuntu.com/ubuntu impish/main amd64 libalgorithm-diff-perl all 1.201-1 [41.8 kB]
Get:122 http://archive.ubuntu.com/ubuntu impish/main amd64 libalgorithm-diff-xs-perl amd64 0.04-6build1 [11.4 kB]
Get:123 http://archive.ubuntu.com/ubuntu impish/main amd64 libalgorithm-merge-perl all 0.08-3 [12.0 kB]
Get:124 http://archive.ubuntu.com/ubuntu impish/main amd64 libfreetype6 amd64 2.10.4+dfsg-1build1 [348 kB]
Get:125 http://archive.ubuntu.com/ubuntu impish/main amd64 libfontconfig1 amd64 2.13.1-4.2ubuntu3 [116 kB]
Get:126 http://archive.ubuntu.com/ubuntu impish/main amd64 libjpeg-turbo8 amd64 2.0.6-0ubuntu2 [117 kB]
Get:127 http://archive.ubuntu.com/ubuntu impish/main amd64 libjpeg8 amd64 8c-2ubuntu8 [2194 B]
Get:128 http://archive.ubuntu.com/ubuntu impish/main amd64 libdeflate0 amd64 1.7-2ubuntu2 [56.3 kB]
Get:129 http://archive.ubuntu.com/ubuntu impish/main amd64 libjbig0 amd64 2.1-3.1build1 [26.7 kB]
Get:130 http://archive.ubuntu.com/ubuntu impish/main amd64 libwebp6 amd64 0.6.1-2.1 [183 kB]
Get:131 http://archive.ubuntu.com/ubuntu impish/main amd64 libtiff5 amd64 4.3.0-1 [168 kB]
Get:132 http://archive.ubuntu.com/ubuntu impish/main amd64 libxpm4 amd64 1:3.5.12-1 [34.0 kB]
Get:133 http://archive.ubuntu.com/ubuntu impish/main amd64 libgd3 amd64 2.3.0-2ubuntu1 [129 kB]
Get:134 http://archive.ubuntu.com/ubuntu impish-updates/main amd64 libc-devtools amd64 2.34-0ubuntu3.2 [28.7 kB]
Get:135 http://archive.ubuntu.com/ubuntu impish/main amd64 libfile-fcntllock-perl amd64 0.22-3build5 [33.1 kB]
Get:136 http://archive.ubuntu.com/ubuntu impish/main amd64 libldap-common all 2.5.6+dfsg-1~exp1ubuntu1 [18.9 kB]
Get:137 http://archive.ubuntu.com/ubuntu impish-updates/main amd64 libsasl2-modules amd64 2.1.27+dfsg-2.1ubuntu0.1 [52.2 kB]
Get:138 http://archive.ubuntu.com/ubuntu impish/main amd64 manpages-dev all 5.10-1ubuntu1 [2309 kB]
[91mdebconf: delaying package configuration, since apt-utils is not installed
[0mFetched 292 MB in 30s (9749 kB/s)
Selecting previously unselected package liblocale-gettext-perl.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 4386 files and directories currently installed.)
Preparing to unpack .../000-liblocale-gettext-perl_1.07-4build1_amd64.deb ...
Unpacking liblocale-gettext-perl (1.07-4build1) ...
Selecting previously unselected package perl-modules-5.32.
Preparing to unpack .../001-perl-modules-5.32_5.32.1-3ubuntu3_all.deb ...
Unpacking perl-modules-5.32 (5.32.1-3ubuntu3) ...
Selecting previously unselected package libgdbm6:amd64.
Preparing to unpack .../002-libgdbm6_1.19-2_amd64.deb ...
Unpacking libgdbm6:amd64 (1.19-2) ...
Selecting previously unselected package libgdbm-compat4:amd64.
Preparing to unpack .../003-libgdbm-compat4_1.19-2_amd64.deb ...
Unpacking libgdbm-compat4:amd64 (1.19-2) ...
Selecting previously unselected package libperl5.32:amd64.
Preparing to unpack .../004-libperl5.32_5.32.1-3ubuntu3_amd64.deb ...
Unpacking libperl5.32:amd64 (5.32.1-3ubuntu3) ...
Selecting previously unselected package perl.
Preparing to unpack .../005-perl_5.32.1-3ubuntu3_amd64.deb ...
Unpacking perl (5.32.1-3ubuntu3) ...
Selecting previously unselected package openssl.
Preparing to unpack .../006-openssl_1.1.1l-1ubuntu1.2_amd64.deb ...
Unpacking openssl (1.1.1l-1ubuntu1.2) ...
Selecting previously unselected package ca-certificates.
Preparing to unpack .../007-ca-certificates_20210119ubuntu1_all.deb ...
Unpacking ca-certificates (20210119ubuntu1) ...
Selecting previously unselected package less.
Preparing to unpack .../008-less_551-2_amd64.deb ...
Unpacking less (551-2) ...
Selecting previously unselected package libmd0:amd64.
Preparing to unpack .../009-libmd0_1.0.3-3build1_amd64.deb ...
Unpacking libmd0:amd64 (1.0.3-3build1) ...
Selecting previously unselected package libbsd0:amd64.
Preparing to unpack .../010-libbsd0_0.11.3-1ubuntu2_amd64.deb ...
Unpacking libbsd0:amd64 (0.11.3-1ubuntu2) ...
Selecting previously unselected package libexpat1:amd64.
Preparing to unpack .../011-libexpat1_2.4.1-2ubuntu0.3_amd64.deb ...
Unpacking libexpat1:amd64 (2.4.1-2ubuntu0.3) ...
Selecting previously unselected package libicu67:amd64.
Preparing to unpack .../012-libicu67_67.1-7ubuntu1_amd64.deb ...
Unpacking libicu67:amd64 (67.1-7ubuntu1) ...
Selecting previously unselected package readline-common.
Preparing to unpack .../013-readline-common_8.1-2_all.deb ...
Unpacking readline-common (8.1-2) ...
Selecting previously unselected package libreadline8:amd64.
Preparing to unpack .../014-libreadline8_8.1-2_amd64.deb ...
Unpacking libreadline8:amd64 (8.1-2) ...
Selecting previously unselected package libsqlite3-0:amd64.
Preparing to unpack .../015-libsqlite3-0_3.35.5-1_amd64.deb ...
Unpacking libsqlite3-0:amd64 (3.35.5-1) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../016-libxml2_2.9.12+dfsg-4ubuntu0.1_amd64.deb ...
Unpacking libxml2:amd64 (2.9.12+dfsg-4ubuntu0.1) ...
Selecting previously unselected package netbase.
Preparing to unpack .../017-netbase_6.3_all.deb ...
Unpacking netbase (6.3) ...
Selecting previously unselected package ucf.
Preparing to unpack .../018-ucf_3.0043_all.deb ...
Moving old data out of the way
Unpacking ucf (3.0043) ...
Selecting previously unselected package libcbor0.6:amd64.
Preparing to unpack .../019-libcbor0.6_0.6.0-0ubuntu3_amd64.deb ...
Unpacking libcbor0.6:amd64 (0.6.0-0ubuntu3) ...
Selecting previously unselected package libedit2:amd64.
Preparing to unpack .../020-libedit2_3.1-20191231-2build1_amd64.deb ...
Unpacking libedit2:amd64 (3.1-20191231-2build1) ...
Selecting previously unselected package libfido2-1:amd64.
Preparing to unpack .../021-libfido2-1_1.6.0-2build1_amd64.deb ...
Unpacking libfido2-1:amd64 (1.6.0-2build1) ...
Selecting previously unselected package libpng16-16:amd64.
Preparing to unpack .../022-libpng16-16_1.6.37-3build4_amd64.deb ...
Unpacking libpng16-16:amd64 (1.6.37-3build4) ...
Selecting previously unselected package libpsl5:amd64.
Preparing to unpack .../023-libpsl5_0.21.0-1.2_amd64.deb ...
Unpacking libpsl5:amd64 (0.21.0-1.2) ...
Selecting previously unselected package libuv1:amd64.
Preparing to unpack .../024-libuv1_1.40.0-2ubuntu1_amd64.deb ...
Unpacking libuv1:amd64 (1.40.0-2ubuntu1) ...
Selecting previously unselected package libxau6:amd64.
Preparing to unpack .../025-libxau6_1%3a1.0.9-1build3_amd64.deb ...
Unpacking libxau6:amd64 (1:1.0.9-1build3) ...
Selecting previously unselected package libxdmcp6:amd64.
Preparing to unpack .../026-libxdmcp6_1%3a1.1.3-0ubuntu4_amd64.deb ...
Unpacking libxdmcp6:amd64 (1:1.1.3-0ubuntu4) ...
Selecting previously unselected package libxcb1:amd64.
Preparing to unpack .../027-libxcb1_1.14-3ubuntu1_amd64.deb ...
Unpacking libxcb1:amd64 (1.14-3ubuntu1) ...
Selecting previously unselected package libx11-data.
Preparing to unpack .../028-libx11-data_2%3a1.7.2-1_all.deb ...
Unpacking libx11-data (2:1.7.2-1) ...
Selecting previously unselected package libx11-6:amd64.
Preparing to unpack .../029-libx11-6_2%3a1.7.2-1_amd64.deb ...
Unpacking libx11-6:amd64 (2:1.7.2-1) ...
Selecting previously unselected package libxext6:amd64.
Preparing to unpack .../030-libxext6_2%3a1.3.4-0ubuntu3_amd64.deb ...
Unpacking libxext6:amd64 (2:1.3.4-0ubuntu3) ...
Selecting previously unselected package libxmuu1:amd64.
Preparing to unpack .../031-libxmuu1_2%3a1.1.3-0ubuntu1_amd64.deb ...
Unpacking libxmuu1:amd64 (2:1.1.3-0ubuntu1) ...
Selecting previously unselected package manpages.
Preparing to unpack .../032-manpages_5.10-1ubuntu1_all.deb ...
Unpacking manpages (5.10-1ubuntu1) ...
Selecting previously unselected package openssh-client.
Preparing to unpack .../033-openssh-client_1%3a8.4p1-6ubuntu2.1_amd64.deb ...
Unpacking openssh-client (1:8.4p1-6ubuntu2.1) ...
Selecting previously unselected package publicsuffix.
Preparing to unpack .../034-publicsuffix_20210108.1309-1_all.deb ...
Unpacking publicsuffix (20210108.1309-1) ...
Selecting previously unselected package wget.
Preparing to unpack .../035-wget_1.21-1ubuntu3_amd64.deb ...
Unpacking wget (1.21-1ubuntu3) ...
Selecting previously unselected package xauth.
Preparing to unpack .../036-xauth_1%3a1.1-1_amd64.deb ...
Unpacking xauth (1:1.1-1) ...
Selecting previously unselected package xz-utils.
Preparing to unpack .../037-xz-utils_5.2.5-2_amd64.deb ...
Unpacking xz-utils (5.2.5-2) ...
Selecting previously unselected package binutils-common:amd64.
Preparing to unpack .../038-binutils-common_2.37-7ubuntu1_amd64.deb ...
Unpacking binutils-common:amd64 (2.37-7ubuntu1) ...
Selecting previously unselected package libbinutils:amd64.
Preparing to unpack .../039-libbinutils_2.37-7ubuntu1_amd64.deb ...
Unpacking libbinutils:amd64 (2.37-7ubuntu1) ...
Selecting previously unselected package libctf-nobfd0:amd64.
Preparing to unpack .../040-libctf-nobfd0_2.37-7ubuntu1_amd64.deb ...
Unpacking libctf-nobfd0:amd64 (2.37-7ubuntu1) ...
Selecting previously unselected package libctf0:amd64.
Preparing to unpack .../041-libctf0_2.37-7ubuntu1_amd64.deb ...
Unpacking libctf0:amd64 (2.37-7ubuntu1) ...
Selecting previously unselected package binutils-x86-64-linux-gnu.
Preparing to unpack .../042-binutils-x86-64-linux-gnu_2.37-7ubuntu1_amd64.deb ...
Unpacking binutils-x86-64-linux-gnu (2.37-7ubuntu1) ...
Selecting previously unselected package binutils.
Preparing to unpack .../043-binutils_2.37-7ubuntu1_amd64.deb ...
Unpacking binutils (2.37-7ubuntu1) ...
Selecting previously unselected package libc-dev-bin.
Preparing to unpack .../044-libc-dev-bin_2.34-0ubuntu3.2_amd64.deb ...
Unpacking libc-dev-bin (2.34-0ubuntu3.2) ...
Selecting previously unselected package linux-libc-dev:amd64.
Preparing to unpack .../045-linux-libc-dev_5.13.0-37.42_amd64.deb ...
Unpacking linux-libc-dev:amd64 (5.13.0-37.42) ...
Selecting previously unselected package libcrypt-dev:amd64.
Preparing to unpack .../046-libcrypt-dev_1%3a4.4.18-4ubuntu1_amd64.deb ...
Unpacking libcrypt-dev:amd64 (1:4.4.18-4ubuntu1) ...
Selecting previously unselected package rpcsvc-proto.
Preparing to unpack .../047-rpcsvc-proto_1.4.2-0ubuntu5_amd64.deb ...
Unpacking rpcsvc-proto (1.4.2-0ubuntu5) ...
Selecting previously unselected package libtirpc-dev:amd64.
Preparing to unpack .../048-libtirpc-dev_1.3.2-2_amd64.deb ...
Unpacking libtirpc-dev:amd64 (1.3.2-2) ...
Selecting previously unselected package libnsl-dev:amd64.
Preparing to unpack .../049-libnsl-dev_1.3.0-2build1_amd64.deb ...
Unpacking libnsl-dev:amd64 (1.3.0-2build1) ...
Selecting previously unselected package libc6-dev:amd64.
Preparing to unpack .../050-libc6-dev_2.34-0ubuntu3.2_amd64.deb ...
Unpacking libc6-dev:amd64 (2.34-0ubuntu3.2) ...
Selecting previously unselected package libisl23:amd64.
Preparing to unpack .../051-libisl23_0.24-1_amd64.deb ...
Unpacking libisl23:amd64 (0.24-1) ...
Selecting previously unselected package libmpfr6:amd64.
Preparing to unpack .../052-libmpfr6_4.1.0-3build1_amd64.deb ...
Unpacking libmpfr6:amd64 (4.1.0-3build1) ...
Selecting previously unselected package libmpc3:amd64.
Preparing to unpack .../053-libmpc3_1.2.0-1build1_amd64.deb ...
Unpacking libmpc3:amd64 (1.2.0-1build1) ...
Selecting previously unselected package cpp-11.
Preparing to unpack .../054-cpp-11_11.2.0-7ubuntu2_amd64.deb ...
Unpacking cpp-11 (11.2.0-7ubuntu2) ...
Selecting previously unselected package cpp.
Preparing to unpack .../055-cpp_4%3a11.2.0-1ubuntu1_amd64.deb ...
Unpacking cpp (4:11.2.0-1ubuntu1) ...
Selecting previously unselected package libcc1-0:amd64.
Preparing to unpack .../056-libcc1-0_11.2.0-7ubuntu2_amd64.deb ...
Unpacking libcc1-0:amd64 (11.2.0-7ubuntu2) ...
Selecting previously unselected package libgomp1:amd64.
Preparing to unpack .../057-libgomp1_11.2.0-7ubuntu2_amd64.deb ...
Unpacking libgomp1:amd64 (11.2.0-7ubuntu2) ...
Selecting previously unselected package libitm1:amd64.
Preparing to unpack .../058-libitm1_11.2.0-7ubuntu2_amd64.deb ...
Unpacking libitm1:amd64 (11.2.0-7ubuntu2) ...
Selecting previously unselected package libatomic1:amd64.
Preparing to unpack .../059-libatomic1_11.2.0-7ubuntu2_amd64.deb ...
Unpacking libatomic1:amd64 (11.2.0-7ubuntu2) ...
Selecting previously unselected package libasan6:amd64.
Preparing to unpack .../060-libasan6_11.2.0-7ubuntu2_amd64.deb ...
Unpacking libasan6:amd64 (11.2.0-7ubuntu2) ...
Selecting previously unselected package liblsan0:amd64.
Preparing to unpack .../061-liblsan0_11.2.0-7ubuntu2_amd64.deb ...
Unpacking liblsan0:amd64 (11.2.0-7ubuntu2) ...
Selecting previously unselected package libtsan0:amd64.
Preparing to unpack .../062-libtsan0_11.2.0-7ubuntu2_amd64.deb ...
Unpacking libtsan0:amd64 (11.2.0-7ubuntu2) ...
Selecting previously unselected package libubsan1:amd64.
Preparing to unpack .../063-libubsan1_11.2.0-7ubuntu2_amd64.deb ...
Unpacking libubsan1:amd64 (11.2.0-7ubuntu2) ...
Selecting previously unselected package libquadmath0:amd64.
Preparing to unpack .../064-libquadmath0_11.2.0-7ubuntu2_amd64.deb ...
Unpacking libquadmath0:amd64 (11.2.0-7ubuntu2) ...
Selecting previously unselected package libgcc-11-dev:amd64.
Preparing to unpack .../065-libgcc-11-dev_11.2.0-7ubuntu2_amd64.deb ...
Unpacking libgcc-11-dev:amd64 (11.2.0-7ubuntu2) ...
Selecting previously unselected package gcc-11.
Preparing to unpack .../066-gcc-11_11.2.0-7ubuntu2_amd64.deb ...
Unpacking gcc-11 (11.2.0-7ubuntu2) ...
Selecting previously unselected package gcc.
Preparing to unpack .../067-gcc_4%3a11.2.0-1ubuntu1_amd64.deb ...
Unpacking gcc (4:11.2.0-1ubuntu1) ...
Selecting previously unselected package libstdc++-11-dev:amd64.
Preparing to unpack .../068-libstdc++-11-dev_11.2.0-7ubuntu2_amd64.deb ...
Unpacking libstdc++-11-dev:amd64 (11.2.0-7ubuntu2) ...
Selecting previously unselected package g++-11.
Preparing to unpack .../069-g++-11_11.2.0-7ubuntu2_amd64.deb ...
Unpacking g++-11 (11.2.0-7ubuntu2) ...
Selecting previously unselected package g++.
Preparing to unpack .../070-g++_4%3a11.2.0-1ubuntu1_amd64.deb ...
Unpacking g++ (4:11.2.0-1ubuntu1) ...
Selecting previously unselected package make.
Preparing to unpack .../071-make_4.3-4ubuntu1_amd64.deb ...
Unpacking make (4.3-4ubuntu1) ...
Selecting previously unselected package libdpkg-perl.
Preparing to unpack .../072-libdpkg-perl_1.20.9ubuntu2_all.deb ...
Unpacking libdpkg-perl (1.20.9ubuntu2) ...
Selecting previously unselected package bzip2.
Preparing to unpack .../073-bzip2_1.0.8-4ubuntu3_amd64.deb ...
Unpacking bzip2 (1.0.8-4ubuntu3) ...
Selecting previously unselected package patch.
Preparing to unpack .../074-patch_2.7.6-7_amd64.deb ...
Unpacking patch (2.7.6-7) ...
Selecting previously unselected package lto-disabled-list.
Preparing to unpack .../075-lto-disabled-list_16_all.deb ...
Unpacking lto-disabled-list (16) ...
Selecting previously unselected package dpkg-dev.
Preparing to unpack .../076-dpkg-dev_1.20.9ubuntu2_all.deb ...
Unpacking dpkg-dev (1.20.9ubuntu2) ...
Selecting previously unselected package build-essential.
Preparing to unpack .../077-build-essential_12.9ubuntu2_amd64.deb ...
Unpacking build-essential (12.9ubuntu2) ...
Selecting previously unselected package cmake-data.
Preparing to unpack .../078-cmake-data_3.18.4-2ubuntu2_all.deb ...
Unpacking cmake-data (3.18.4-2ubuntu2) ...
Selecting previously unselected package libarchive13:amd64.
Preparing to unpack .../079-libarchive13_3.4.3-2ubuntu0.1_amd64.deb ...
Unpacking libarchive13:amd64 (3.4.3-2ubuntu0.1) ...
Selecting previously unselected package libbrotli1:amd64.
Preparing to unpack .../080-libbrotli1_1.0.9-2build3_amd64.deb ...
Unpacking libbrotli1:amd64 (1.0.9-2build3) ...
Selecting previously unselected package libsasl2-modules-db:amd64.
Preparing to unpack .../081-libsasl2-modules-db_2.1.27+dfsg-2.1ubuntu0.1_amd64.deb ...
Unpacking libsasl2-modules-db:amd64 (2.1.27+dfsg-2.1ubuntu0.1) ...
Selecting previously unselected package libsasl2-2:amd64.
Preparing to unpack .../082-libsasl2-2_2.1.27+dfsg-2.1ubuntu0.1_amd64.deb ...
Unpacking libsasl2-2:amd64 (2.1.27+dfsg-2.1ubuntu0.1) ...
Selecting previously unselected package libldap-2.5-0:amd64.
Preparing to unpack .../083-libldap-2.5-0_2.5.6+dfsg-1~exp1ubuntu1_amd64.deb ...
Unpacking libldap-2.5-0:amd64 (2.5.6+dfsg-1~exp1ubuntu1) ...
Selecting previously unselected package libnghttp2-14:amd64.
Preparing to unpack .../084-libnghttp2-14_1.43.0-1_amd64.deb ...
Unpacking libnghttp2-14:amd64 (1.43.0-1) ...
Selecting previously unselected package librtmp1:amd64.
Preparing to unpack .../085-librtmp1_2.4+20151223.gitfa8646d.1-2build3_amd64.deb ...
Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2build3) ...
Selecting previously unselected package libssh-4:amd64.
Preparing to unpack .../086-libssh-4_0.9.6-1_amd64.deb ...
Unpacking libssh-4:amd64 (0.9.6-1) ...
Selecting previously unselected package libcurl4:amd64.
Preparing to unpack .../087-libcurl4_7.74.0-1.3ubuntu2_amd64.deb ...
Unpacking libcurl4:amd64 (7.74.0-1.3ubuntu2) ...
Selecting previously unselected package libjsoncpp24:amd64.
Preparing to unpack .../088-libjsoncpp24_1.9.4-4build1_amd64.deb ...
Unpacking libjsoncpp24:amd64 (1.9.4-4build1) ...
Selecting previously unselected package librhash0:amd64.
Preparing to unpack .../089-librhash0_1.4.1-2build1_amd64.deb ...
Unpacking librhash0:amd64 (1.4.1-2build1) ...
Selecting previously unselected package cmake.
Preparing to unpack .../090-cmake_3.18.4-2ubuntu2_amd64.deb ...
Unpacking cmake (3.18.4-2ubuntu2) ...
Selecting previously unselected package libassuan0:amd64.
Preparing to unpack .../091-libassuan0_2.5.5-1_amd64.deb ...
Unpacking libassuan0:amd64 (2.5.5-1) ...
Selecting previously unselected package gpgconf.
Preparing to unpack .../092-gpgconf_2.2.20-1ubuntu4_amd64.deb ...
Unpacking gpgconf (2.2.20-1ubuntu4) ...
Selecting previously unselected package libksba8:amd64.
Preparing to unpack .../093-libksba8_1.5.1-1_amd64.deb ...
Unpacking libksba8:amd64 (1.5.1-1) ...
Selecting previously unselected package libnpth0:amd64.
Preparing to unpack .../094-libnpth0_1.6-3_amd64.deb ...
Unpacking libnpth0:amd64 (1.6-3) ...
Selecting previously unselected package dirmngr.
Preparing to unpack .../095-dirmngr_2.2.20-1ubuntu4_amd64.deb ...
Unpacking dirmngr (2.2.20-1ubuntu4) ...
Selecting previously unselected package libfakeroot:amd64.
Preparing to unpack .../096-libfakeroot_1.25.3-1.1ubuntu2_amd64.deb ...
Unpacking libfakeroot:amd64 (1.25.3-1.1ubuntu2) ...
Selecting previously unselected package fakeroot.
Preparing to unpack .../097-fakeroot_1.25.3-1.1ubuntu2_amd64.deb ...
Unpacking fakeroot (1.25.3-1.1ubuntu2) ...
Selecting previously unselected package fonts-dejavu-core.
Preparing to unpack .../098-fonts-dejavu-core_2.37-2build1_all.deb ...
Unpacking fonts-dejavu-core (2.37-2build1) ...
Selecting previously unselected package fontconfig-config.
Preparing to unpack .../099-fontconfig-config_2.13.1-4.2ubuntu3_all.deb ...
Unpacking fontconfig-config (2.13.1-4.2ubuntu3) ...
Selecting previously unselected package binutils-mingw-w64-x86-64.
Preparing to unpack .../100-binutils-mingw-w64-x86-64_2.35.1-2ubuntu1+8.11_amd64.deb ...
Unpacking binutils-mingw-w64-x86-64 (2.35.1-2ubuntu1+8.11) ...
Selecting previously unselected package mingw-w64-common.
Preparing to unpack .../101-mingw-w64-common_8.0.0-1_all.deb ...
Unpacking mingw-w64-common (8.0.0-1) ...
Selecting previously unselected package mingw-w64-x86-64-dev.
Preparing to unpack .../102-mingw-w64-x86-64-dev_8.0.0-1_all.deb ...
Unpacking mingw-w64-x86-64-dev (8.0.0-1) ...
Selecting previously unselected package gcc-mingw-w64-base.
Preparing to unpack .../103-gcc-mingw-w64-base_10.3.0-4ubuntu1+24.2_amd64.deb ...
Unpacking gcc-mingw-w64-base (10.3.0-4ubuntu1+24.2) ...
Selecting previously unselected package gcc-mingw-w64-x86-64-posix-runtime.
Preparing to unpack .../104-gcc-mingw-w64-x86-64-posix-runtime_10.3.0-4ubuntu1+24.2_amd64.deb ...
Unpacking gcc-mingw-w64-x86-64-posix-runtime (10.3.0-4ubuntu1+24.2) ...
Selecting previously unselected package gcc-mingw-w64-x86-64-posix.
Preparing to unpack .../105-gcc-mingw-w64-x86-64-posix_10.3.0-4ubuntu1+24.2_amd64.deb ...
Unpacking gcc-mingw-w64-x86-64-posix (10.3.0-4ubuntu1+24.2) ...
Selecting previously unselected package g++-mingw-w64-x86-64-posix.
Preparing to unpack .../106-g++-mingw-w64-x86-64-posix_10.3.0-4ubuntu1+24.2_amd64.deb ...
Unpacking g++-mingw-w64-x86-64-posix (10.3.0-4ubuntu1+24.2) ...
Selecting previously unselected package libcurl3-gnutls:amd64.
Preparing to unpack .../107-libcurl3-gnutls_7.74.0-1.3ubuntu2_amd64.deb ...
Unpacking libcurl3-gnutls:amd64 (7.74.0-1.3ubuntu2) ...
Selecting previously unselected package liberror-perl.
Preparing to unpack .../108-liberror-perl_0.17029-1_all.deb ...
Unpacking liberror-perl (0.17029-1) ...
Selecting previously unselected package git-man.
Preparing to unpack .../109-git-man_1%3a2.32.0-1ubuntu1_all.deb ...
Unpacking git-man (1:2.32.0-1ubuntu1) ...
Selecting previously unselected package git.
Preparing to unpack .../110-git_1%3a2.32.0-1ubuntu1_amd64.deb ...
Unpacking git (1:2.32.0-1ubuntu1) ...
Selecting previously unselected package gnupg-l10n.
Preparing to unpack .../111-gnupg-l10n_2.2.20-1ubuntu4_all.deb ...
Unpacking gnupg-l10n (2.2.20-1ubuntu4) ...
Selecting previously unselected package gnupg-utils.
Preparing to unpack .../112-gnupg-utils_2.2.20-1ubuntu4_amd64.deb ...
Unpacking gnupg-utils (2.2.20-1ubuntu4) ...
Selecting previously unselected package gpg.
Preparing to unpack .../113-gpg_2.2.20-1ubuntu4_amd64.deb ...
Unpacking gpg (2.2.20-1ubuntu4) ...
Selecting previously unselected package pinentry-curses.
Preparing to unpack .../114-pinentry-curses_1.1.1-1_amd64.deb ...
Unpacking pinentry-curses (1.1.1-1) ...
Selecting previously unselected package gpg-agent.
Preparing to unpack .../115-gpg-agent_2.2.20-1ubuntu4_amd64.deb ...
Unpacking gpg-agent (2.2.20-1ubuntu4) ...
Selecting previously unselected package gpg-wks-client.
Preparing to unpack .../116-gpg-wks-client_2.2.20-1ubuntu4_amd64.deb ...
Unpacking gpg-wks-client (2.2.20-1ubuntu4) ...
Selecting previously unselected package gpg-wks-server.
Preparing to unpack .../117-gpg-wks-server_2.2.20-1ubuntu4_amd64.deb ...
Unpacking gpg-wks-server (2.2.20-1ubuntu4) ...
Selecting previously unselected package gpgsm.
Preparing to unpack .../118-gpgsm_2.2.20-1ubuntu4_amd64.deb ...
Unpacking gpgsm (2.2.20-1ubuntu4) ...
Selecting previously unselected package gnupg.
Preparing to unpack .../119-gnupg_2.2.20-1ubuntu4_all.deb ...
Unpacking gnupg (2.2.20-1ubuntu4) ...
Selecting previously unselected package libalgorithm-diff-perl.
Preparing to unpack .../120-libalgorithm-diff-perl_1.201-1_all.deb ...
Unpacking libalgorithm-diff-perl (1.201-1) ...
Selecting previously unselected package libalgorithm-diff-xs-perl.
Preparing to unpack .../121-libalgorithm-diff-xs-perl_0.04-6build1_amd64.deb ...
Unpacking libalgorithm-diff-xs-perl (0.04-6build1) ...
Selecting previously unselected package libalgorithm-merge-perl.
Preparing to unpack .../122-libalgorithm-merge-perl_0.08-3_all.deb ...
Unpacking libalgorithm-merge-perl (0.08-3) ...
Selecting previously unselected package libfreetype6:amd64.
Preparing to unpack .../123-libfreetype6_2.10.4+dfsg-1build1_amd64.deb ...
Unpacking libfreetype6:amd64 (2.10.4+dfsg-1build1) ...
Selecting previously unselected package libfontconfig1:amd64.
Preparing to unpack .../124-libfontconfig1_2.13.1-4.2ubuntu3_amd64.deb ...
Unpacking libfontconfig1:amd64 (2.13.1-4.2ubuntu3) ...
Selecting previously unselected package libjpeg-turbo8:amd64.
Preparing to unpack .../125-libjpeg-turbo8_2.0.6-0ubuntu2_amd64.deb ...
Unpacking libjpeg-turbo8:amd64 (2.0.6-0ubuntu2) ...
Selecting previously unselected package libjpeg8:amd64.
Preparing to unpack .../126-libjpeg8_8c-2ubuntu8_amd64.deb ...
Unpacking libjpeg8:amd64 (8c-2ubuntu8) ...
Selecting previously unselected package libdeflate0:amd64.
Preparing to unpack .../127-libdeflate0_1.7-2ubuntu2_amd64.deb ...
Unpacking libdeflate0:amd64 (1.7-2ubuntu2) ...
Selecting previously unselected package libjbig0:amd64.
Preparing to unpack .../128-libjbig0_2.1-3.1build1_amd64.deb ...
Unpacking libjbig0:amd64 (2.1-3.1build1) ...
Selecting previously unselected package libwebp6:amd64.
Preparing to unpack .../129-libwebp6_0.6.1-2.1_amd64.deb ...
Unpacking libwebp6:amd64 (0.6.1-2.1) ...
Selecting previously unselected package libtiff5:amd64.
Preparing to unpack .../130-libtiff5_4.3.0-1_amd64.deb ...
Unpacking libtiff5:amd64 (4.3.0-1) ...
Selecting previously unselected package libxpm4:amd64.
Preparing to unpack .../131-libxpm4_1%3a3.5.12-1_amd64.deb ...
Unpacking libxpm4:amd64 (1:3.5.12-1) ...
Selecting previously unselected package libgd3:amd64.
Preparing to unpack .../132-libgd3_2.3.0-2ubuntu1_amd64.deb ...
Unpacking libgd3:amd64 (2.3.0-2ubuntu1) ...
Selecting previously unselected package libc-devtools.
Preparing to unpack .../133-libc-devtools_2.34-0ubuntu3.2_amd64.deb ...
Unpacking libc-devtools (2.34-0ubuntu3.2) ...
Selecting previously unselected package libfile-fcntllock-perl.
Preparing to unpack .../134-libfile-fcntllock-perl_0.22-3build5_amd64.deb ...
Unpacking libfile-fcntllock-perl (0.22-3build5) ...
Selecting previously unselected package libldap-common.
Preparing to unpack .../135-libldap-common_2.5.6+dfsg-1~exp1ubuntu1_all.deb ...
Unpacking libldap-common (2.5.6+dfsg-1~exp1ubuntu1) ...
Selecting previously unselected package libsasl2-modules:amd64.
Preparing to unpack .../136-libsasl2-modules_2.1.27+dfsg-2.1ubuntu0.1_amd64.deb ...
Unpacking libsasl2-modules:amd64 (2.1.27+dfsg-2.1ubuntu0.1) ...
Selecting previously unselected package manpages-dev.
Preparing to unpack .../137-manpages-dev_5.10-1ubuntu1_all.deb ...
Unpacking manpages-dev (5.10-1ubuntu1) ...
Setting up libksba8:amd64 (1.5.1-1) ...
Setting up libexpat1:amd64 (2.4.1-2ubuntu0.3) ...
Setting up libxau6:amd64 (1:1.0.9-1build3) ...
Setting up lto-disabled-list (16) ...
Setting up libpsl5:amd64 (0.21.0-1.2) ...
Setting up wget (1.21-1ubuntu3) ...
Setting up libicu67:amd64 (67.1-7ubuntu1) ...
Setting up manpages (5.10-1ubuntu1) ...
Setting up perl-modules-5.32 (5.32.1-3ubuntu3) ...
Setting up libbrotli1:amd64 (1.0.9-2build3) ...
Setting up libsqlite3-0:amd64 (3.35.5-1) ...
Setting up libsasl2-modules:amd64 (2.1.27+dfsg-2.1ubuntu0.1) ...
Setting up binutils-common:amd64 (2.37-7ubuntu1) ...
Setting up libnghttp2-14:amd64 (1.43.0-1) ...
Setting up libdeflate0:amd64 (1.7-2ubuntu2) ...
Setting up less (551-2) ...
Setting up linux-libc-dev:amd64 (5.13.0-37.42) ...
Setting up libctf-nobfd0:amd64 (2.37-7ubuntu1) ...
Setting up libnpth0:amd64 (1.6-3) ...
Setting up gcc-mingw-w64-base (10.3.0-4ubuntu1+24.2) ...
Setting up libassuan0:amd64 (2.5.5-1) ...
Setting up libgomp1:amd64 (11.2.0-7ubuntu2) ...
Setting up libcbor0.6:amd64 (0.6.0-0ubuntu3) ...
Setting up bzip2 (1.0.8-4ubuntu3) ...
Setting up libldap-common (2.5.6+dfsg-1~exp1ubuntu1) ...
Setting up libjbig0:amd64 (2.1-3.1build1) ...
Setting up libfakeroot:amd64 (1.25.3-1.1ubuntu2) ...
Setting up libasan6:amd64 (11.2.0-7ubuntu2) ...
Setting up libsasl2-modules-db:amd64 (2.1.27+dfsg-2.1ubuntu0.1) ...
Setting up fakeroot (1.25.3-1.1ubuntu2) ...
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/fakeroot.1.gz because associated file /usr/share/man/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/faked.1.gz because associated file /usr/share/man/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/es/man1/fakeroot.1.gz because associated file /usr/share/man/es/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/es/man1/faked.1.gz because associated file /usr/share/man/es/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/fr/man1/fakeroot.1.gz because associated file /usr/share/man/fr/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/fr/man1/faked.1.gz because associated file /usr/share/man/fr/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/sv/man1/fakeroot.1.gz because associated file /usr/share/man/sv/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/sv/man1/faked.1.gz because associated file /usr/share/man/sv/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
Setting up libtirpc-dev:amd64 (1.3.2-2) ...
Setting up libuv1:amd64 (1.40.0-2ubuntu1) ...
Setting up rpcsvc-proto (1.4.2-0ubuntu5) ...
Setting up libx11-data (2:1.7.2-1) ...
Setting up make (4.3-4ubuntu1) ...
Setting up libmpfr6:amd64 (4.1.0-3build1) ...
Setting up gnupg-l10n (2.2.20-1ubuntu4) ...
Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2build3) ...
Setting up xz-utils (5.2.5-2) ...
update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist
Setting up libquadmath0:amd64 (11.2.0-7ubuntu2) ...
Setting up libpng16-16:amd64 (1.6.37-3build4) ...
Setting up libmpc3:amd64 (1.2.0-1build1) ...
Setting up libatomic1:amd64 (11.2.0-7ubuntu2) ...
Setting up patch (2.7.6-7) ...
Setting up libwebp6:amd64 (0.6.1-2.1) ...
Setting up fonts-dejavu-core (2.37-2build1) ...
Setting up ucf (3.0043) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
Setting up libjpeg-turbo8:amd64 (2.0.6-0ubuntu2) ...
Setting up libsasl2-2:amd64 (2.1.27+dfsg-2.1ubuntu0.1) ...
Setting up libssh-4:amd64 (0.9.6-1) ...
Setting up libjsoncpp24:amd64 (1.9.4-4build1) ...
Setting up libubsan1:amd64 (11.2.0-7ubuntu2) ...
Setting up libmd0:amd64 (1.0.3-3build1) ...
Setting up libnsl-dev:amd64 (1.3.0-2build1) ...
Setting up librhash0:amd64 (1.4.1-2build1) ...
Setting up libcrypt-dev:amd64 (1:4.4.18-4ubuntu1) ...
Setting up git-man (1:2.32.0-1ubuntu1) ...
Setting up netbase (6.3) ...
Setting up cmake-data (3.18.4-2ubuntu2) ...
Setting up mingw-w64-common (8.0.0-1) ...
Setting up libbinutils:amd64 (2.37-7ubuntu1) ...
Setting up libfido2-1:amd64 (1.6.0-2build1) ...
Setting up libisl23:amd64 (0.24-1) ...
Setting up libc-dev-bin (2.34-0ubuntu3.2) ...
Setting up openssl (1.1.1l-1ubuntu1.2) ...
Setting up libbsd0:amd64 (0.11.3-1ubuntu2) ...
Setting up readline-common (8.1-2) ...
Setting up publicsuffix (20210108.1309-1) ...
Setting up libxml2:amd64 (2.9.12+dfsg-4ubuntu0.1) ...
Setting up libcc1-0:amd64 (11.2.0-7ubuntu2) ...
Setting up liblocale-gettext-perl (1.07-4build1) ...
Setting up liblsan0:amd64 (11.2.0-7ubuntu2) ...
Setting up libitm1:amd64 (11.2.0-7ubuntu2) ...
Setting up libgdbm6:amd64 (1.19-2) ...
Setting up libtsan0:amd64 (11.2.0-7ubuntu2) ...
Setting up libctf0:amd64 (2.37-7ubuntu1) ...
Setting up libjpeg8:amd64 (8c-2ubuntu8) ...
Setting up pinentry-curses (1.1.1-1) ...
Setting up cpp-11 (11.2.0-7ubuntu2) ...
Setting up mingw-w64-x86-64-dev (8.0.0-1) ...
Setting up manpages-dev (5.10-1ubuntu1) ...
Setting up libxdmcp6:amd64 (1:1.1.3-0ubuntu4) ...
Setting up libxcb1:amd64 (1.14-3ubuntu1) ...
Setting up binutils-mingw-w64-x86-64 (2.35.1-2ubuntu1+8.11) ...
Setting up libarchive13:amd64 (3.4.3-2ubuntu0.1) ...
Setting up fontconfig-config (2.13.1-4.2ubuntu3) ...
Setting up gcc-mingw-w64-x86-64-posix-runtime (10.3.0-4ubuntu1+24.2) ...
Setting up libedit2:amd64 (3.1-20191231-2build1) ...
Setting up libreadline8:amd64 (8.1-2) ...
Setting up libldap-2.5-0:amd64 (2.5.6+dfsg-1~exp1ubuntu1) ...
Setting up gcc-mingw-w64-x86-64-posix (10.3.0-4ubuntu1+24.2) ...
update-alternatives: using /usr/bin/x86_64-w64-mingw32-gcc-posix to provide /usr/bin/x86_64-w64-mingw32-gcc (x86_64-w64-mingw32-gcc) in auto mode
Setting up ca-certificates (20210119ubuntu1) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
Updating certificates in /etc/ssl/certs...
128 added, 0 removed; done.
Setting up libfreetype6:amd64 (2.10.4+dfsg-1build1) ...
Setting up libgdbm-compat4:amd64 (1.19-2) ...
Setting up libperl5.32:amd64 (5.32.1-3ubuntu3) ...
Setting up libgcc-11-dev:amd64 (11.2.0-7ubuntu2) ...
Setting up cpp (4:11.2.0-1ubuntu1) ...
Setting up gpgconf (2.2.20-1ubuntu4) ...
Setting up libcurl4:amd64 (7.74.0-1.3ubuntu2) ...
Setting up libc6-dev:amd64 (2.34-0ubuntu3.2) ...
Setting up libx11-6:amd64 (2:1.7.2-1) ...
Setting up libtiff5:amd64 (4.3.0-1) ...
Setting up libfontconfig1:amd64 (2.13.1-4.2ubuntu3) ...
Setting up libxmuu1:amd64 (2:1.1.3-0ubuntu1) ...
Setting up gpg (2.2.20-1ubuntu4) ...
Setting up gnupg-utils (2.2.20-1ubuntu4) ...
Setting up binutils-x86-64-linux-gnu (2.37-7ubuntu1) ...
Setting up gpg-agent (2.2.20-1ubuntu4) ...
Setting up libxpm4:amd64 (1:3.5.12-1) ...
Setting up openssh-client (1:8.4p1-6ubuntu2.1) ...
Setting up gpgsm (2.2.20-1ubuntu4) ...
Setting up libxext6:amd64 (2:1.3.4-0ubuntu3) ...
Setting up g++-mingw-w64-x86-64-posix (10.3.0-4ubuntu1+24.2) ...
update-alternatives: using /usr/bin/x86_64-w64-mingw32-g++-posix to provide /usr/bin/x86_64-w64-mingw32-g++ (x86_64-w64-mingw32-g++) in auto mode
Setting up libcurl3-gnutls:amd64 (7.74.0-1.3ubuntu2) ...
Setting up binutils (2.37-7ubuntu1) ...
Setting up dirmngr (2.2.20-1ubuntu4) ...
Setting up perl (5.32.1-3ubuntu3) ...
Setting up libgd3:amd64 (2.3.0-2ubuntu1) ...
Setting up libdpkg-perl (1.20.9ubuntu2) ...
Setting up libstdc++-11-dev:amd64 (11.2.0-7ubuntu2) ...
Setting up gpg-wks-server (2.2.20-1ubuntu4) ...
Setting up gcc-11 (11.2.0-7ubuntu2) ...
Setting up xauth (1:1.1-1) ...
Setting up cmake (3.18.4-2ubuntu2) ...
Setting up libc-devtools (2.34-0ubuntu3.2) ...
Setting up gpg-wks-client (2.2.20-1ubuntu4) ...
Setting up g++-11 (11.2.0-7ubuntu2) ...
Setting up libfile-fcntllock-perl (0.22-3build5) ...
Setting up libalgorithm-diff-perl (1.201-1) ...
Setting up gcc (4:11.2.0-1ubuntu1) ...
Setting up dpkg-dev (1.20.9ubuntu2) ...
Setting up liberror-perl (0.17029-1) ...
Setting up git (1:2.32.0-1ubuntu1) ...
Setting up g++ (4:11.2.0-1ubuntu1) ...
update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/c++.1.gz because associated file /usr/share/man/man1/g++.1.gz (of link group c++) doesn't exist
Setting up gnupg (2.2.20-1ubuntu4) ...
Setting up build-essential (12.9ubuntu2) ...
Setting up libalgorithm-diff-xs-perl (0.04-6build1) ...
Setting up libalgorithm-merge-perl (0.08-3) ...
Processing triggers for libc-bin (2.34-0ubuntu3.2) ...
Processing triggers for ca-certificates (20210119ubuntu1) ...
Updating certificates in /etc/ssl/certs...
0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...
done.
Removing intermediate container 6b825d90d267
---> 6af80d748315
Step 4/16 : RUN wget https://github.com/conan-io/conan/releases/latest/download/conan-ubuntu-64.deb
---> Running in 99128265eea0
[91m--2022-03-23 09:52:39-- https://github.com/conan-io/conan/releases/latest/download/conan-ubuntu-64.deb
[0m[91mResolving github.com (github.com)... [0m[91m140.82.121.3
Connecting to github.com (github.com)|140.82.121.3|:443... [0m[91mconnected.
[0m[91mHTTP request sent, awaiting response... [0m[91m302 Found
[0m[91mLocation: https://github.com/conan-io/conan/releases/download/1.46.2/conan-ubuntu-64.deb [following]
--2022-03-23 09:52:39-- https://github.com/conan-io/conan/releases/download/1.46.2/conan-ubuntu-64.deb
[0m[91mReusing existing connection to github.com:443.
HTTP request sent, awaiting response... [0m[91m302 Found
Location: https://objects.githubusercontent.com/github-production-release-asset-2e65be/47190624/6d926d99-d86a-4af4-a278-841e016e71cd?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20220323%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20220323T095239Z&X-Amz-Expires=300&X-Amz-Signature=99738dd28383b30b19a6ac1d9a7a2997c855c480d66e1f5f846e30c65cf003b9&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=47190624&response-content-disposition=attachment%3B%20filename%3Dconan-ubuntu-64.deb&response-content-type=application%2Foctet-stream [following]
--2022-03-23 09:52:39-- https://objects.githubusercontent.com/github-production-release-asset-2e65be/47190624/6d926d99-d86a-4af4-a278-841e016e71cd?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20220323%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20220323T095239Z&X-Amz-Expires=300&X-Amz-Signature=99738dd28383b30b19a6ac1d9a7a2997c855c480d66e1f5f846e30c65cf003b9&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=47190624&response-content-disposition=attachment%3B%20filename%3Dconan-ubuntu-64.deb&response-content-type=application%2Foctet-stream
Resolving objects.githubusercontent.com (objects.githubusercontent.com)... [0m[91m185.199.109.133, 185.199.108.133, 185.199.111.133, ...
Connecting to objects.githubusercontent.com (objects.githubusercontent.com)|185.199.109.133|:443... [0m[91mconnected.
[0m[91mHTTP request sent, awaiting response... [0m[91m200 OK
[0m[91mLength: 24461256 (23M) [application/octet-stream]
[0m[91mSaving to: 'conan-ubuntu-64.deb'
[0m[91m
0K .[0m[91m.[0m[91m..[0m[91m.[0m[91m...[0m[91m.. .[0m[91m.[0m[91m..[0m[91m..[0m[91m...[0m[91m.[0m[91m ...[0m[91m....[0m[91m.[0m[91m..[0m[91m .[0m[91m.[0m[91m...[0m[91m.[0m[91m...[0m[91m. .[0m[91m.[0m[91m...[0m[91m.[0m[91m.[0m[91m... 0% 2.71M 9s
50K .....[0m[91m..... ...[0m[91m....... .........[0m[91m. .......... .....[0m[91m..... 0% 4.88M 7s
100K .......... .[0m[91m......... .......[0m[91m... .......... ...[0m[91m....... 0%[0m[91m 6.31M 6s
150K .[0m[91m........[0m[91m. .......... .....[0m[91m..... .......... .[0m[91m......... 0% 11.3M 5s
200K .......[0m[91m... .....[0m[91m..... ...[0m[91m....... .........[0m[91m. .......... 1% 8.82M 4s
250K .....[0m[91m..... .......... .[0m[91m.........[0m[91m ...[0m[91m....[0m[91m... .......... 1% 9.52M 4s
300K ...[0m[91m....... .........[0m[91m. .......... .....[0m[91m..... .......... 1%[0m[91m 6.96M 4s
350K .[0m[91m........[0m[91m. .......[0m[91m... .......... ...[0m[91m....... .........[0m[91m. 1% 20.4M 4s
400K .....[0m[91m..... .....[0m[91m..... .......... .[0m[91m......... .......[0m[91m... 1% 5.79M 4s
450K .....[0m[91m..... ...[0m[91m....... ........[0m[91m.[0m[91m. .......... .....[0m[91m..... 2% 7.39M 4s
500K .......... .[0m[91m......... .......[0m[91m... .......... ...[0m[91m....... 2% 16.0M 3s
550K .........[0m[91m. .......... .....[0m[91m..... ...[0m[91m....... .[0m[91m......... 2% 4.47M 3s
600K .......[0m[91m... .......... ...[0m[91m....... .........[0m[91m. .......... 2% 8.46M 3s
650K ...[0m[91m..[0m[91m..... .......... .[0m[91m......... .......[0m[91m... .......... 2% 20.9M 3s
700K ...[0m[91m....... .........[0m[91m. .......... .....[0m[91m..... .......... 3% 7.20M 3s
750K .[0m[91m......... .....[0m[91m..[0m[91m... .......... ...[0m[91m....... .........[0m[91m. 3% 7.74M 3s
800K .......... [0m[91m.....[0m[91m..... .......... .[0m[91m......... .......[0m[91m... 3% 10.5M 3s
850K .......... ...[0m[91m....... .........[0m[91m. .......... .....[0m[91m..... 3% 9.16M 3s
900K .......... .[0m[91m........[0m[91m. .......[0m[91m... .....[0m[91m..... ...[0m[91m....... 3% 12.1M 3s
950K .........[0m[91m. .......[0m[91m... .....[0m[91m..... .......... .[0m[91m......... 4% 3.88M 3s
1000K .......[0m[91m... .....[0m[91m..... ...[0m[91m....... .........[0m[91m. .......[0m[91m... 4% 16.0M 3s
1050K[0m[91m .....[0m[91m..... ...[0m[91m....... .[0m[91m........[0m[91m. .......[0m[91m... .....[0m[91m..... 4% 125M 3s[0m[91m
1100K ...[0m[91m....... .........[0m[91m. .......... .....[0m[91m..... ...[0m[91m....[0m[91m...[0m[91m 4%[0m[91m 6.27M 3s[0m[91m
1150K .[0m[91m........[0m[91m. .......[0m[91m... .......... ...[0m[91m....... .........[0m[91m. 5% 6.73M 3s
1200K .......... .....[0m[91m..... .......... .[0m[91m........[0m[91m. .......[0m[91m.[0m[91m.. 5%[0m[91m 18.1M 3s
1250K .[0m[91m....[0m[91m..... ...[0m[91m....... .[0m[91m........[0m[91m. .......... .....[0m[91m..... 5% 5.66M 3s
1300K .......... .[0m[91m......... .......[0m[91m... .......... ...[0m[91m....... 5% 7.36M 3s
1350K .........[0m[91m. .......... .....[0m[91m..... .......... .[0m[91m......... 5% 18.1M 3s
1400K .......[0m[91m... .......... ...[0m[91m....... .........[0m[91m. .......... 6% 3.89M 3s
1450K .....[0m[91m..... .......... .[0m[91m......... .......[0m[91m... .......... 6% 14.4M 3s
1500K ...[0m[91m....... .........[0m[91m. .......... .....[0m[91m..... .......... 6% 14.6M 3s
1550K .[0m[91m......... .......[0m[91m... .......... ...[0m[91m....... .........[0m[91m. 6% 4.42M 3s
1600K .......... .....[0m[91m..... .......... .[0m[91m......... .......[0m[91m... 6% 13.4M 3s
1650K .......... ...[0m[91m....... .........[0m[91m. .......... .....[0m[91m..... 7% 21.2M 3s
1700K .......... .[0m[91m......... .......[0m[91m... .......... ...[0m[91m....... 7% 7.13M 3s
1750K .........[0m[91m. .......... ....[0m[91m.[0m[91m..... .......... .[0m[91m......... 7% 9.34M 3s
1800K .......[0m[91m... .....[0m[91m..... ...[0m[91m....... .........[0m[91m. .......... 7% 14.4M 3s
1850K .....[0m[91m..... .......... .[0m[91m......... .......[0m[91m... .......... 7% 9.35M 3s
1900K ...[0m[91m....... .........[0m[91m. .......... .....[0m[91m..... .......... 8% 17.7M 3s
1950K .[0m[91m......... .......[0m[91m... .......... ...[0m[91m....... .........[0m[91m. 8% 6.00M 3s
2000K .......... .....[0m[91m..... ...[0m[91m....... .[0m[91m......... .......[0m[91m... 8% 11.6M 3s
2050K .......... ...[0m[91m....... .........[0m[91m. .......[0m[91m... .....[0m[91m..... 8% 61.8M 3s
2100K ...[0m[91m....... .[0m[91m........[0m[91m. .......[0m[91m... .......... ...[0m[91m....... 9% 6.67M 3s
2150K .........[0m[91m. .......... .....[0m[91m..... .......... .[0m[91m......... 9% 11.4M 3s
2200K .......[0m[91m... .......... ...[0m[91m....... .[0m[91m........[0m[91m. .......... 9% 11.9M 3s
2250K .....[0m[91m..... .......... .[0m[91m......... .......[0m[91m... .......... 9% 10.3M 3s
2300K ...[0m[91m....... .........[0m[91m. .......... .....[0m[91m..... ...[0m[91m....... 9%[0m[91m 12.7M 3s
2350K .[0m[91m........[0m[91m. .......[0m[91m... .......... ...[0m[91m....... .........[0m[91m. 10% 18.1M 2s
2400K .......... .....[0m[91m..... ....[0m[91m...... ..........[0m[91m .......... 10% 6.70M 2s
2450K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 10% 8.82M 2s
2500K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 10% 10.8M 2s
2550K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 10% 22.6M 2s[0m[91m
2600K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 11% 7.54M 2s
2650K ......[0m[91m.... ....[0m[91m...... ..[0m[91m........[0m[91m ........[0m[91m.. ......[0m[91m.... 11% 16.1M 2s
2700K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 11% 7.99M 2s
2750K ..........[0m[91m .......... ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ 11% 7.54M 2s[0m[91m
2800K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m ........[0m[91m.. 11% 20.1M 2s
2850K ......[0m[91m.... ...[0m[91m.[0m[91m...... ..[0m[91m........ ........[0m[91m.. .......... 12% 7.79M 2s
2900K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 12% 14.4M 2s
2950K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 12% 8.76M 2s[0m[91m
3000K .......... ......[0m[91m.... .......... ..[0m[91m........ .......... 12% 23.7M 2s
3050K ......[0m[91m.... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 12% 6.79M 2s
3100K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 13% 9.75M 2s
3150K ..........[0m[91m ........[0m[91m.. ......[0m[91m.... .......... ..[0m[91m........ 13% 13.3M 2s
3200K ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... ..[0m[91m........[0m[91m ........[0m[91m.. 13% 9.33M 2s
3250K .....[0m[91m.[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 13% 9.18M 2s
3300K ....[0m[91m...... ..........[0m[91m ........[0m[91m.. ......[0m[91m.... .......... 14% 43.6M 2s
3350K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 14% 6.29M 2s[0m[91m
3400K .......... ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. 14% 6.18M 2s
3450K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 14% 12.8M 2s
3500K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 14% 8.75M 2s
3550K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 15% 12.1M 2s
3600K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 15% 5.37M 2s
3650K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 15% 12.1M 2s
3700K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 15% 16.7M 2s
3750K ..[0m[91m........ ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... .......... 15% 7.19M 2s[0m[91m
3800K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 16% 6.06M 2s
3850K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 16% 18.4M 2s
3900K .......... .[0m[91m.[0m[91m........[0m[91m ........[0m[91m.. .......... ....[0m[91m...... 16% 7.23M 2s
3950K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 16% 21.0M 2s[0m[91m
4000K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m ........[0m[91m.. 16% 7.55M 2s
4050K .....[0m[91m.[0m[91m.... ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. .......... 17% 6.99M 2s
4100K ....[0m[91m...... ..[0m[91m........[0m[91m ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... 17% 22.0M 2s
4150K ..[0m[91m........[0m[91m ........[0m[91m.. .......... ....[0m[91m...... .......... 17% 3.29M 2s[0m[91m
4200K .......[0m[91m... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 17% 18.1M 2s
4250K ......[0m[91m.... ....[0m[91m...... ..........[0m[91m ........[0m[91m.. ......[0m[91m.... 18% 33.9M 2s
4300K ....[0m[91m...... ..[0m[91m........[0m[91m ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... 18% 6.76M 2s
4350K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 18% 16.4M 2s
4400K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m ........[0m[91m.. 18% 9.07M 2s
4450K ..[0m[91m....[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 18% 26.0M 2s
4500K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 19% 5.99M 2s
4550K ..[0m[91m........[0m[91m ........[0m[91m.. .......... ....[0m[91m...... .......... 19% 8.44M 2s[0m[91m
4600K .......... ......[0m[91m.... ....[0m[91m...... ..[0m[91m........[0m[91m ........[0m[91m.. 19% 15.1M 2s
4650K ......[0m[91m.... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 19% 6.33M 2s
4700K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 19% 26.5M 2s
4750K ..[0m[91m........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 20% 7.53M 2s
4800K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 20% 26.0M 2s
4850K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 20% 6.29M 2s
4900K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 20% 8.61M 2s
4950K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 20% 21.0M 2s[0m[91m
5000K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 21% 5.77M 2s
5050K .......... ....[0m[91m...... .........[0m[91m.[0m[91m .......... ......[0m[91m.... 21% 26.4M 2s
5100K ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... 21% 8.12M 2s
5150K ..........[0m[91m .......... ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ 21%[0m[91m 22.9M 2s[0m[91m
5200K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 21% 6.41M 2s
5250K .....[0m[91m.[0m[91m.... .........[0m[91m. ..[0m[91m........ ........[0m[91m.. .......... 22% 25.0M 2s
5300K ....[0m[91m...... ..........[0m[91m ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... 22%[0m[91m 7.80M 2s
5350K[0m[91m ..[0m[91m........[0m[91m ........[0m[91m.. .......... ....[0m[91m...... ..[0m[91m........ 22% 21.9M[0m[91m 2s[0m[91m
5400K .......... ......[0m[91m.... .......... ..[0m[91m........[0m[91m ........[0m[91m.. 22% 6.31M 2s
5450K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 23% 3.63M 2s
5500K .......... ..[0m[91m........ ........[0m[91m.. ......[0m[91m.[0m[91m... ....[0m[91m...... 23%[0m[91m 20.2M 2s
5550K ..[0m[91m........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 23% 12.0M 2s
5600K ........[0m[91m.. .......... ....[0m[91m...... ..[0m[91m........[0m[91m .......... 23% 22.6M 2s
5650K ......[0m[91m.... ....[0m[91m...... ..[0m[91m........[0m[91m ........[0m[91m.. ......[0m[91m.... 23% 7.45M 2s
5700K ...[0m[91m.[0m[91m...... ..........[0m[91m ........[0m[91m.. ......[0m[91m.... .......... 24% 16.7M 2s
5750K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... ..[0m[91m........ 24% 8.26M 2s[0m[91m
5800K .......... ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. 24% 13.0M 2s
5850K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 24% 8.35M 2s
5900K ....[0m[91m...... ..[0m[91m........ ......[0m[91m..[0m[91m.. .......... ....[0m[91m...... 24% 16.0M 2s
5950K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 25% 8.34M 2s
6000K ........[0m[91m.. .......... ....[0m[91m...... ..[0m[91m.[0m[91m.......[0m[91m .......... 25%[0m[91m 20.6M 2s
6050K ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. .......... 25% 7.42M 2s
6100K ....[0m[91m...... ..........[0m[91m ........[0m[91m.. ......[0m[91m.... .......... 25% 17.9M 2s
6150K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 25% 7.67M 2s[0m[91m
6200K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 26% 13.2M 2s
6250K .......... ....[0m[91m...... ..........[0m[91m .......... [0m[91m......[0m[91m.... 26%[0m[91m 8.85M 2s[0m[91m
6300K ..[0m[91m..[0m[91m...... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 26% 13.6M 2s
6350K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 26% 11.0M 2s
6400K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 27% 11.1M 2s
6450K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 27% 12.5M 2s
6500K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 27% 8.82M 2s
6550K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 27% 16.9M 2s[0m[91m
6600K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 27% 13.6M 2s
6650K .......... ....[0m[91m...... ..[0m[91m........[0m[91m .......... ......[0m[91m.... 28% 6.74M 2s
6700K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 28% 9.51M 2s
6750K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 28% 20.4M 2s[0m[91m
6800K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 28%[0m[91m 15.9M 2s
6850K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 28% 3.14M 2s
6900K ..........[0m[91m ......[0m[91m....[0m[91m ........[0m[91m.. ......[0m[91m.... .......... 29% 19.4M 2s
6950K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 29% 25.8M 2s[0m[91m
7000K ........[0m[91m.. ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 29% 12.9M 2s
7050K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 29% 6.52M 2s
7100K .......... ..[0m[91m........ ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... 29% 9.50M 2s
7150K ..[0m[91m........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 30% 22.7M 2s
7200K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 30% 15.3M 2s
7250K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 30% 5.44M 2s
7300K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 30% 10.0M 2s
7350K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 30% 4.92M 2s[0m[91m
7400K .......... ...[0m[91m...[0m[91m.... .......... ..[0m[91m........ .......... 31% 12.6M 2s
7450K .......... ....[0m[91m...... .......... ........[0m[91m.. ......[0m[91m.... 31% 7.44M 2s
7500K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 31% 10.4M 2s
7550K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 31% 20.6M 2s[0m[91m
7600K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 32% 21.7M 2s
7650K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 32% 6.01M 2s
7700K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 32% 7.94M 2s
7750K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 32% 23.2M 2s[0m[91m
7800K .......... [0m[91m......[0m[91m.... ....[0m[91m.[0m[91m..... ..[0m[91m...[0m[91m.....[0m[91m ........[0m[91m.. 32% 5.11M 2s
7850K ......[0m[91m.... ....[0m[91m...... ..[0m[91m........[0m[91m .......... ......[0m[91m.... 33% 10.1M 2s
7900K ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 33% 23.4M 2s
7950K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 33% 20.0M 2s
8000K ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... ..[0m[91m........[0m[91m .......... 33% 5.96M 2s
8050K [0m[91m......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 33% 9.20M 2s
8100K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 34% 19.1M 2s
8150K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 34% 26.2M 2s[0m[91m
8200K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 34% 3.82M 2s
8250K ......[0m[91m.... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 34% 26.7M 2s
8300K .......... ..[0m[91m........ .....[0m[91m...[0m[91m.. ......[0m[91m.... ....[0m[91m...... 34% 23.7M 2s
8350K ..[0m[91m........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 35% 5.47M 2s
8400K ........[0m[91m.. .......... .[0m[91m...[0m[91m...... ..[0m[91m........[0m[91m .......... 35%[0m[91m 9.31M 2s
8450K ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. .......... 35% 26.9M 2s
8500K ....[0m[91m...... ..[0m[91m........[0m[91m ........[0m[91m.. ......[0m[91m.... .......... 35% 5.65M 2s
8550K ..[0m[91m........ ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ 36% 9.33M 2s[0m[91m
8600K .......... ......[0m[91m.... .......... ..[0m[91m.....[0m[91m...[0m[91m ........[0m[91m.. 36% 19.6M 2s
8650K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 36% 19.8M 2s
8700K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 36% 5.99M 2s
8750K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 36% 8.73M 2s
8800K ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... ..[0m[91m........[0m[91m .......... 37% 23.7M 2s
8850K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 37% 5.75M 2s
8900K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 37% 24.2M 2s
8950K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 37% 7.70M 2s[0m[91m
9000K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 37% 19.3M 2s
9050K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 38% 2.99M 2s
9100K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 38% 20.9M 2s
9150K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 38% 6.67M 2s
9200K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 38% 17.9M 2s
9250K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 38% 4.51M 2s
9300K ....[0m[91m...... ..........[0m[91m .......... .......... .......... 39% 32.4M 2s
9350K ..[0m[91m........ ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... .......... 39% 8.36M 2s[0m[91m
9400K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 39% 14.1M 2s
9450K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 39% 7.51M 2s
9500K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 39% 16.9M 1s
9550K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 40% 9.41M 1s
9600K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 40% 23.2M 1s
9650K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 40% 5.85M 1s
9700K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 40% 3.52M 1s
9750K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 41% 21.9M 1s[0m[91m
9800K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 41% 19.5M 1s
9850K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 41% 8.84M 1s
9900K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 41% 25.5M 1s
9950K ..........[0m[91m .......... ......[0m[91m.... ....[0m[91m.[0m[91m..... ..[0m[91m........ 41% 17.1M 1s[0m[91m
10000K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 42% 3.37M 1s
10050K ......[0m[91m.... .......... ..[0m[91m........ .......... .......... 42% 36.4M 1s
10100K ....[0m[91m...... ..[0m[91m........[0m[91m .......... ......[0m[91m.... .......... 42% 11.7M 1s
10150K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 42%[0m[91m 20.6M 1s[0m[91m
10200K .......... ......[0m[91m.... ....[0m[91m...... ..[0m[91m........[0m[91m ........[0m[91m.. 42% 15.8M 1s
10250K ......[0m[91m.... ....[0m[91m...... ..........[0m[91m ........[0m[91m.. ......[0m[91m.... 43% 6.19M 1s
10300K ....[0m[91m...... ..[0m[91m........[0m[91m ........[0m[91m.. .......... ....[0m[91m...... 43% 8.42M 1s
10350K ..........[0m[91m ........[0m[91m.. ......[0m[91m.... .......... ..[0m[91m........ 43% 22.0M 1s
10400K ........[0m[91m.. ..[0m[91m....[0m[91m.... ....[0m[91m...... ..[0m[91m........[0m[91m ...[0m[91m.....[0m[91m.. 43% 32.0M 1s
10450K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. ......[0m[91m.... 43% 5.54M 1s
10500K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 44% 7.83M 1s
10550K ..[0m[91m........ ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... .......... 44% 27.0M 1s[0m[91m
10600K ........[0m[91m.. ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 44% 5.86M 1s
10650K ......[0m[91m.... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 44% 8.83M 1s
10700K ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 45% 23.0M 1s
10750K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 45% 6.32M 1s
10800K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 45% 21.4M 1s
10850K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 45% 7.70M 1s
10900K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... ....[0m[91m...... 45% 21.2M 1s
10950K ..[0m[91m........[0m[91m ........[0m[91m.. .......... ....[0m[91m...... .......... 46% 6.35M 1s[0m[91m
11000K ..........[0m[91m ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 46% 3.75M 1s
11050K .......... ....[0m[91m...... ..[0m[91m........[0m[91m .......... ......[0m[91m.... 46% 21.9M 1s
11100K ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 46% 6.19M 1s
11150K ..........[0m[91m .......... .......... ....[0m[91m...... .......... 46% 68.3M 1s[0m[91m
11200K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 47% 7.28M 1s
11250K ......[0m[91m.... .......... ..[0m[91m........[0m[91m ........[0m[91m.. .......... 47% 23.4M 1s
11300K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 47% 6.46M 1s
11350K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 47% 7.70M 1s[0m[91m
11400K ........[0m[91m.. ......[0m[91m.... .....[0m[91m..... ..[0m[91m........ ........[0m[91m.. 47% 16.9M 1s
11450K ......[0m[91m.... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 48% 5.52M 1s
11500K .......... ..[0m[91m........[0m[91m [0m[91m........[0m[91m.. ......[0m[91m.... ....[0m[91m...... 48% 19.0M 1s
11550K ..[0m[91m........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 48% 10.2M 1s
11600K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 48% 12.5M 1s
11650K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 48% 10.9M 1s
11700K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 49% 8.52M 1s
11750K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 49% 14.8M 1s[0m[91m
11800K .......... ......[0m[91m.... .......... ..[0m[91m........[0m[91m ........[0m[91m.. 49% 23.3M 1s
11850K ......[0m[91m.... ....[0m[91m..[0m[91m.... ..[0m[91m........[0m[91m .......[0m[91m.[0m[91m.. ......[0m[91m.... 49% 5.08M 1s
11900K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 50% 11.4M 1s
11950K ..........[0m[91m .......... ......[0m[91m.... .......[0m[91m... ..[0m[91m........ 50% 24.2M 1s
12000K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 50% 21.0M 1s
12050K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 50% 5.78M 1s
12100K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 50% 9.22M 1s
12150K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 51% 23.5M 1s[0m[91m
12200K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 51% 13.9M 1s
12250K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 51% 5.53M 1s
12300K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 51% 14.1M 1s
12350K ..........[0m[91m .......... ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ 51% 23.1M 1s[0m[91m
12400K ........[0m[91m.. .......... ....[0m[91m...... ..[0m[91m........[0m[91m .......... 52% 15.7M 1s
12450K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 52% 4.57M 1s
12500K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.[0m[91m... .......... 52% 19.6M 1s
12550K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 52% 26.5M 1s[0m[91m
12600K .......... ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ .[0m[91m.......[0m[91m.. 52% 4.70M 1s
12650K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 53% 12.2M 1s
12700K .......... ..[0m[91m........ ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... 53% 22.4M 1s
12750K ..........[0m[91m ........[0m[91m.. ......[0m[91m.... .......... ..[0m[91m........ 53% 21.4M 1s[0m[91m
12800K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 53% 5.42M 1s
12850K ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. .......... 54% 10.8M 1s
12900K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 54% 23.5M 1s
12950K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 54% 17.8M 1s[0m[91m
13000K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 54% 4.23M 1s
13050K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 54% 23.8M 1s
13100K ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 55% 23.3M 1s
13150K ..........[0m[91m .......... ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ 55% 6.45M 1s
13200K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 55% 9.47M 1s
13250K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 55% 10.6M 1s
13300K ....[0m[91m...... .......... ........[0m[91m.. ......[0m[91m.... .......... 55% 31.7M 1s
13350K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 56% 7.00M 1s[0m[91m
13400K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 56% 13.5M 1s
13450K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 56% 8.71M 1s
13500K .......... ..[0m[91m........[0m[91m ........[0m[91m.. .......... ....[0m[91m...... 56% 16.1M 1s
13550K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 56% 8.73M 1s
13600K ........[0m[91m.. .......[0m[91m... ....[0m[91m...... ..........[0m[91m .......... 57% 13.0M 1s
13650K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 57% 9.20M 1s
13700K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 57% 15.1M 1s
13750K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 57% 9.54M 1s[0m[91m
13800K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 57% 6.88M 1s
13850K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 58% 23.5M 1s
13900K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 58% 7.61M 1s
13950K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 58% 19.3M 1s[0m[91m
14000K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 58% 10.1M 1s
14050K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 59% 11.7M 1s
14100K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 59% 11.3M 1s
14150K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 59% 8.95M 1s[0m[91m
14200K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 59% 10.7M 1s
14250K ......[0m[91m....[0m[91m ....[0m[91m...... ..[0m[91m........[0m[91m .......... ......[0m[91m.... 59% 17.1M 1s
14300K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 60% 8.29M 1s
14350K ..........[0m[91m ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ 60% 7.87M 1s
14400K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 60% 25.0M 1s
14450K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 60% 6.92M 1s
14500K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 60% 4.89M 1s
14550K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 61% 19.2M 1s
14600K ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. 61% 7.38M 1s
14650K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 61% 26.2M 1s
14700K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 61% 8.28M 1s
14750K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 61% 23.5M 1s
14800K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 62% 3.49M 1s
14850K ......[0m[91m.... .......... ..[0m[91m........[0m[91m ........[0m[91m.. .......... 62%[0m[91m 18.3M 1s
14900K ....[0m[91m...... .....[0m[91m.....[0m[91m .......... ......[0m[91m.... .......... 62% 12.3M 1s
14950K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 62% 9.49M 1s[0m[91m
15000K .......... ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. 63% 3.75M 1s
15050K ......[0m[91m.... ....[0m[91m...... ..........[0m[91m .......... .......... 63% 21.4M 1s
15100K .......... ..[0m[91m........ .......... .......... ....[0m[91m...... 63% 11.7M 1s
15150K ..........[0m[91m .......... .[0m[91m.....[0m[91m.... ....[0m[91m...... ..[0m[91m........ 63% 15.0M 1s[0m[91m
15200K ........[0m[91m.. .......... ....[0m[91m...... ..[0m[91m........[0m[91m .......... 63% 7.36M 1s
15250K ......[0m[91m.... .......... .[0m[91m.[0m[91m........[0m[91m ........[0m[91m.. .......... 64%[0m[91m 19.1M 1s
15300K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 64% 8.33M 1s
15350K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 64% 20.2M 1s[0m[91m
15400K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 64% 6.05M 1s
15450K .......... ....[0m[91m...... ..[0m[91m........[0m[91m .......... ......[0m[91m.... 64% 7.81M 1s
15500K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 65% 27.2M 1s
15550K ..........[0m[91m .......... ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ 65% 6.74M 1s
15600K ........[0m[91m.. .......... ....[0m[91m...[0m[91m... ..[0m[91m........[0m[91m ........[0m[91m.. 65% 16.0M 1s
15650K ......[0m[91m.... ....[0m[91m...... ..[0m[91m........[0m[91m ........[0m[91m.. .......... 65% 8.48M 1s
15700K ....[0m[91m...... ..[0m[91m........[0m[91m .......... ..[0m[91m....[0m[91m.... .......... 65% 25.9M 1s
15750K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 66% 6.64M 1s[0m[91m
15800K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 66% 7.40M 1s
15850K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 66% 18.6M 1s
15900K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 66% 25.8M 1s
15950K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 66% 6.30M 1s
16000K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 67% 3.74M 1s
16050K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 67% 14.6M 1s
16100K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 67% 11.8M 1s
16150K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... ..[0m[91m........ 67% 15.8M 1s[0m[91m
16200K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 68% 6.87M 1s
16250K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 68% 12.5M 1s
16300K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 68% 9.58M 1s
16350K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 68% 9.73M 1s
16400K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m ........[0m[91m.. 68% 31.6M 1s
16450K .....[0m[91m.[0m[91m.... ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. ......[0m[91m.... 69% 18.5M 1s
16500K ..[0m[91m..[0m[91m...... ..........[0m[91m ........[0m[91m.. ......[0m[91m.... .......... 69% 3.11M 1s
16550K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 69% 15.5M 1s[0m[91m
16600K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 69% 8.77M 1s
16650K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 69% 10.2M 1s
16700K ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... 70% 19.8M 1s
16750K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 70% 8.06M 1s
16800K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 70% 25.5M 1s
16850K[0m[91m ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. ......[0m[91m....[0m[91m 70% 6.24M 1s
16900K ...[0m[91m.[0m[91m...... ..[0m[91m........[0m[91m .......... ......[0m[91m.... .......... 70% 22.2M 1s
16950K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 71% 8.01M 1s[0m[91m
17000K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 71% 15.0M 1s
17050K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 71% 6.87M 1s
17100K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 71% 8.29M 1s
17150K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 72% 20.4M 1s[0m[91m
17200K ........[0m[91m.. .......... ....[0m[91m...... ..[0m[91m........[0m[91m .......... 72% 19.0M 1s
17250K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 72% 6.48M 1s
17300K ....[0m[91m...... ..[0m[91m........[0m[91m .......... ......[0m[91m.... .......... 72% 7.64M 1s
17350K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 72% 21.5M 1s[0m[91m
17400K ........[0m[91m.. ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 73% 5.30M 1s
17450K ......[0m[91m.... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 73% 11.2M 1s
17500K ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 73% 16.7M 1s
17550K .......... .......[0m[91m.[0m[91m.. ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ 73% 53.2M 1s[0m[91m
17600K ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... ..........[0m[91m .......... 73% 5.58M 1s
17650K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 74% 3.48M 1s
17700K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 74% 19.3M 1s
17750K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 74% 23.0M 1s[0m[91m
17800K ........[0m[91m.. ......[0m[91m.... .......... ..[0m[91m........[0m[91m ........[0m[91m.. 74% 9.80M 1s
17850K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 74% 11.2M 1s
17900K .......... ..[0m[91m........ .........[0m[91m. ......[0m[91m.... ...[0m[91m.[0m[91m...... 75% 56.0M 1s
17950K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 75% 5.66M 1s
18000K ........[0m[91m.. .......... ....[0m[91m...... ..[0m[91m.[0m[91m....[0m[91m...[0m[91m ........[0m[91m.. 75% 13.9M 1s
18050K ......[0m[91m.... .......... .[0m[91m.[0m[91m........ ........[0m[91m.. .......... 75% 15.3M 1s
18100K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 75% 8.69M 1s
18150K ..[0m[91m........ ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... .......... 76% 9.79M 1s[0m[91m
18200K .......... ......[0m[91m.... [0m[91m....[0m[91m...... ..[0m[91m........[0m[91m ........[0m[91m.. 76% 27.8M 1s
18250K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 76% 6.55M 1s
18300K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 76% 9.09M 1s
18350K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 77% 22.2M 1s
18400K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 77% 20.9M 1s
18450K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. ......[0m[91m.... 77%[0m[91m 4.93M 1s
18500K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... ..........[0m[91m 77% 7.77M 1s
18550K ..[0m[91m........[0m[91m ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ 77% 23.6M 1s[0m[91m
18600K ........[0m[91m.. ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 78% 6.14M 1s
18650K .......... ....[0m[91m...... ........[0m[91m..[0m[91m .......... ......[0m[91m.... 78% 8.11M 1s
18700K ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... 78% 19.2M 1s
18750K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 78% 6.46M 1s
18800K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 78% 19.7M 1s
18850K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 79% 8.63M 1s
18900K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 79% 26.0M 1s
18950K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 79% 5.75M 0s[0m[91m
19000K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 79% 8.04M 0s
19050K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 79% 20.3M 0s
19100K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 80% 6.34M 0s
19150K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 80% 8.45M 0s
19200K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 80% 19.3M 0s
19250K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 80% 27.0M 0s
19300K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 81% 6.15M 0s
19350K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 81% 9.35M 0s[0m[91m
19400K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 81% 17.3M 0s
19450K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 81% 5.84M 0s
19500K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 81% 9.95M 0s
19550K ..[0m[91m........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 82% 19.3M 0s[0m[91m
19600K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 82% 24.0M 0s
19650K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 82% 5.95M 0s
19700K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 82% 8.81M 0s
19750K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m 82% 25.9M 0s[0m[91m
19800K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 83% 5.28M 0s
19850K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 83% 9.45M 0s
19900K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 83% 21.4M 0s
19950K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 83% 27.1M 0s
20000K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 83% 5.76M 0s
20050K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 84% 8.39M 0s
20100K .[0m[91m...[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 84% 19.5M 0s
20150K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 84% 36.3M 0s[0m[91m
20200K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 84% 3.93M 0s
20250K .......... ....[0m[91m...... ..........[0m[91m ........[0m[91m.. ......[0m[91m.... 84% 22.6M 0s
20300K ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 85% 22.6M 0s
20350K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 85% 5.84M 0s[0m[91m
20400K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 85% 10.3M 0s
20450K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. ......[0m[91m.... 85% 20.4M 0s
20500K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 86% 23.5M 0s
20550K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 86% 5.99M 0s[0m[91m
20600K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 86% 6.56M 0s
20650K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 86% 22.6M 0s
20700K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 86% 3.06M 0s
20750K ..........[0m[91m .......... ......[0m[91m.... .......... .......... 87% 64.7M 0s[0m[91m
20800K ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... ..[0m[91m........[0m[91m .......... 87% 17.7M 0s
20850K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 87% 8.54M 0s
20900K ....[0m[91m...... ..[0m[91m........[0m[91m .......... ......[0m[91m.... .......... 87% 20.4M 0s
20950K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 87% 7.14M 0s[0m[91m
21000K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 88% 3.99M 0s
21050K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 88% 20.9M 0s
21100K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 88% 123M 0s
21150K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 88% 9.02M 0s[0m[91m
21200K .......[0m[91m.[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 88% 7.79M 0s
21250K ......[0m[91m.... .......... ..[0m[91m........[0m[91m ........[0m[91m.. .......... 89% 19.2M 0s
21300K ....[0m[91m...... ..[0m[91m..[0m[91m......[0m[91m ........[0m[91m.. ......[0m[91m.... .......... 89% 7.07M 0s
21350K ..[0m[91m........ ........[0m[91m.. ..........[0m[91m ....[0m[91m...... .......... 89% 22.0M 0s[0m[91m
21400K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 89% 6.75M 0s
21450K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 90% 30.8M 0s
21500K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 90% 6.37M 0s
21550K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 90% 14.5M 0s
21600K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 90% 3.55M 0s
21650K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 90% 21.7M 0s
21700K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... ....[0m[91m...... 91% 72.4M 0s
21750K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 91% 7.73M 0s[0m[91m
21800K .......... ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. 91% 17.9M 0s
21850K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 91% 6.59M 0s
21900K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 91% 12.7M 0s
21950K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 92% 12.7M 0s
22000K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 92% 26.1M 0s
22050K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. ......[0m[91m.... 92% 4.73M 0s
22100K ....[0m[91m...... [0m[91m..[0m[91m........[0m[91m ........[0m[91m.. ......[0m[91m.... .......... 92% 24.0M 0s
22150K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 92% 12.7M 0s[0m[91m
22200K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 93% 7.65M 0s
22250K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 93% 10.6M 0s
22300K .......... ..[0m[91m........ .......... .......... ....[0m[91m...... 93% 23.2M 0s
22350K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 93% 8.57M 0s
22400K ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... ..........[0m[91m .......... 93% 21.4M 0s
22450K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 94% 7.02M 0s
22500K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 94% 16.5M 0s
22550K ..[0m[91m........ ........[0m[91m.. .......... .[0m[91m...[0m[91m...... .......... 94% 7.48M 0s[0m[91m
22600K .......... ......[0m[91m.... .......... .[0m[91m.[0m[91m........ ........[0m[91m.. 94% 6.67M 0s
22650K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 95% 28.6M 0s
22700K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 95% 7.19M 0s
22750K ..........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 95% 13.0M 0s
22800K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 95% 9.73M 0s
22850K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. ......[0m[91m.... 95% 19.7M 0s
22900K ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 96% 10.6M 0s
22950K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 96% 9.30M 0s[0m[91m
23000K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 96% 9.86M 0s
23050K ......[0m[91m.... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 96% 8.14M 0s
23100K .......... ..[0m[91m........ ........[0m[91m.. ......[0m[91m.... ....[0m[91m...... 96% 18.4M 0s
23150K ..........[0m[91m ........[0m[91m.[0m[91m. ......[0m[91m.... ....[0m[91m...... ..[0m[91m........ 97% 17.2M 0s[0m[91m
23200K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 97% 6.72M 0s
23250K ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. .......... 97%[0m[91m 9.26M 0s
23300K [0m[91m....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... .......... 97% 22.2M 0s
23350K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 97% 16.2M 0s[0m[91m
23400K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 98% 4.78M 0s
23450K .......... ....[0m[91m...... ..........[0m[91m .......... ......[0m[91m.... 98% 13.2M 0s
23500K .......... ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... 98% 17.1M 0s
23550K ..[0m[91m........[0m[91m .......... ......[0m[91m.... .......... ..[0m[91m........ 98% 8.16M 0s
23600K ........[0m[91m.. .......... ....[0m[91m...... ..........[0m[91m .......... 99% 19.1M 0s
23650K .......... ....[0m[91m...... ..[0m[91m........ ........[0m[91m.. .......... 99% 19.3M 0s
23700K ....[0m[91m...... ..[0m[91m........[0m[91m .......... ......[0m[91m.... .......... 99% 3.50M 0s
23750K ..[0m[91m........ ........[0m[91m.. .......... ....[0m[91m...... .......... 99% 18.4M 0s[0m[91m
23800K .......... ......[0m[91m.... .......... ..[0m[91m........ ........[0m[91m.. 99% 4.31M 0s
23850K .......... ....[0m[91m...... ..........[0m[91m ....... 100% 23.7M=2.4s
2022-03-23 09:52:42 (9.64 MB/s) - 'conan-ubuntu-64.deb' saved [24461256/24461256]
[0mRemoving intermediate container 99128265eea0
---> a06063abb868
Step 5/16 : RUN dpkg -i conan-ubuntu-64.deb
---> Running in b7ea9bca1940
Selecting previously unselected package conan.
(Reading database ... 23298 files and directories currently installed.)
Preparing to unpack conan-ubuntu-64.deb ...
Unpacking conan (1.46.2) ...
Setting up conan (1.46.2) ...
Removing intermediate container b7ea9bca1940
---> a51990faf24a
Step 6/16 : RUN mkdir /test
---> Running in ee6d9b918916
Removing intermediate container ee6d9b918916
---> 51ae7c27ea68
Step 7/16 : WORKDIR /test
---> Running in 734fb38d4a21
Removing intermediate container 734fb38d4a21
---> 47df69c525cf
Step 8/16 : RUN git init
---> Running in e7a04f25785c
[91mhint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
[0mInitialized empty Git repository in /test/.git/
Removing intermediate container e7a04f25785c
---> 73e7bd3a58bb
Step 9/16 : RUN git submodule add https://github.com/jtv/libpqxx.git libs/libpqxx
---> Running in 8ee683d78976
[91mCloning into '/test/libs/libpqxx'...
[0mRemoving intermediate container 8ee683d78976
---> ac66a71e55e2
Step 10/16 : RUN wget https://gist.github.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/CMakeLists.txt
---> Running in 28b7d7521af0
[91m--2022-03-23 09:52:58-- https://gist.github.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/CMakeLists.txt
[0m[91mResolving gist.github.com (gist.github.com)... [0m[91m140.82.121.4
Connecting to gist.github.com (gist.github.com)|140.82.121.4|:443... [0m[91mconnected.
[0m[91mHTTP request sent, awaiting response... [0m[91m301 Moved Permanently
Location: https://gist.githubusercontent.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/CMakeLists.txt [following]
--2022-03-23 09:52:58-- https://gist.githubusercontent.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/CMakeLists.txt
Resolving gist.githubusercontent.com (gist.githubusercontent.com)... [0m[91m185.199.109.133, 185.199.111.133, 185.199.108.133, ...
Connecting to gist.githubusercontent.com (gist.githubusercontent.com)|185.199.109.133|:443... [0m[91mconnected.
[0m[91mHTTP request sent, awaiting response... [0m[91m200 OK
Length: 806 [text/plain]
[0m[91mSaving to: 'CMakeLists.txt'
0K 100% 109M=0s
[0m[91m2022-03-23 09:52:58 (109 MB/s) - 'CMakeLists.txt' saved [806/806]
[0mRemoving intermediate container 28b7d7521af0
---> 30251e538924
Step 11/16 : RUN wget https://gist.github.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/conan.cmake
---> Running in a2aa38c3a1d6
[91m--2022-03-23 09:53:00-- https://gist.github.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/conan.cmake
[0m[91mResolving gist.github.com (gist.github.com)... [0m[91m140.82.121.4
Connecting to gist.github.com (gist.github.com)|140.82.121.4|:443... [0m[91mconnected.
[0m[91mHTTP request sent, awaiting response... [0m[91m301 Moved Permanently
Location: https://gist.githubusercontent.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/conan.cmake [following]
[0m[91m--2022-03-23 09:53:00-- https://gist.githubusercontent.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/conan.cmake
Resolving gist.githubusercontent.com (gist.githubusercontent.com)... [0m[91m185.199.110.133, 185.199.108.133, 185.199.111.133, ...
Connecting to gist.githubusercontent.com (gist.githubusercontent.com)|185.199.110.133|:443... [0m[91mconnected.
[0m[91mHTTP request sent, awaiting response... [0m[91m200 OK
[0m[91mLength: 36260 (35K) [text/plain]
[0m[91mSaving to: 'conan.cmake'
[0m[91m
0K .[0m[91m.[0m[91m..[0m[91m.[0m[91m.[0m[91m..[0m[91m.[0m[91m. ..[0m[91m..[0m[91m.[0m[91m..[0m[91m..[0m[91m.[0m[91m ...[0m[91m..[0m[91m..[0m[91m.[0m[91m.. .[0m[91m..[0m[91m..[0m[91m 100% 6.87M=0.005s[0m[91m
[0m[91m2022-03-23 09:53:00 (6.87 MB/s) - 'conan.cmake' saved [36260/36260]
[0mRemoving intermediate container a2aa38c3a1d6
---> e2ed1b62127a
Step 12/16 : RUN wget https://gist.github.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/linux_to_win64.conan
---> Running in 3d7e3378c231
[91m--2022-03-23 09:53:02-- https://gist.github.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/linux_to_win64.conan
[0m[91mResolving gist.github.com (gist.github.com)... [0m[91m140.82.121.4
Connecting to gist.github.com (gist.github.com)|140.82.121.4|:443... [0m[91mconnected.
[0m[91mHTTP request sent, awaiting response... [0m[91m301 Moved Permanently
Location: https://gist.githubusercontent.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/linux_to_win64.conan [following]
--2022-03-23 09:53:02-- https://gist.githubusercontent.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/linux_to_win64.conan
Resolving gist.githubusercontent.com (gist.githubusercontent.com)... [0m[91m185.199.109.133, 185.199.110.133, 185.199.108.133, ...
Connecting to gist.githubusercontent.com (gist.githubusercontent.com)|185.199.109.133|:443... [0m[91mconnected.
[0m[91mHTTP request sent, awaiting response... [0m[91m200 OK
[0m[91mLength: 695 [text/plain]
[0m[91mSaving to: 'linux_to_win64.conan'
[0m[91m
0K 100% 76.3M=0s
[0m[91m2022-03-23 09:53:02 (76.3 MB/s) - 'linux_to_win64.conan' saved [695/695]
[0mRemoving intermediate container 3d7e3378c231
---> 8733e0f4e2ab
Step 13/16 : RUN wget https://gist.github.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/main.cpp
---> Running in 7a9b1f361685
[91m--2022-03-23 09:53:04-- https://gist.github.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/main.cpp
[0m[91mResolving gist.github.com (gist.github.com)... [0m[91m140.82.121.4
Connecting to gist.github.com (gist.github.com)|140.82.121.4|:443... [0m[91mconnected.
[0m[91mHTTP request sent, awaiting response... [0m[91m301 Moved Permanently
Location: https://gist.githubusercontent.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/main.cpp [following]
--2022-03-23 09:53:04-- https://gist.githubusercontent.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/main.cpp
Resolving gist.githubusercontent.com (gist.githubusercontent.com)... [0m[91m185.199.111.133, 185.199.109.133, 185.199.110.133, ...
Connecting to gist.githubusercontent.com (gist.githubusercontent.com)|185.199.111.133|:443... [0m[91mconnected.
[0m[91mHTTP request sent, awaiting response... [0m[91m200 OK
[0m[91mLength: 77 [text/plain]
[0m[91mSaving to: 'main.cpp'
0K 100% 6.09M=0s
[0m[91m2022-03-23 09:53:05 (6.09 MB/s) - 'main.cpp' saved [77/77]
[0mRemoving intermediate container 7a9b1f361685
---> 93e04f3dcba3
Step 14/16 : RUN wget https://gist.github.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/mingw.cmake
---> Running in 0ddde2b46722
[91m--2022-03-23 09:53:06-- https://gist.github.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/mingw.cmake
[0m[91mResolving gist.github.com (gist.github.com)... [0m[91m140.82.121.4
Connecting to gist.github.com (gist.github.com)|140.82.121.4|:443... [0m[91mconnected.
[0m[91mHTTP request sent, awaiting response... [0m[91m301 Moved Permanently
Location: https://gist.githubusercontent.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/mingw.cmake [following]
[0m[91m--2022-03-23 09:53:07-- https://gist.githubusercontent.com/DerKnerd/ab506480e32aab0d2b3e564fa2e67906/raw/0be5039549e71f5080ef15a7173730af0dd1f222/mingw.cmake
[0m[91mResolving gist.githubusercontent.com (gist.githubusercontent.com)... [0m[91m185.199.108.133, 185.199.111.133, 185.199.109.133, ...
Connecting to gist.githubusercontent.com (gist.githubusercontent.com)|185.199.108.133|:443... [0m[91mconnected.
[0m[91mHTTP request sent, awaiting response... [0m[91m200 OK
[0m[91mLength: 615 [text/plain]
[0m[91mSaving to: 'mingw.cmake'
0K 100% 75.0M=0s
[0m[91m2022-03-23 09:53:07 (75.0 MB/s) - 'mingw.cmake' saved [615/615]
[0mRemoving intermediate container 0ddde2b46722
---> 37f036a6cb1e
Step 15/16 : RUN cmake -DCMAKE_TOOLCHAIN_FILE=mingw.cmake -B build -S . -DCMAKE_BUILD_TYPE=Release
---> Running in 3a9b739b210f
-- The CXX compiler identification is GNU 10.0.0
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/x86_64-w64-mingw32-g++-posix - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Conan: checking conan executable
-- Conan: Found program /usr/bin/conan
-- Conan: Version found Conan version 1.46.2
-- Conan executing: /usr/bin/conan install . --remote conancenter --build missing --profile /test/linux_to_win64.conan --settings build_type=Release --settings compiler=gcc --settings compiler.version=10 --settings compiler.libcxx=libstdc++11
Auto detecting your dev setup to initialize the default profile (/root/.conan/profiles/default)
CC and CXX: None, /usr/bin/x86_64-w64-mingw32-g++-posix
No compiler was detected (one may not be needed)
Default settings
os=Linux
os_build=Linux
arch=x86_64
arch_build=x86_64
build_type=Release
*** You can change them in /root/.conan/profiles/default ***
*** Or override with -s compiler='other' -s ...s***
Configuration:
[settings]
arch=x86_64
build_type=Release
compiler=gcc
compiler.libcxx=libstdc++11
compiler.version=10
os=Windows
[options]
[build_requires]
[env]
AR=/usr/bin/x86_64-w64-mingw32-ar
AS=/usr/bin/x86_64-w64-mingw32-as
CC=/usr/bin/x86_64-w64-mingw32-gcc-posix
CHOST=$target_host
CONAN_CMAKE_FIND_ROOT_PATH=/usr/x86_64-w64-mingw32 # Optional, for CMake to find things in that folder
CONAN_CMAKE_SYSROOT=/usr/x86_64-w64-mingw32 # Optional, if we want to define sysroot
CXX=/usr/bin/x86_64-w64-mingw32-g++-posix
RANLIB=/usr/bin/x86_64-w64-mingw32-ranlib
RC=/usr/bin/x86_64-w64-mingw32-windres
STRIP=/usr/bin/x86_64-w64-mingw32-strip
WIN32=1
libpq/12.2: Retrieving from server 'conancenter'
libpq/12.2: Trying with 'conancenter'...
Downloading conanmanifest.txt
Downloading conanfile.py
Downloading conan_export.tgz
libpq/12.2: Downloaded recipe revision 0
msys2/cci.latest: Retrieving from server 'conancenter'
msys2/cci.latest: Trying with 'conancenter'...
Downloading conanmanifest.txt
Downloading conanfile.py
Downloading conan_export.tgz
msys2/cci.latest: Downloaded recipe revision 0
conanfile.txt: Installing package
Requirements
libpq/12.2 from 'conancenter' - Downloaded
Packages
libpq/12.2:c6817f477abe7e9a917b102f37dc1fd0c2d95f50 - Build
Build requirements
msys2/cci.latest from 'conancenter' - Downloaded
Build requirements packages
msys2/cci.latest:eee3fba89db6d777329de604625af8c30d46f080 - Download
Cross-build from 'Linux:x86_64' to 'Windows:x86_64'
Installing (downloading, building) binaries...
msys2/cci.latest: Retrieving package eee3fba89db6d777329de604625af8c30d46f080 from remote 'conancenter'
Downloading conanmanifest.txt
Downloading conaninfo.txt
Downloading conan_package.tgz
msys2/cci.latest: Package installed eee3fba89db6d777329de604625af8c30d46f080
msys2/cci.latest: Downloaded package revision 0
msys2/cci.latest: Creating MSYS_ROOT env var : /root/.conan/data/msys2/cci.latest/_/_/package/eee3fba89db6d777329de604625af8c30d46f080/bin/msys64
msys2/cci.latest: Creating MSYS_BIN env var : /root/.conan/data/msys2/cci.latest/_/_/package/eee3fba89db6d777329de604625af8c30d46f080/bin/msys64/usr/bin
msys2/cci.latest: Appending PATH env var with : /root/.conan/data/msys2/cci.latest/_/_/package/eee3fba89db6d777329de604625af8c30d46f080/bin/msys64/usr/bin
libpq/12.2: Applying build-requirement: msys2/cci.latest
libpq/12.2: Configuring sources in /root/.conan/data/libpq/12.2/_/_/source
libpq/12.2: Copying sources to build folder
libpq/12.2: Building your package in /root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50
libpq/12.2: Generator txt created conanbuildinfo.txt
libpq/12.2: Aggregating env generators
libpq/12.2: Calling build()
libpq/12.2: Calling:
> ./configure '--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=${prefix}/bin' '--sbindir=${prefix}/bin' '--libexecdir=${prefix}/bin' '--libdir=${prefix}/lib' '--includedir=${prefix}/include' '--oldincludedir=${prefix}/include' '--datarootdir=${prefix}/share' --build=x86_64-linux-gnu --host=x86_64-w64-mingw32
[91mconfigure: WARNING: unrecognized options: --disable-strong-random
[0mchecking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-w64-mingw32
checking which template to use... win32
checking whether NLS is wanted... no
checking for default port number... 5432
checking for block size... 8kB
checking for segment size... 1GB
checking for WAL block size... 8kB
checking for x86_64-w64-mingw32-gcc... /usr/bin/x86_64-w64-mingw32-gcc-posix
checking whether the C compiler works... yes
checking for C compiler default output file name... a.exe
checking for suffix of executables... .exe
checking whether we are cross compiling... yes
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /usr/bin/x86_64-w64-mingw32-gcc-posix accepts -g... yes
checking for /usr/bin/x86_64-w64-mingw32-gcc-posix option to accept ISO C89... none needed
checking for /usr/bin/x86_64-w64-mingw32-gcc-posix option to accept ISO C99... none needed
checking whether we are using the GNU C++ compiler... yes
checking whether /usr/bin/x86_64-w64-mingw32-g++-posix accepts -g... yes
checking for gawk... no
checking for mawk... mawk
checking whether /usr/bin/x86_64-w64-mingw32-gcc-posix supports -Wdeclaration-after-statement, for CFLAGS... yes
checking whether /usr/bin/x86_64-w64-mingw32-gcc-posix supports -Werror=vla, for CFLAGS... yes
checking whether /usr/bin/x86_64-w64-mingw32-gcc-posix supports -Wendif-labels, for CFLAGS... yes
checking whether /usr/bin/x86_64-w64-mingw32-g++-posix supports -Wendif-labels, for CXXFLAGS... yes
checking whether /usr/bin/x86_64-w64-mingw32-gcc-posix supports -Wmissing-format-attribute, for CFLAGS... yes
checking whether /usr/bin/x86_64-w64-mingw32-g++-posix supports -Wmissing-format-attribute, for CXXFLAGS... yes
checking whether /usr/bin/x86_64-w64-mingw32-gcc-posix supports -Wformat-security, for CFLAGS... yes
checking whether /usr/bin/x86_64-w64-mingw32-g++-posix supports -Wformat-security, for CXXFLAGS... yes
checking whether /usr/bin/x86_64-w64-mingw32-gcc-posix supports -fno-strict-aliasing, for CFLAGS... yes
checking whether /usr/bin/x86_64-w64-mingw32-g++-posix supports -fno-strict-aliasing, for CXXFLAGS... yes
checking whether /usr/bin/x86_64-w64-mingw32-gcc-posix supports -fwrapv, for CFLAGS... yes
checking whether /usr/bin/x86_64-w64-mingw32-g++-posix supports -fwrapv, for CXXFLAGS... yes
checking whether /usr/bin/x86_64-w64-mingw32-gcc-posix supports -fexcess-precision=standard, for CFLAGS... yes
checking whether /usr/bin/x86_64-w64-mingw32-g++-posix supports -fexcess-precision=standard, for CXXFLAGS... no
checking whether /usr/bin/x86_64-w64-mingw32-gcc-posix supports -funroll-loops, for CFLAGS_VECTOR... yes
checking whether /usr/bin/x86_64-w64-mingw32-gcc-posix supports -ftree-vectorize, for CFLAGS_VECTOR... yes
checking whether /usr/bin/x86_64-w64-mingw32-gcc-posix supports -Wunused-command-line-argument, for NOT_THE_CFLAGS... no
checking whether /usr/bin/x86_64-w64-mingw32-gcc-posix supports -Wformat-truncation, for NOT_THE_CFLAGS... yes
checking whether /usr/bin/x86_64-w64-mingw32-gcc-posix supports -Wstringop-truncation, for NOT_THE_CFLAGS... yes
checking whether the C compiler still works... yes
checking how to run the C preprocessor... /usr/bin/x86_64-w64-mingw32-gcc-posix -E
checking allow thread-safe client libraries... yes
checking whether to build with ICU support... no
checking whether to build with Tcl... no
checking whether to build Perl modules... no
checking whether to build Python modules... no
checking whether to build with GSSAPI support... no
checking whether to build with PAM support... no
checking whether to build with BSD Authentication support... no
checking whether to build with LDAP support... no
checking whether to build with Bonjour support... no
checking whether to build with OpenSSL support... no
checking whether to build with SELinux support... no
checking whether to build with systemd support... no
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ld used by GCC... /usr/bin/x86_64-w64-mingw32-ld
checking if the linker (/usr/bin/x86_64-w64-mingw32-ld) is GNU ld... yes
checking for x86_64-w64-mingw32-ranlib... /usr/bin/x86_64-w64-mingw32-ranlib
checking for x86_64-w64-mingw32-strip... /usr/bin/x86_64-w64-mingw32-strip
checking whether it is possible to strip libraries... yes
checking for x86_64-w64-mingw32-ar... /usr/bin/x86_64-w64-mingw32-ar
checking for x86_64-w64-mingw32-dlltool... x86_64-w64-mingw32-dlltool
checking for x86_64-w64-mingw32-dllwrap... x86_64-w64-mingw32-dllwrap
checking for x86_64-w64-mingw32-windres... x86_64-w64-mingw32-windres
checking for a BSD-compatible install... /usr/bin/install -c
checking for tar... /usr/bin/tar
checking whether ln -s works... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for bison... no
checking for flex... [91mconfigure: WARNING:
*** Without Bison you will not be able to build PostgreSQL from Git nor
*** change any of the parser definition files. You can obtain Bison from
*** a GNU mirror site. (If you are using the official distribution of
*** PostgreSQL then you do not need to worry about this, because the Bison
*** output is pre-generated.)
[0mno
[91mconfigure: WARNING:
*** Without Flex you will not be able to build PostgreSQL from Git nor
*** change any of the scanner definition files. You can obtain Flex from
*** a GNU mirror site. (If you are using the official distribution of
*** PostgreSQL then you do not need to worry about this because the Flex
*** output is pre-generated.)
[0mchecking for perl... /usr/bin/perl
configure: using perl 5.32.1
checking for zic... /usr/sbin/zic
checking for a sed that does not truncate output... /usr/bin/sed
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for main in -lm... yes
checking for library containing setproctitle... no
checking for library containing dlopen... no
checking for library containing socket... -lws2_32
checking for library containing shl_load... no
checking for library containing getopt_long... none required
checking for library containing crypt... no
checking for library containing shm_open... no
checking for library containing shm_unlink... no
checking for library containing clock_gettime... none required
checking for library containing fdatasync... no
checking for library containing sched_yield... none required
checking for library containing gethostbyname_r... no
checking for library containing shmget... no
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking atomic.h usability... no
checking atomic.h presence... no
checking for atomic.h... no
checking copyfile.h usability... no
checking copyfile.h presence... no
checking for copyfile.h... no
checking crypt.h usability... no
checking crypt.h presence... no
checking for crypt.h... no
checking fp_class.h usability... no
checking fp_class.h presence... no
checking for fp_class.h... no
checking getopt.h usability... yes
checking getopt.h presence... yes
checking for getopt.h... yes
checking ieeefp.h usability... yes
checking ieeefp.h presence... yes
checking for ieeefp.h... yes
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking langinfo.h usability... no
checking langinfo.h presence... no
checking for langinfo.h... no
checking mbarrier.h usability... no
checking mbarrier.h presence... no
checking for mbarrier.h... no
checking poll.h usability... no
checking poll.h presence... no
checking for poll.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking sys/ipc.h usability... no
checking sys/ipc.h presence... no
checking for sys/ipc.h... no
checking sys/prctl.h usability... no
checking sys/prctl.h presence... no
checking for sys/prctl.h... no
checking sys/procctl.h usability... no
checking sys/procctl.h presence... no
checking for sys/procctl.h... no
checking sys/pstat.h usability... no
checking sys/pstat.h presence... no
checking for sys/pstat.h... no
checking sys/resource.h usability... no
checking sys/resource.h presence... no
checking for sys/resource.h... no
checking sys/select.h usability... no
checking sys/select.h presence... no
checking for sys/select.h... no
checking sys/sem.h usability... no
checking sys/sem.h presence... no
checking for sys/sem.h... no
checking sys/shm.h usability... no
checking sys/shm.h presence... no
checking for sys/shm.h... no
checking sys/sockio.h usability... no
checking sys/sockio.h presence... no
checking for sys/sockio.h... no
checking sys/tas.h usability... no
checking sys/tas.h presence... no
checking for sys/tas.h... no
checking sys/un.h usability... no
checking sys/un.h presence... no
checking for sys/un.h... no
checking termios.h usability... no
checking termios.h presence... no
checking for termios.h... no
checking ucred.h usability... no
checking ucred.h presence... no
checking for ucred.h... no
checking utime.h usability... yes
checking utime.h presence... yes
checking for utime.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking wctype.h usability... yes
checking wctype.h presence... yes
checking for wctype.h... yes
checking for net/if.h... no
checking for sys/ucred.h... no
checking for netinet/tcp.h... no
checking crtdefs.h usability... yes
checking crtdefs.h presence... yes
checking for crtdefs.h... yes
checking whether byte ordering is bigendian... no
checking for inline... inline
checking for printf format archetype... gnu_printf
checking for flexible array members... yes
checking for signed types... yes
checking for __func__... yes
checking for _Static_assert... yes
checking for typeof... typeof
checking for __builtin_types_compatible_p... yes
checking for __builtin_constant_p... yes
checking for __builtin_unreachable... yes
checking for computed goto support... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... no
checking for tzname... yes
checking for union semun... no
checking for struct sockaddr_un... no
checking for struct sockaddr_storage... yes
checking for struct sockaddr_storage.ss_family... yes
checking for struct sockaddr_storage.__ss_family... no
checking for struct sockaddr_storage.ss_len... no
checking for struct sockaddr_storage.__ss_len... no
checking for struct sockaddr.sa_len... no
checking for struct addrinfo... yes
checking for intptr_t... yes
checking for uintptr_t... yes
checking for unsigned long long int... yes
checking for long long int... yes
checking for locale_t... no
checking for C/C++ restrict keyword... __restrict
checking for struct cmsgcred... no
checking for struct option... yes
checking whether assembler supports x86_64 popcntq... yes
checking size of off_t... 4
checking size of bool... 1
checking for int timezone... yes
checking types of arguments for accept()... SOCKET WSAAPI, SOCKET, struct sockaddr *, int *
checking whether gettimeofday takes only one argument... no
checking for wcstombs_l declaration... no
checking for cbrt... yes
checking for clock_gettime... yes
checking for copyfile... no
checking for fdatasync... no
checking for getifaddrs... no
checking for getpeerucred... no
checking for getrlimit... no
checking for mbstowcs_l... no
checking for memmove... yes
checking for poll... no
checking for posix_fallocate... no
checking for ppoll... no
checking for pstat... no
checking for pthread_is_threaded_np... no
checking for readlink... no
checking for setproctitle... no
checking for setproctitle_fast... no
checking for setsid... no
checking for shm_open... no
checking for strchrnul... no
checking for strsignal... no
checking for symlink... no
checking for sync_file_range... no
checking for uselocale... no
checking for utime... yes
checking for utimes... no
checking for wcstombs_l... no
checking for __builtin_bswap16... yes
checking for __builtin_bswap32... yes
checking for __builtin_bswap64... yes
checking for __builtin_clz... yes
checking for __builtin_ctz... yes
checking for __builtin_popcount... yes
checking for fseeko... yes
checking how /usr/bin/x86_64-w64-mingw32-gcc-posix reports undeclared, standard C functions... error
checking for posix_fadvise... no
checking whether posix_fadvise is declared... no
checking whether fdatasync is declared... no
checking whether strlcat is declared... no
checking whether strlcpy is declared... no
checking whether strnlen is declared... yes
checking whether F_FULLFSYNC is declared... no
checking whether RTLD_GLOBAL is declared... no
checking whether RTLD_NOW is declared... no
checking for struct sockaddr_in6... yes
checking for PS_STRINGS... no
checking for isinf... yes
checking for crypt... no
checking for dlopen... no
checking for fls... no
checking for getopt... yes
checking for getrusage... no
checking for inet_aton... no
checking for mkdtemp... no
checking for pread... no
checking for pwrite... no
checking for random... no
checking for rint... yes
checking for srandom... no
checking for strlcat... no
checking for strlcpy... no
checking for strnlen... yes
checking for strtof... yes
configure: On mingw32 we will use our strtof wrapper.
checking for getopt_long... yes
checking for _configthreadlocale... yes
checking for gettimeofday... yes
checking for MINIDUMP_TYPE... yes
checking for syslog... no
checking for opterr... yes
checking for optreset... no
checking for strtoll... yes
checking for strtoull... yes
checking whether strtoll is declared... yes
checking whether strtoull is declared... yes
checking test program... cross-compiling
checking whether long int is 64 bits... no
checking whether long long int is 64 bits... yes
checking for __builtin_mul_overflow... yes
checking size of void *... 8
checking size of size_t... 8
checking size of long... 4
checking whether to build with float4 passed by value... yes
checking whether to build with float8 passed by value... yes
checking alignment of short... 2
checking alignment of int... 4
checking alignment of long... 4
checking alignment of long long int... 8
checking alignment of double... 8
checking for int8... no
checking for uint8... no
checking for int64... no
checking for uint64... no
checking for __int128... yes
checking for __int128 alignment bug... assuming ok
checking alignment of PG_INT128_TYPE... 16
checking for builtin __sync char locking functions... yes
checking for builtin __sync int32 locking functions... yes
checking for builtin __sync int32 atomic operations... yes
checking for builtin __sync int64 atomic operations... yes
checking for builtin __atomic int32 atomic operations... yes
checking for builtin __atomic int64 atomic operations... yes
checking for __get_cpuid... yes
checking for __cpuid... no
checking for _mm_crc32_u8 and _mm_crc32_u32 with CFLAGS=... no
checking for _mm_crc32_u8 and _mm_crc32_u32 with CFLAGS=-msse4.2... yes
checking for __crc32cb, __crc32ch, __crc32cw, and __crc32cd with CFLAGS=... no
checking for __crc32cb, __crc32ch, __crc32cw, and __crc32cd with CFLAGS=-march=armv8-a+crc... no
checking which CRC-32C implementation to use... SSE 4.2 with runtime check
checking which random number source to use... /dev/urandom
checking for xmllint... no
checking for DocBook XML V4.2... no
checking for dbtoepub... no
checking for xsltproc... no
checking for fop... no
[91mconfigure: WARNING: *** skipping thread test on Win32
[0mchecking whether /usr/bin/x86_64-w64-mingw32-gcc-posix supports -Wl,--as-needed... assuming no
configure: using compiler=x86_64-w64-mingw32-gcc-posix (GCC) 10-posix 20210610
configure: using CFLAGS=-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s
configure: using CPPFLAGS=-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND
configure: using LDFLAGS=-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import
configure: creating ./config.status
config.status: creating GNUmakefile
config.status: creating src/Makefile.global
config.status: creating src/include/pg_config.h
config.status: creating src/include/pg_config_ext.h
config.status: creating src/interfaces/ecpg/include/ecpg_config.h
config.status: linking src/backend/port/tas/dummy.s to src/backend/port/tas.s
config.status: linking src/backend/port/win32_sema.c to src/backend/port/pg_sema.c
config.status: linking src/backend/port/win32_shmem.c to src/backend/port/pg_shmem.c
config.status: linking src/include/port/win32.h to src/include/pg_config_os.h
config.status: linking src/makefiles/Makefile.win32 to src/Makefile.port
config.status: executing check_win32_symlinks commands
[91mconfigure: WARNING: unrecognized options: --disable-strong-random
[0mmake -C catalog distprep generated-header-symlinks
make -C utils distprep generated-header-symlinks
prereqdir=`cd 'parser/' >/dev/null && pwd` && \
cd '../../src/include/parser/' && rm -f gram.h && \
ln -s "$prereqdir/gram.h" .
prereqdir=`cd 'storage/lmgr/' >/dev/null && pwd` && \
cd '../../src/include/storage/' && rm -f lwlocknames.h && \
ln -s "$prereqdir/lwlocknames.h" .
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[1]: Nothing to be done for 'distprep'.
prereqdir=`cd './' >/dev/null && pwd` && \
cd '../../../src/include/utils/' && for file in fmgroids.h fmgrprotos.h errcodes.h; do \
rm -f $file && ln -s "$prereqdir/$file" . ; \
done
sed -f ./Gen_dummy_probes.sed probes.d >probes.h
cd '../../../src/include/utils/' && rm -f probes.h && \
ln -s "../../../src/backend/utils/probes.h" .
touch ../../../src/include/utils/header-stamp
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[1]: Nothing to be done for 'distprep'.
prereqdir=`cd './' >/dev/null && pwd` && \
cd '../../../src/include/catalog/' && for file in pg_proc_d.h pg_type_d.h pg_attribute_d.h pg_class_d.h pg_attrdef_d.h pg_constraint_d.h pg_inherits_d.h pg_index_d.h pg_operator_d.h pg_opfamily_d.h pg_opclass_d.h pg_am_d.h pg_amop_d.h pg_amproc_d.h pg_language_d.h pg_largeobject_metadata_d.h pg_largeobject_d.h pg_aggregate_d.h pg_statistic_ext_d.h pg_statistic_ext_data_d.h pg_statistic_d.h pg_rewrite_d.h pg_trigger_d.h pg_event_trigger_d.h pg_description_d.h pg_cast_d.h pg_enum_d.h pg_namespace_d.h pg_conversion_d.h pg_depend_d.h pg_database_d.h pg_db_role_setting_d.h pg_tablespace_d.h pg_pltemplate_d.h pg_authid_d.h pg_auth_members_d.h pg_shdepend_d.h pg_shdescription_d.h pg_ts_config_d.h pg_ts_config_map_d.h pg_ts_dict_d.h pg_ts_parser_d.h pg_ts_template_d.h pg_extension_d.h pg_foreign_data_wrapper_d.h pg_foreign_server_d.h pg_user_mapping_d.h pg_foreign_table_d.h pg_policy_d.h pg_replication_origin_d.h pg_default_acl_d.h pg_init_privs_d.h pg_seclabel_d.h pg_shseclabel_d.h pg_collation_d.h pg_partitioned_table_d.h pg_range_d.h pg_transform_d.h pg_sequence_d.h pg_publication_d.h pg_publication_rel_d.h pg_subscription_d.h pg_subscription_rel_d.h schemapg.h; do \
rm -f $file && ln -s "$prereqdir/$file" . ; \
done
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
touch ../../../src/include/catalog/header-stamp
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make -C ../../src/backend generated-headers
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o base64.o base64.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o config_info.o config_info.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o controldata_utils.o controldata_utils.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -Wno-declaration-after-statement -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o d2s.o d2s.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o exec.o exec.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -Wno-declaration-after-statement -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o f2s.o f2s.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o file_perm.o file_perm.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o ip.o ip.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o keywords.o keywords.c
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
make -C catalog distprep generated-header-symlinks
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o kwlookup.o kwlookup.c
make -C utils distprep generated-header-symlinks
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o link-canary.o link-canary.c
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o md5.o md5.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o pg_lzcompress.o pg_lzcompress.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o pgfnames.o pgfnames.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o psprintf.o psprintf.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o relpath.o relpath.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o rmtree.o rmtree.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o saslprep.o saslprep.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o scram-common.o scram-common.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o string.o string.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o unicode_norm.o unicode_norm.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o username.o username.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o wait_error.o wait_error.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o sha2.o sha2.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o fe_memutils.o fe_memutils.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o file_utils.o file_utils.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o logging.o logging.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c -o restricted_token.o restricted_token.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c base64.c -o base64_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c config_info.c -o config_info_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c controldata_utils.c -o controldata_utils_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -Wno-declaration-after-statement -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c d2s.c -o d2s_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c exec.c -o exec_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -Wno-declaration-after-statement -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c f2s.c -o f2s_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c file_perm.c -o file_perm_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c ip.c -o ip_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c keywords.c -o keywords_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c kwlookup.c -o kwlookup_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c link-canary.c -o link-canary_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c md5.c -o md5_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c pg_lzcompress.c -o pg_lzcompress_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c pgfnames.c -o pgfnames_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c psprintf.c -o psprintf_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c relpath.c -o relpath_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c rmtree.c -o rmtree_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c saslprep.c -o saslprep_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c scram-common.c -o scram-common_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c string.c -o string_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c unicode_norm.c -o unicode_norm_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c username.c -o username_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c wait_error.c -o wait_error_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c sha2.c -o sha2_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c fe_memutils.c -o fe_memutils_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c file_utils.c -o file_utils_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c logging.c -o logging_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c restricted_token.c -o restricted_token_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c base64.c -o base64_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c config_info.c -o config_info_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c controldata_utils.c -o controldata_utils_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -Wno-declaration-after-statement -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c d2s.c -o d2s_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c exec.c -o exec_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -Wno-declaration-after-statement -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c f2s.c -o f2s_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c file_perm.c -o file_perm_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c ip.c -o ip_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c keywords.c -o keywords_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c kwlookup.c -o kwlookup_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c link-canary.c -o link-canary_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c md5.c -o md5_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c pg_lzcompress.c -o pg_lzcompress_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c pgfnames.c -o pgfnames_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c psprintf.c -o psprintf_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c relpath.c -o relpath_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c rmtree.c -o rmtree_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c saslprep.c -o saslprep_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c scram-common.c -o scram-common_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c string.c -o string_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c unicode_norm.c -o unicode_norm_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c username.c -o username_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c wait_error.c -o wait_error_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I. -I../../src/common -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -DVAL_CONFIGURE="\"'--without-readline' '--without-zlib' '--without-openssl' '--disable-strong-random' 'USE_DEV_URANDOM=1' '--prefix=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50' '--bindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--sbindir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libexecdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin' '--libdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '--includedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--oldincludedir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '--datarootdir=/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share' '--build=x86_64-linux-gnu' '--host=x86_64-w64-mingw32' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-w64-mingw32' 'CC=/usr/bin/x86_64-w64-mingw32-gcc-posix' 'CFLAGS=-m64 -O3 -s' 'LDFLAGS=-m64' 'LIBS=' 'CPPFLAGS=-DNDEBUG' 'CXX=/usr/bin/x86_64-w64-mingw32-g++-posix' 'CXXFLAGS=-m64 -O3 -s'\"" -DVAL_CC="\"/usr/bin/x86_64-w64-mingw32-gcc-posix\"" -DVAL_CPPFLAGS="\"-DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL\"" -DVAL_CFLAGS="\"-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s\"" -DVAL_CFLAGS_SL="\"\"" -DVAL_LDFLAGS="\"-m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgcommon -lpgport -lws2_32 -lm -lws2_32\"" -c sha2.c -o sha2_srv.o
rm -f libpgcommon.a
/usr/bin/x86_64-w64-mingw32-ar crs libpgcommon.a base64.o config_info.o controldata_utils.o d2s.o exec.o f2s.o file_perm.o ip.o keywords.o kwlookup.o link-canary.o md5.o pg_lzcompress.o pgfnames.o psprintf.o relpath.o rmtree.o saslprep.o scram-common.o string.o unicode_norm.o username.o wait_error.o sha2.o fe_memutils.o file_utils.o logging.o restricted_token.o
rm -f libpgcommon_shlib.a
/usr/bin/x86_64-w64-mingw32-ar crs libpgcommon_shlib.a base64_shlib.o config_info_shlib.o controldata_utils_shlib.o d2s_shlib.o exec_shlib.o f2s_shlib.o file_perm_shlib.o ip_shlib.o keywords_shlib.o kwlookup_shlib.o link-canary_shlib.o md5_shlib.o pg_lzcompress_shlib.o pgfnames_shlib.o psprintf_shlib.o relpath_shlib.o rmtree_shlib.o saslprep_shlib.o scram-common_shlib.o string_shlib.o unicode_norm_shlib.o username_shlib.o wait_error_shlib.o sha2_shlib.o fe_memutils_shlib.o file_utils_shlib.o logging_shlib.o restricted_token_shlib.o
rm -f libpgcommon_srv.a
/usr/bin/x86_64-w64-mingw32-ar crs libpgcommon_srv.a base64_srv.o config_info_srv.o controldata_utils_srv.o d2s_srv.o exec_srv.o f2s_srv.o file_perm_srv.o ip_srv.o keywords_srv.o kwlookup_srv.o link-canary_srv.o md5_srv.o pg_lzcompress_srv.o pgfnames_srv.o psprintf_srv.o relpath_srv.o rmtree_srv.o saslprep_srv.o scram-common_srv.o string_srv.o unicode_norm_srv.o username_srv.o wait_error_srv.o sha2_srv.o
make -C ../../src/backend generated-headers
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o crypt.o crypt.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o dlopen.o dlopen.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o fls.o fls.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o getrusage.o getrusage.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o inet_aton.o inet_aton.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o mkdtemp.o mkdtemp.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o pread.o pread.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o pwrite.o pwrite.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o random.o random.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o srandom.o srandom.c
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
make -C catalog distprep generated-header-symlinks
make -C utils distprep generated-header-symlinks
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o strlcat.o strlcat.c
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o strlcpy.o strlcpy.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o strtof.o strtof.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o getaddrinfo.o getaddrinfo.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o getopt.o getopt.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o getopt_long.o getopt_long.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o dirmod.o dirmod.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o kill.o kill.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o open.o open.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o system.o system.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o win32env.o win32env.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o win32error.o win32error.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o win32security.o win32security.c
[91mIn function 'init_des',
inlined from 'des_setkey' at crypt.c:634:3:
[0m[91mcrypt.c:910:15: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
910 | perm[k - 1] = i + 1;
| ~~~~~~~~~~~~^~~~~~~
crypt.c: In function 'des_setkey':
[0m[91mcrypt.c:805:23: note: at offset -1 to object 'perm' with size 64 declared here
805 | static unsigned char perm[64],
| ^~~~
[0m/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o win32setlocale.o win32setlocale.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -msse4.2 -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o pg_crc32c_sse42.o pg_crc32c_sse42.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o pg_crc32c_sb8.o pg_crc32c_sb8.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o pg_crc32c_sse42_choose.o pg_crc32c_sse42_choose.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o chklocale.o chklocale.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o erand48.o erand48.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o inet_net_ntop.o inet_net_ntop.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o noblock.o noblock.c
echo "#define PGBINDIR \"/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin\"" >pg_config_paths.h
echo "#define PGSHAREDIR \"/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share/postgresql\"" >>pg_config_paths.h
echo "#define SYSCONFDIR \"/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/etc/postgresql\"" >>pg_config_paths.h
echo "#define INCLUDEDIR \"/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include\"" >>pg_config_paths.h
echo "#define PKGINCLUDEDIR \"/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql\"" >>pg_config_paths.h
echo "#define INCLUDEDIRSERVER \"/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server\"" >>pg_config_paths.h
echo "#define LIBDIR \"/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib\"" >>pg_config_paths.h
echo "#define PKGLIBDIR \"/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/postgresql\"" >>pg_config_paths.h
echo "#define LOCALEDIR \"/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share/locale\"" >>pg_config_paths.h
echo "#define DOCDIR \"/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share/doc//postgresql\"" >>pg_config_paths.h
echo "#define HTMLDIR \"/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share/doc//postgresql\"" >>pg_config_paths.h
echo "#define MANDIR \"/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share/man\"" >>pg_config_paths.h
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o pg_bitutils.o pg_bitutils.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o pgcheckdir.o pgcheckdir.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o pgmkdirp.o pgmkdirp.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o pgsleep.o pgsleep.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o pg_strong_random.o pg_strong_random.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o pgstrcasecmp.o pgstrcasecmp.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o pgstrsignal.o pgstrsignal.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o pqsignal.o pqsignal.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o qsort.o qsort.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o qsort_arg.o qsort_arg.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o quotes.o quotes.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o snprintf.o snprintf.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o sprompt.o sprompt.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o strerror.o strerror.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o tar.o tar.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o thread.o thread.c
[91mpg_strong_random.c:39:19: warning: 'hProvider' defined but not used [-Wunused-variable]
39 | static HCRYPTPROV hProvider = 0;
| ^~~~~~~~~
[0m/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c crypt.c -o crypt_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c dlopen.c -o dlopen_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c fls.c -o fls_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c getrusage.c -o getrusage_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c inet_aton.c -o inet_aton_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c mkdtemp.c -o mkdtemp_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pread.c -o pread_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pwrite.c -o pwrite_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c random.c -o random_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c srandom.c -o srandom_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c strlcat.c -o strlcat_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c strlcpy.c -o strlcpy_shlib.o
[91mIn function 'init_des',
inlined from 'des_setkey' at crypt.c:634:3:
[0m[91mcrypt.c:910:15: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
910 | perm[k - 1] = i + 1;
| ~~~~~~~~~~~~^~~~~~~
crypt.c: In function 'des_setkey':
crypt.c:805:23: note: at offset -1 to object 'perm' with size 64 declared here
805 | static unsigned char perm[64],
| ^~~~
[0m/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c strtof.c -o strtof_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c getaddrinfo.c -o getaddrinfo_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c getopt.c -o getopt_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c getopt_long.c -o getopt_long_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c dirmod.c -o dirmod_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c kill.c -o kill_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c open.c -o open_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c system.c -o system_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c win32env.c -o win32env_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c win32error.c -o win32error_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c win32security.c -o win32security_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c win32setlocale.c -o win32setlocale_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -msse4.2 -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pg_crc32c_sse42.c -o pg_crc32c_sse42_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pg_crc32c_sb8.c -o pg_crc32c_sb8_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pg_crc32c_sse42_choose.c -o pg_crc32c_sse42_choose_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c chklocale.c -o chklocale_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c erand48.c -o erand48_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c inet_net_ntop.c -o inet_net_ntop_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c noblock.c -o noblock_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c -o path.o path.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pg_bitutils.c -o pg_bitutils_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pgcheckdir.c -o pgcheckdir_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pgmkdirp.c -o pgmkdirp_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pgsleep.c -o pgsleep_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pg_strong_random.c -o pg_strong_random_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pgstrcasecmp.c -o pgstrcasecmp_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pgstrsignal.c -o pgstrsignal_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pqsignal.c -o pqsignal_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c qsort.c -o qsort_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c qsort_arg.c -o qsort_arg_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c quotes.c -o quotes_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c snprintf.c -o snprintf_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c sprompt.c -o sprompt_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c strerror.c -o strerror_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c tar.c -o tar_shlib.o
[91mpg_strong_random.c:39:19: warning: 'hProvider' defined but not used [-Wunused-variable]
39 | static HCRYPTPROV hProvider = 0;
| ^~~~~~~~~
[0m/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c thread.c -o thread_shlib.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c crypt.c -o crypt_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c dlopen.c -o dlopen_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c fls.c -o fls_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c getrusage.c -o getrusage_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c inet_aton.c -o inet_aton_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c mkdtemp.c -o mkdtemp_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pread.c -o pread_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pwrite.c -o pwrite_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c random.c -o random_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c srandom.c -o srandom_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c strlcat.c -o strlcat_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c strlcpy.c -o strlcpy_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c strtof.c -o strtof_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c getaddrinfo.c -o getaddrinfo_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c getopt.c -o getopt_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c getopt_long.c -o getopt_long_srv.o
[91mIn function 'init_des',
inlined from 'des_setkey' at crypt.c:634:3:
crypt.c:910:15: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
910 | perm[k - 1] = i + 1;
| ~~~~~~~~~~~~^~~~~~~
crypt.c: In function 'des_setkey':
crypt.c:805:23: note: at offset -1 to object 'perm' with size 64 declared here
805 | static unsigned char perm[64],
| ^~~~
[0m/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c dirmod.c -o dirmod_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c kill.c -o kill_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c open.c -o open_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c system.c -o system_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c win32env.c -o win32env_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c win32error.c -o win32error_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c win32security.c -o win32security_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c win32setlocale.c -o win32setlocale_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -msse4.2 -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pg_crc32c_sse42.c -o pg_crc32c_sse42_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pg_crc32c_sb8.c -o pg_crc32c_sb8_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pg_crc32c_sse42_choose.c -o pg_crc32c_sse42_choose_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c chklocale.c -o chklocale_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c erand48.c -o erand48_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c inet_net_ntop.c -o inet_net_ntop_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c noblock.c -o noblock_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c path.c -o path_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pg_bitutils.c -o pg_bitutils_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pgcheckdir.c -o pgcheckdir_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pgmkdirp.c -o pgmkdirp_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pgsleep.c -o pgsleep_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pg_strong_random.c -o pg_strong_random_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pgstrcasecmp.c -o pgstrcasecmp_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pgstrsignal.c -o pgstrsignal_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c pqsignal.c -o pqsignal_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c qsort.c -o qsort_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c qsort_arg.c -o qsort_arg_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c quotes.c -o quotes_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c snprintf.c -o snprintf_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c sprompt.c -o sprompt_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c strerror.c -o strerror_srv.o
[91mpg_strong_random.c:39:19: warning: 'hProvider' defined but not used [-Wunused-variable]
39 | static HCRYPTPROV hProvider = 0;
| ^~~~~~~~~
[0m/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c tar.c -o tar_srv.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c thread.c -o thread_srv.o
rm -f libpgport.a
/usr/bin/x86_64-w64-mingw32-ar crs libpgport.a crypt.o dlopen.o fls.o getrusage.o inet_aton.o mkdtemp.o pread.o pwrite.o random.o srandom.o strlcat.o strlcpy.o strtof.o getaddrinfo.o getopt.o getopt_long.o dirmod.o kill.o open.o system.o win32env.o win32error.o win32security.o win32setlocale.o pg_crc32c_sse42.o pg_crc32c_sb8.o pg_crc32c_sse42_choose.o chklocale.o erand48.o inet_net_ntop.o noblock.o path.o pg_bitutils.o pgcheckdir.o pgmkdirp.o pgsleep.o pg_strong_random.o pgstrcasecmp.o pgstrsignal.o pqsignal.o qsort.o qsort_arg.o quotes.o snprintf.o sprompt.o strerror.o tar.o thread.o
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../src/port -DFRONTEND -I../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -DBUILDING_DLL -c path.c -o path_shlib.o
rm -f libpgport_srv.a
/usr/bin/x86_64-w64-mingw32-ar crs libpgport_srv.a crypt_srv.o dlopen_srv.o fls_srv.o getrusage_srv.o inet_aton_srv.o mkdtemp_srv.o pread_srv.o pwrite_srv.o random_srv.o srandom_srv.o strlcat_srv.o strlcpy_srv.o strtof_srv.o getaddrinfo_srv.o getopt_srv.o getopt_long_srv.o dirmod_srv.o kill_srv.o open_srv.o system_srv.o win32env_srv.o win32error_srv.o win32security_srv.o win32setlocale_srv.o pg_crc32c_sse42_srv.o pg_crc32c_sb8_srv.o pg_crc32c_sse42_choose_srv.o chklocale_srv.o erand48_srv.o inet_net_ntop_srv.o noblock_srv.o path_srv.o pg_bitutils_srv.o pgcheckdir_srv.o pgmkdirp_srv.o pgsleep_srv.o pg_strong_random_srv.o pgstrcasecmp_srv.o pgstrsignal_srv.o pqsignal_srv.o qsort_srv.o qsort_arg_srv.o quotes_srv.o snprintf_srv.o sprompt_srv.o strerror_srv.o tar_srv.o thread_srv.o
rm -f libpgport_shlib.a
/usr/bin/x86_64-w64-mingw32-ar crs libpgport_shlib.a crypt_shlib.o dlopen_shlib.o fls_shlib.o getrusage_shlib.o inet_aton_shlib.o mkdtemp_shlib.o pread_shlib.o pwrite_shlib.o random_shlib.o srandom_shlib.o strlcat_shlib.o strlcpy_shlib.o strtof_shlib.o getaddrinfo_shlib.o getopt_shlib.o getopt_long_shlib.o dirmod_shlib.o kill_shlib.o open_shlib.o system_shlib.o win32env_shlib.o win32error_shlib.o win32security_shlib.o win32setlocale_shlib.o pg_crc32c_sse42_shlib.o pg_crc32c_sb8_shlib.o pg_crc32c_sse42_choose_shlib.o chklocale_shlib.o erand48_shlib.o inet_net_ntop_shlib.o noblock_shlib.o path_shlib.o pg_bitutils_shlib.o pgcheckdir_shlib.o pgmkdirp_shlib.o pgsleep_shlib.o pg_strong_random_shlib.o pgstrcasecmp_shlib.o pgstrsignal_shlib.o pqsignal_shlib.o qsort_shlib.o qsort_arg_shlib.o quotes_shlib.o snprintf_shlib.o sprompt_shlib.o strerror_shlib.o tar_shlib.o thread_shlib.o
make -C ../../src/backend generated-headers
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
make -C catalog distprep generated-header-symlinks
make -C utils distprep generated-header-symlinks
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
make -C ../../../src/backend generated-headers
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5 -c -o fe-auth.o fe-auth.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5 -c -o fe-auth-scram.o fe-auth-scram.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5 -c -o fe-connect.o fe-connect.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5 -c -o fe-exec.o fe-exec.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5 -c -o fe-misc.o fe-misc.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5 -c -o fe-print.o fe-print.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5 -c -o fe-lobj.o fe-lobj.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5 -c -o fe-protocol2.o fe-protocol2.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5 -c -o fe-protocol3.o fe-protocol3.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5 -c -o pqexpbuffer.o pqexpbuffer.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5 -c -o fe-secure.o fe-secure.c
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
make -C catalog distprep generated-header-symlinks
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make -C utils distprep generated-header-symlinks
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5 -c -o legacy-pqsignal.o legacy-pqsignal.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5 -c -o libpq-events.o libpq-events.c
rm -f encnames.c && ln -s ../../../src/backend/utils/mb/encnames.c .
rm -f wchar.c && ln -s ../../../src/backend/utils/mb/wchar.c .
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5 -c -o win32.o win32.c
sed -e 's/\(VERSION.*\),0 *$/\1,'`date '+%y%j' | sed 's/^0*//'`'/' libpq.rc.in >libpq.rc
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5 -c -o pthread-win32.o pthread-win32.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5 -c -o encnames.o encnames.c
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5 -c -o wchar.o wchar.c
x86_64-w64-mingw32-windres -i libpq.rc -o libpqrc.o
make -C ../../../src/port all
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/port'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/port'
make -C ../../../src/common all
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/common'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/common'
echo 'Name: libpq' >libpq.pc
echo 'Description: PostgreSQL libpq library' >>libpq.pc
echo 'Url: http://www.postgresql.org/' >>libpq.pc
echo 'Version: 12.2' >>libpq.pc
echo 'Requires: ' >>libpq.pc
echo 'Requires.private: ' >>libpq.pc
echo 'Cflags: -I/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' >>libpq.pc
echo 'Libs: -L/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib -lpq' >>libpq.pc
echo 'Libs.private: -lm -lshell32 -lws2_32 -lsecur32' >>libpq.pc
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -shared -static-libgcc -o libpq.dll fe-auth.o fe-auth-scram.o fe-connect.o fe-exec.o fe-misc.o fe-print.o fe-lobj.o fe-protocol2.o fe-protocol3.o pqexpbuffer.o fe-secure.o legacy-pqsignal.o libpq-events.o encnames.o wchar.o win32.o libpqrc.o pthread-win32.o libpqdll.def -L../../../src/port -L../../../src/common -lpgcommon_shlib -lpgport_shlib -m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import -lm -lshell32 -lws2_32 -lsecur32 -lpgcommon -lpgport -lws2_32 -lm -lws2_32 -Wl,--out-implib=libpq.a
touch libpq.a
make -C ../../../src/backend generated-headers
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s -I../../../src/include -DNDEBUG -I./src/include/port/win32 -DEXEC_BACKEND "-I../../../src/include/port/win32" -DWIN32_STACK_RLIMIT=4194304 -c -o pg_config.o pg_config.c
sed -e 's;FILEDESC;"pg_config - report configuration information";' -e 's;VFT_APP;VFT_APP;' -e 's;_ICO_;IDI_ICON ICON \"..\/..\/..\/src\/port\/win32.ico\";' -e 's;\(VERSION.*\),0 *$;\1,'`date '+%y%j' | sed 's/^0*//'`';' ../../../src/port/win32ver.rc >win32ver.rc
x86_64-w64-mingw32-windres -i win32ver.rc -o win32ver.o --include-dir=../../../src/include --include-dir=.
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
make -C catalog distprep generated-header-symlinks
make -C utils distprep generated-header-symlinks
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
make -C ../../../src/port all
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/port'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/port'
make -C ../../../src/common all
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/common'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/common'
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s pg_config.o win32ver.o -L../../../src/port -L../../../src/common -m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import -lpgcommon -lpgport -lws2_32 -lm -lws2_32 -o pg_config.exe
libpq/12.2: Package 'c6817f477abe7e9a917b102f37dc1fd0c2d95f50' built
libpq/12.2: Build folder /root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50
libpq/12.2: Generated conaninfo.txt
libpq/12.2: Generated conanbuildinfo.txt
libpq/12.2: Generating the package
libpq/12.2: Package folder /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50
libpq/12.2: Calling package()
make -C ../../src/backend generated-headers
/usr/bin/mkdir -p '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib'
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
make -C catalog distprep generated-header-symlinks
make -C utils distprep generated-header-symlinks
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
/usr/bin/install -c -m 644 libpgcommon.a '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgcommon.a'
/usr/bin/install -c -m 644 libpgcommon_shlib.a '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgcommon_shlib.a'
make -C ../../src/backend generated-headers
/usr/bin/mkdir -p '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/libpq' '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/internal/libpq'
/usr/bin/mkdir -p '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/access '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/bootstrap '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/catalog '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/commands '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/common '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/datatype '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/executor '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/fe_utils '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/foreign '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/jit '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/lib '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/libpq '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/mb '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/nodes '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/optimizer '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/parser '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/partitioning '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/postmaster '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/regex '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/replication '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/rewrite '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/statistics '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/storage '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/tcop '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/snowball '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/snowball/libstemmer '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/tsearch '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/tsearch/dicts '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/utils '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/port '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/port/atomics '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/port/win32 '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/port/win32_msvc '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/port/win32_msvc/sys '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/port/win32/arpa '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/port/win32/netinet '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/port/win32/sys '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/portability
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
make -C catalog distprep generated-header-symlinks
make -C utils distprep generated-header-symlinks
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
/usr/bin/install -c -m 644 ./postgres_ext.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include'
/usr/bin/install -c -m 644 ./libpq/libpq-fs.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/libpq'
/usr/bin/install -c -m 644 pg_config.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include'
/usr/bin/install -c -m 644 pg_config_ext.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include'
/usr/bin/install -c -m 644 pg_config_os.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include'
/usr/bin/install -c -m 644 ./pg_config_manual.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include'
/usr/bin/install -c -m 644 ./c.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/internal'
/usr/bin/install -c -m 644 ./port.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/internal'
/usr/bin/install -c -m 644 ./postgres_fe.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/internal'
/usr/bin/install -c -m 644 ./libpq/pqcomm.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/internal/libpq'
/usr/bin/install -c -m 644 pg_config.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'
/usr/bin/install -c -m 644 pg_config_ext.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'
/usr/bin/install -c -m 644 pg_config_os.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'
/usr/bin/install -c -m 644 utils/errcodes.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server/utils'
/usr/bin/install -c -m 644 utils/fmgroids.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server/utils'
/usr/bin/install -c -m 644 utils/fmgrprotos.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server/utils'
cp ./*.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/
for dir in access bootstrap catalog commands common datatype executor fe_utils foreign jit lib libpq mb nodes optimizer parser partitioning postmaster regex replication rewrite statistics storage tcop snowball snowball/libstemmer tsearch tsearch/dicts utils port port/atomics port/win32 port/win32_msvc port/win32_msvc/sys port/win32/arpa port/win32/netinet port/win32/sys portability; do \
cp ./$dir/*.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/$dir/ || exit; \
done
cd '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server' && chmod 644 *.h
for dir in access bootstrap catalog commands common datatype executor fe_utils foreign jit lib libpq mb nodes optimizer parser partitioning postmaster regex replication rewrite statistics storage tcop snowball snowball/libstemmer tsearch tsearch/dicts utils port port/atomics port/win32 port/win32_msvc port/win32_msvc/sys port/win32/arpa port/win32/netinet port/win32/sys portability; do \
cd '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/server'/$dir || exit; \
chmod 644 *.h || exit; \
done
make -C ../../../src/backend generated-headers
/usr/bin/mkdir -p '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib' '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/pkgconfig' '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin'
/usr/bin/mkdir -p '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include' '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/internal' '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share/postgresql'
/usr/bin/install -c -m 755 libpq.dll '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpq.dll'
/usr/bin/install -c -m 644 libpq.a '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpq.a'
/usr/bin/install -c -m 644 libpq.pc '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/pkgconfig/libpq.pc'
/usr/bin/install -c -m 755 libpq.dll '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin/libpq.dll'
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
make -C catalog distprep generated-header-symlinks
make -C utils distprep generated-header-symlinks
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
make -C ../../../src/port all
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/port'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/port'
make -C ../../../src/common all
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/common'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/common'
/usr/bin/install -c -m 644 ./libpq-fe.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include'
/usr/bin/install -c -m 644 ./libpq-events.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include'
/usr/bin/install -c -m 644 ./libpq-int.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/internal'
/usr/bin/install -c -m 644 ./pqexpbuffer.h '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/include/postgresql/internal'
/usr/bin/install -c -m 644 ./pg_service.conf.sample '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/share/postgresql/pg_service.conf.sample'
make -C ../../src/backend generated-headers
/usr/bin/mkdir -p '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib'
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
make -C catalog distprep generated-header-symlinks
make -C utils distprep generated-header-symlinks
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
/usr/bin/install -c -m 644 libpgport.a '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgport.a'
/usr/bin/install -c -m 644 libpgport_shlib.a '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgport_shlib.a'
make -C ../../../src/backend generated-headers
/usr/bin/mkdir -p '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin'
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
make -C catalog distprep generated-header-symlinks
make -C utils distprep generated-header-symlinks
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/utils'
make[2]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend/catalog'
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/backend'
make -C ../../../src/port all
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/port'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/port'
make -C ../../../src/common all
make[1]: Entering directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/common'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/root/.conan/data/libpq/12.2/_/_/build/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/source_subfolder/src/common'
/usr/bin/x86_64-w64-mingw32-gcc-posix -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -m64 -O3 -s pg_config.o win32ver.o -L../../../src/port -L../../../src/common -m64 -Wl,--allow-multiple-definition -Wl,--disable-auto-import -lpgcommon -lpgport -lws2_32 -lm -lws2_32 -o pg_config.exe
/usr/bin/install -c -m 755 pg_config.exe '/root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/bin/pg_config.exe'
libpq/12.2 package(): Packaged 1 file: COPYRIGHT
libpq/12.2 package(): Packaged 5 '.a' files
libpq/12.2 package(): Packaged 158 '.h' files
libpq/12.2 package(): Packaged 1 '.exe' file: pg_config.exe
libpq/12.2: Package 'c6817f477abe7e9a917b102f37dc1fd0c2d95f50' created
libpq/12.2: Created package revision b3219835d1807b864551e0936f477c3c
conanfile.txt: Generator txt created conanbuildinfo.txt
conanfile.txt: Generator cmake_find_package created FindPostgreSQL.cmake
conanfile.txt: Aggregating env generators
conanfile.txt: Generated conaninfo.txt
conanfile.txt: Generated graphinfo
[91mERROR: Not able to automatically detect '/usr/bin/x86_64-w64-mingw32-g++-posix' version
WARN: Remotes registry file missing, creating default one in /root/.conan/remotes.json
[0m-- Conan: Using autogenerated FindPostgreSQL.cmake
-- Found PostgreSQL: 12.2 (found version "12.2")
-- Library pq found /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpq.a
-- Found: /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpq.a
-- Library pgcommon found /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgcommon.a
-- Found: /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgcommon.a
-- Library pgcommon_shlib found /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgcommon_shlib.a
-- Found: /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgcommon_shlib.a
-- Library pgport found /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgport.a
-- Found: /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgport.a
-- Library pgport_shlib found /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgport_shlib.a
-- Found: /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgport_shlib.a
-- Library pgport found /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgport.a
-- Found: /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgport.a
-- Library pgport_shlib found /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgport_shlib.a
-- Found: /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgport_shlib.a
-- Library pgcommon found /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgcommon.a
-- Found: /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgcommon.a
-- Library pgcommon_shlib found /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgcommon_shlib.a
-- Found: /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpgcommon_shlib.a
-- Library pq found /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpq.a
-- Found: /root/.conan/data/libpq/12.2/_/_/package/c6817f477abe7e9a917b102f37dc1fd0c2d95f50/lib/libpq.a
-- Looking for poll
-- Looking for poll - not found
-- Looking for PQencryptPasswordConn
-- Looking for PQencryptPasswordConn - not found
-- Looking for PQenterPipelineMode
-- Looking for PQenterPipelineMode - not found
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Generating config.h
-- Generating config.h - done
-- Configuring done
-- Generating done
-- Build files have been written to: /test/build
Removing intermediate container 3a9b739b210f
---> 3b7a92b3d0c0
Step 16/16 : RUN cmake --build build/
---> Running in bcabb632738b
Scanning dependencies of target pqxx
[ 0%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/array.cxx.obj
[ 1%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/binarystring.cxx.obj
[ 2%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/blob.cxx.obj
[ 3%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/connection.cxx.obj
[ 4%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/cursor.cxx.obj
[ 5%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/encodings.cxx.obj
[ 6%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/errorhandler.cxx.obj
[ 6%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/except.cxx.obj
[ 7%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/field.cxx.obj
[ 8%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/largeobject.cxx.obj
[ 9%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/notification.cxx.obj
[ 10%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/params.cxx.obj
[ 11%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/pipeline.cxx.obj
[ 12%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/result.cxx.obj
[ 12%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/robusttransaction.cxx.obj
[ 13%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/row.cxx.obj
[ 14%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/sql_cursor.cxx.obj
[ 15%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/strconv.cxx.obj
[ 16%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/stream_from.cxx.obj
[ 17%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/stream_to.cxx.obj
[ 18%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/subtransaction.cxx.obj
[ 18%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/time.cxx.obj
[ 19%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/transaction.cxx.obj
[ 20%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/transaction_base.cxx.obj
[ 21%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/util.cxx.obj
[ 22%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/version.cxx.obj
[ 23%] Building CXX object libs/libpqxx/src/CMakeFiles/pqxx.dir/wait.cxx.obj
[91m/test/libs/libpqxx/src/wait.cxx: In function 'void pqxx::internal::wait_fd(int, bool, bool, unsigned int, unsigned int)':
/test/libs/libpqxx/src/wait.cxx:118:17: warning: narrowing conversion of 'seconds' from 'unsigned int' to 'long int' [-Wnarrowing]
118 | timeval tv = {seconds, microseconds};
| ^~~~~~~
/test/libs/libpqxx/src/wait.cxx:118:26: warning: narrowing conversion of 'microseconds' from 'unsigned int' to 'long int' [-Wnarrowing]
118 | timeval tv = {seconds, microseconds};
| ^~~~~~~~~~~~
[0m[ 24%] Linking CXX static library libpqxx.a
[91mgmake[2]: stat: libs/libpqxx/src/libpqxx.a: Too many levels of symbolic links
[0m[ 24%] Built target pqxx
Scanning dependencies of target test
[ 25%] Building CXX object CMakeFiles/test.dir/main.cpp.obj
[91mgmake[2]: stat: libs/libpqxx/src/libpqxx.a: Too many levels of symbolic links
gmake[2]: *** No rule to make target 'libs/libpqxx/src/libpqxx.a', needed by 'test.exe'. Stop.
[0m[91mgmake[1]: *** [CMakeFiles/Makefile2:175: CMakeFiles/test.dir/all] Error 2
[0m[91mgmake: *** [Makefile:171: all] Error 2
[0m
[env]
CONAN_CMAKE_FIND_ROOT_PATH=/usr/x86_64-w64-mingw32 # Optional, for CMake to find things in that folder
CONAN_CMAKE_SYSROOT=/usr/x86_64-w64-mingw32 # Optional, if we want to define sysroot
CHOST=$target_host
AR=/usr/bin/x86_64-w64-mingw32-ar
AS=/usr/bin/x86_64-w64-mingw32-as
RANLIB=/usr/bin/x86_64-w64-mingw32-ranlib
CC=/usr/bin/x86_64-w64-mingw32-gcc-posix
CXX=/usr/bin/x86_64-w64-mingw32-g++-posix
STRIP=/usr/bin/x86_64-w64-mingw32-strip
RC=/usr/bin/x86_64-w64-mingw32-windres
WIN32=1
[settings]
# We are cross-building to Windows
os=Windows
arch=x86_64
compiler=gcc
# Adjust to the gcc version of your MinGW package
compiler.version=10
compiler.libcxx=libstdc++11
build_type=Release
#include <pqxx/pqxx>
int main() {
pqxx::connection connection{""};
}
set(CMAKE_SYSTEM_NAME Windows)
set(TOOLCHAIN_PREFIX x86_64-w64-mingw32)
# cross compilers to use for C, C++ and Fortran
set(CMAKE_C_COMPILER ${TOOLCHAIN_PREFIX}-gcc-posix)
set(CMAKE_CXX_COMPILER ${TOOLCHAIN_PREFIX}-g++-posix)
set(CMAKE_Fortran_COMPILER ${TOOLCHAIN_PREFIX}-gfortran)
set(CMAKE_RC_COMPILER ${TOOLCHAIN_PREFIX}-windres)
# target environment on the build host system
set(CMAKE_FIND_ROOT_PATH /usr/${TOOLCHAIN_PREFIX})
# modify default behavior of FIND_XXX() commands
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment