public inbox for [email protected]  
help / color / mirror / Atom feed
[PATCH v2 1/5] pg_rewind: Move syncTargetDirectory() to file_ops.c
6+ messages / 4 participants
[nested] [flat]

* [PATCH v2 1/5] pg_rewind: Move syncTargetDirectory() to file_ops.c
@ 2020-08-19 12:34  Heikki Linnakangas <[email protected]>
  0 siblings, 0 replies; 6+ messages in thread

From: Heikki Linnakangas @ 2020-08-19 12:34 UTC (permalink / raw)

For consistency. All the other low-level functions that operate on the
target directory are in file_ops.c.
---
 src/bin/pg_rewind/file_ops.c  | 19 +++++++++++++++++++
 src/bin/pg_rewind/file_ops.h  |  1 +
 src/bin/pg_rewind/pg_rewind.c | 22 +---------------------
 src/bin/pg_rewind/pg_rewind.h |  1 +
 4 files changed, 22 insertions(+), 21 deletions(-)

diff --git a/src/bin/pg_rewind/file_ops.c b/src/bin/pg_rewind/file_ops.c
index b3bf091c546..55439db20ba 100644
--- a/src/bin/pg_rewind/file_ops.c
+++ b/src/bin/pg_rewind/file_ops.c
@@ -19,6 +19,7 @@
 #include <unistd.h>
 
 #include "common/file_perm.h"
+#include "common/file_utils.h"
 #include "file_ops.h"
 #include "filemap.h"
 #include "pg_rewind.h"
@@ -266,6 +267,24 @@ remove_target_symlink(const char *path)
 				 dstpath);
 }
 
+/*
+ * Sync target data directory to ensure that modifications are safely on disk.
+ *
+ * We do this once, for the whole data directory, for performance reasons.  At
+ * the end of pg_rewind's run, the kernel is likely to already have flushed
+ * most dirty buffers to disk.  Additionally fsync_pgdata uses a two-pass
+ * approach (only initiating writeback in the first pass), which often reduces
+ * the overall amount of IO noticeably.
+ */
+void
+sync_target_dir(void)
+{
+	if (!do_sync || dry_run)
+		return;
+
+	fsync_pgdata(datadir_target, PG_VERSION_NUM);
+}
+
 
 /*
  * Read a file into memory. The file to be read is <datadir>/<path>.
diff --git a/src/bin/pg_rewind/file_ops.h b/src/bin/pg_rewind/file_ops.h
index 025f24141c9..d8466385cf5 100644
--- a/src/bin/pg_rewind/file_ops.h
+++ b/src/bin/pg_rewind/file_ops.h
@@ -19,6 +19,7 @@ extern void remove_target_file(const char *path, bool missing_ok);
 extern void truncate_target_file(const char *path, off_t newsize);
 extern void create_target(file_entry_t *t);
 extern void remove_target(file_entry_t *t);
+extern void sync_target_dir(void);
 
 extern char *slurpFile(const char *datadir, const char *path, size_t *filesize);
 
diff --git a/src/bin/pg_rewind/pg_rewind.c b/src/bin/pg_rewind/pg_rewind.c
index 23fc749e445..c9b9e480c0f 100644
--- a/src/bin/pg_rewind/pg_rewind.c
+++ b/src/bin/pg_rewind/pg_rewind.c
@@ -20,7 +20,6 @@
 #include "catalog/pg_control.h"
 #include "common/controldata_utils.h"
 #include "common/file_perm.h"
-#include "common/file_utils.h"
 #include "common/restricted_token.h"
 #include "common/string.h"
 #include "fe_utils/recovery_gen.h"
@@ -38,7 +37,6 @@ static void createBackupLabel(XLogRecPtr startpoint, TimeLineID starttli,
 
 static void digestControlFile(ControlFileData *ControlFile, char *source,
 							  size_t size);
-static void syncTargetDirectory(void);
 static void getRestoreCommand(const char *argv0);
 static void sanityChecks(void);
 static void findCommonAncestorTimeline(XLogRecPtr *recptr, int *tliIndex);
@@ -455,7 +453,7 @@ main(int argc, char **argv)
 
 	if (showprogress)
 		pg_log_info("syncing target data directory");
-	syncTargetDirectory();
+	sync_target_dir();
 
 	if (writerecoveryconf && !dry_run)
 		WriteRecoveryConfig(conn, datadir_target,
@@ -803,24 +801,6 @@ digestControlFile(ControlFileData *ControlFile, char *src, size_t size)
 	checkControlFile(ControlFile);
 }
 
-/*
- * Sync target data directory to ensure that modifications are safely on disk.
- *
- * We do this once, for the whole data directory, for performance reasons.  At
- * the end of pg_rewind's run, the kernel is likely to already have flushed
- * most dirty buffers to disk.  Additionally fsync_pgdata uses a two-pass
- * approach (only initiating writeback in the first pass), which often reduces
- * the overall amount of IO noticeably.
- */
-static void
-syncTargetDirectory(void)
-{
-	if (!do_sync || dry_run)
-		return;
-
-	fsync_pgdata(datadir_target, PG_VERSION_NUM);
-}
-
 /*
  * Get value of GUC parameter restore_command from the target cluster.
  *
diff --git a/src/bin/pg_rewind/pg_rewind.h b/src/bin/pg_rewind/pg_rewind.h
index 8a9319ed675..67f90c2a38c 100644
--- a/src/bin/pg_rewind/pg_rewind.h
+++ b/src/bin/pg_rewind/pg_rewind.h
@@ -24,6 +24,7 @@ extern char *datadir_source;
 extern char *connstr_source;
 extern bool showprogress;
 extern bool dry_run;
+extern bool do_sync;
 extern int	WalSegSz;
 
 /* Target history */
-- 
2.20.1


--------------BF34D0120055DC3839060F92
Content-Type: text/x-patch; charset=UTF-8;
 name="v2-0002-Refactor-pg_rewind-for-more-clear-decision-making.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
 filename*0="v2-0002-Refactor-pg_rewind-for-more-clear-decision-making.pa";
 filename*1="tch"



^ permalink  raw  reply  [nested|flat] 6+ messages in thread

* Re: FW: Building Postgres 17.0 with meson
@ 2024-11-06 21:21  Robert Haas <[email protected]>
  0 siblings, 1 reply; 6+ messages in thread

From: Robert Haas @ 2024-11-06 21:21 UTC (permalink / raw)
  To: Mark Hill <[email protected]>; +Cc: [email protected] <[email protected]>

On Wed, Nov 6, 2024 at 2:59 PM Mark Hill <[email protected]> wrote:
> Srinath is in India I believe and not available currently.   Does anybody have any idea why meson
>
> is not finding the paths I’m specifying with the -Dextra_lib_dirs and  -Dextra_include_dirs?  See below.

I am not an expert on this topic, but do use these options on macOS
and they do work for me. A typical 'meson setup' invocation for me is:

meson setup $HOME/pgsql $HOME/pgsql-meson -Dcassert=true -Ddebug=true
-Dextra_include_dirs=/opt/local/include
-Dextra_lib_dirs=/opt/local/lib -Dprefix=$HOME/install/dev

In your example, you set
extra_lib_dirs=%openssl_directory%,%zlib_directory%,%icu4c_directory%.
Those aren't actually pathnames, so something (your shell, for
instance) would have to be substituting the actual correct pathnames.
Maybe that isn't happening, or maybe the pathnames that are being
substituted are not the right ones, or maybe they don't contain the
files that meson thinks they ought to contain.

One thing that you could do is have a look at the meson log file. On
my machine, that shows up inside the directory where I run 'meson
setup' at meson-logs/meson-logs.txt. I am not sure if it's different
on Windows. If you look in that file for strings like icu or openssl
or zlib, you may be able to understand what is going wrong.

As far as "Srinath is in India I believe and not available currently,"
while that is probably true, I'm not sure that's really the issue.
Your original email didn't give the exact command you ran, the exact
output you got, or any error messages or log files. Your follow-up
email didn't include any of that either, except material quoted from
another email that you apparently sent off-list, and even that wasn't
nearly as detailed as many posts that you will see here. Also, see
also the "Email etiquette mechanics" section of
https://wiki.postgresql.org/wiki/Mailing_Lists which suggests keeping
replies on-list and not top-posting.

-- 
Robert Haas
EDB: http://www.enterprisedb.com






^ permalink  raw  reply  [nested|flat] 6+ messages in thread

* RE: FW: Building Postgres 17.0 with meson
@ 2024-11-13 15:17  Mark Hill <[email protected]>
  parent: Robert Haas <[email protected]>
  0 siblings, 1 reply; 6+ messages in thread

From: Mark Hill @ 2024-11-13 15:17 UTC (permalink / raw)
  To: Robert Haas <[email protected]>; +Cc: [email protected] <[email protected]>

EXTERNAL

On Wed, Nov 6, 2024 at 4:21 PM Robert Hass <[email protected]> wrote:
> I am not an expert on this topic, but do use these options on macOS and they do work for me. A typical 'meson setup' invocation for me is:

> meson setup $HOME/pgsql $HOME/pgsql-meson -Dcassert=true -Ddebug=true -Dextra_include_dirs=/opt/local/include
> -Dextra_lib_dirs=/opt/local/lib -Dprefix=$HOME/install/dev

Including more information this time hoping it will help in debugging the problem.  I'm only building with openssl at the moment to keep things simple.
I've included the output of the meson setup command and also attached the log file that's generated.

I have built and installed OpenSSL 3.1.6 in the following location:
D:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6

I'm setting the following env variables:
set openssl_include_dir=D:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include\openssl
set openssl_lib_dir=D:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\lib
set prefix=D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6

meson setup command and output: 
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0>meson setup build --prefix="%prefix%" --buildtype=release -Dssl=openssl -Dextra_lib_dirs=%openssl_lib_dir% -Dextra_include_dirs=%openssl_include_dir% -Dnls=disabled -Dplperl=disabled -Dplpython=disabled -Dpltcl=disabled -Dllvm=disabled -Dlz4=disabled -Dzstd=disabled -Dgssapi=disabled -Dldap=disabled -Dpam=disabled -Dbsd_auth=disabled -Dsystemd=disabled -Dbonjour=disabled -Duuid=none -Dlibxml=disabled -Dlibxslt=disabled -Dselinux=disabled -Dicu=disabled -Dzlib=disabled
The Meson build system
Version: 1.6.0
Source dir: D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0
Build dir: D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build
Build type: native build
Project name: postgresql
Project version: 17.0
C compiler for the host machine: cl (msvc 19.29.30154 "Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30154 for x64")
C linker for the host machine: link link 14.29.30154.0
Host machine cpu family: x86_64
Host machine cpu: x86_64
Run-time dependency threads found: YES
Library ws2_32 found: YES
Library secur32 found: YES
Program perl found: YES (C:\Strawberry\perl\bin\perl.EXE)
Program python3 found: YES (C:\Program Files\Python38\python3.EXE)
Program flex found: YES 2.5.35 2.5.35 (C:\GnuWin32\bin\flex.EXE)
Program bison found: YES 2.4.1 2.4.1 (C:\GnuWin32\bin\bison.EXE)
Program sed found: YES (C:\GnuWin32\bin\sed.EXE)
Program prove found: YES (C:\Strawberry\perl\bin\prove.BAT)
Program tar found: YES (C:\Windows\system32\tar.EXE)
Program gzip found: NO
Program lz4 found: NO
Program openssl found: NO
Program zstd found: NO
Program dtrace skipped: feature dtrace disabled
Program config/missing found: YES (sh D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\config/missing)
Program cp found: NO
Program xmllint found: NO
Program xsltproc found: NO
Program wget found: NO
Program C:\Python\Python310\python.exe found: YES (C:\Python\Python310\python.exe)
Check usable header "bsd_auth.h" skipped: feature bsd_auth disabled
Check usable header "dns_sd.h" skipped: feature bonjour disabled
Program fop found: NO
Compiler for language cpp skipped: feature llvm disabled
Found pkg-config 'C:\\Strawberry\\perl\\bin\\pkg-config.BAT' but it is Strawberry Perl and thus broken. Ignoring...
Found pkg-config: NO
Found CMake: C:\Program Files\CMake\bin\cmake.EXE (3.29.0)
Run-time dependency readline found: NO (tried pkgconfig and cmake)
Library readline found: NO
Run-time dependency libedit found: NO (tried pkgconfig and cmake)
Library libedit found: NO
Dependency libselinux skipped: feature selinux disabled
Dependency libsystemd skipped: feature systemd disabled
Run-time dependency openssl found: NO (tried pkgconfig, system and cmake)

meson.build:1336:17: ERROR: C header 'openssl/ssl.h' not found

A full log can be found at D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-logs\meson-log.txt


The error above says meson can't find openssl/ssl.h but it's there:
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0>dir D:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include\openssl\ssl.h
 Volume in drive D is Data
 Volume Serial Number is 58B5-7193

 Directory of D:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include\openssl

08/12/2024  04:22 PM           127,595 ssl.h
               1 File(s)        127,595 bytes
               0 Dir(s)  210,974,670,848 bytes free

I don't know why meson cannot find the OpenSSL installation I've specified via the options:
extra_lib_dirs
extra_include_dirs


Thanks, Mark

Build started at 2024-11-13T09:37:45.113951
Main binary: C:\Python\Python310\python.exe
Build Options: -Dssl=openssl '-Dextra_lib_dirs=D:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\lib' '-Dextra_include_dirs=D:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include\openssl' -Dnls=disabled -Dplperl=disabled -Dplpython=disabled -Dpltcl=disabled -Dllvm=disabled -Dlz4=disabled -Dzstd=disabled -Dgssapi=disabled -Dldap=disabled -Dpam=disabled -Dbsd_auth=disabled -Dsystemd=disabled -Dbonjour=disabled -Duuid=none -Dlibxml=disabled -Dlibxslt=disabled -Dselinux=disabled -Dicu=disabled -Dzlib=disabled '-Dprefix=D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6' -Dbuildtype=release
Python system: Windows
The Meson build system
Version: 1.6.0
Source dir: D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0
Build dir: D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build
Build type: native build
Project name: postgresql
Project version: 17.0
-----------
Detecting compiler via: `icl ""` -> [WinError 2] The system cannot find the file specified
-----------
Detecting compiler via: `cl /?` -> 0
stdout:
C/C++ COMPILER OPTIONS


                              -OPTIMIZATION-

/O1 maximum optimizations (favor space) /O2 maximum optimizations (favor speed)
/Ob<n> inline expansion (default n=0)   /Od disable optimizations (default)
/Og enable global optimization          /Oi[-] enable intrinsic functions
/Os favor code space                    /Ot favor code speed
/Ox optimizations (favor speed)         
/favor:<blend|AMD64|INTEL64|ATOM> select processor to optimize for, one of:
    blend - a combination of optimizations for several different x64 processors
    AMD64 - 64-bit AMD processors                                 
    INTEL64 - Intel(R)64 architecture processors                  
    ATOM - Intel(R) Atom(TM) processors                           

                             -CODE GENERATION-

/Gu[-] ensure distinct functions have distinct addresses
/Gw[-] separate global variables for linker
/GF enable read-only string pooling     /Gm[-] enable minimal rebuild
/Gy[-] separate functions for linker    /GS[-] enable security checks
/GR[-] enable C++ RTTI                  /GX[-] enable C++ EH (same as /EHsc)
/guard:cf[-] enable CFG (control flow guard)
/guard:ehcont[-] enable EH continuation metadata (CET)
/EHs enable C++ EH (no SEH exceptions)  /EHa enable C++ EH (w/ SEH exceptions)
/EHc extern "C" defaults to nothrow     
/EHr always generate noexcept runtime termination checks
/fp:<except[-]|fast|precise|strict> choose floating-point model:
    except[-] - consider floating-point exceptions when generating code
    fast - "fast" floating-point model; results are less predictable
    precise - "precise" floating-point model; results are predictable
    strict - "strict" floating-point model (implies /fp:except)
/Qfast_transcendentals generate inline FP intrinsics even with /fp:except
/Qspectre[-] enable mitigations for CVE 2017-5753
/Qpar[-] enable parallel code generation
/Qpar-report:1 auto-parallelizer diagnostic; indicate parallelized loops
/Qpar-report:2 auto-parallelizer diagnostic; indicate loops not parallelized
/Qvec-report:1 auto-vectorizer diagnostic; indicate vectorized loops
/Qvec-report:2 auto-vectorizer diagnostic; indicate loops not vectorized
/GL[-] enable link-time code generation 
/volatile:<iso|ms> choose volatile model:
    iso - Acquire/release semantics not guaranteed on volatile accesses
    ms  - Acquire/release semantics guaranteed on volatile accesses
/GA optimize for Windows Application    /Ge force stack checking for all funcs
/Gs[num] control stack checking calls   /Gh enable _penter function call
/GH enable _pexit function call         /GT generate fiber-safe TLS accesses
/RTC1 Enable fast checks (/RTCsu)       /RTCc Convert to smaller type checks
/RTCs Stack Frame runtime checking      /RTCu Uninitialized local usage checks
/clr[:option] compile for common language runtime, where option is:
    pure : produce IL-only output file (no native executable code)
    safe : produce IL-only verifiable output file
    netcore : produce assemblies targeting .NET Core runtime
    noAssembly : do not produce an assembly
    nostdlib : ignore the system .NET framework directory when searching for assemblies
    nostdimport : do not import any required assemblies implicitly
    initialAppDomain : enable initial AppDomain behavior of Visual C++ 2002
    implicitKeepAlive- : turn off implicit emission of System::GC::KeepAlive(this)
/fsanitize=address Enable address sanitizer codegen
/homeparams Force parameters passed in registers to be written to the stack
/GZ Enable stack checks (/RTCs)         /Gv __vectorcall calling convention
/arch:<AVX|AVX2|AVX512> minimum CPU architecture requirements, one of:
   AVX - enable use of instructions available with AVX-enabled CPUs
   AVX2 - enable use of instructions available with AVX2-enabled CPUs
   AVX512 - enable use of instructions available with AVX-512-enabled CPUs
/QIntel-jcc-erratum enable mitigations for Intel JCC erratum
/Qspectre-load Enable spectre mitigations for all instructions which load memory
/Qspectre-load-cf Enable spectre mitigations for all control-flow instructions which load memory
/fpcvt:<IA|BC> FP to unsigned integer conversion compatibility
   IA - results compatible with VCVTTSD2USI instruction
   BC - results compatible with VS2017 and earlier compiler

                              -OUTPUT FILES-

/Fa[file] name assembly listing file    /FA[scu] configure assembly listing
/Fd[file] name .PDB file                /Fe<file> name executable file
/Fm[file] name map file                 /Fo<file> name object file
/Fp<file> name precompiled header file  /Fr[file] name source browser file
/FR[file] name extended .SBR file       /Fi[file] name preprocessed file
/Fd: <file> name .PDB file              /Fe: <file> name executable file
/Fm: <file> name map file               /Fo: <file> name object file
/Fp: <file> name .PCH file              /FR: <file> name extended .SBR file
/Fi: <file> name preprocessed file      
/Ft<dir> location of the header files generated for #import
/doc[file] process XML documentation comments and optionally name the .xdc file

                              -PREPROCESSOR-

/AI<dir> add to assembly search path    /FU<file> forced using assembly/module 
/C don't strip comments                 /D<name>{=|#}<text> define macro
/E preprocess to stdout                 /EP preprocess to stdout, no #line
/P preprocess to file                   /Fx merge injected code to file
/FI<file> name forced include file      /U<name> remove predefined macro
/u remove all predefined macros         /I<dir> add to include search path
/X ignore "standard places"             
/PH generate #pragma file_hash when preprocessing
/PD print all macro definitions         

                                -LANGUAGE-

/std:<c++14|c++17|c++latest> C++ standard version
    c++14 - ISO/IEC 14882:2014 (default)
    c++17 - ISO/IEC 14882:2017
    c++latest - latest draft standard (feature set subject to change)
/permissive[-] enable some nonconforming code to compile (feature set subject to change) (on by default)
/Ze enable extensions (default)         /Za disable extensions
/ZW enable WinRT language extensions    /Zs syntax check only
/Zc:arg1[,arg2] C++ language conformance, where arguments can be:
  forScope[-]           enforce Standard C++ for scoping rules
  wchar_t[-]            wchar_t is the native type, not a typedef
  auto[-]               enforce the new Standard C++ meaning for auto
  trigraphs[-]          enable trigraphs (off by default)
  rvalueCast[-]         enforce Standard C++ explicit type conversion rules
  strictStrings[-]      disable string-literal to [char|wchar_t]*
                        conversion (off by default)
  implicitNoexcept[-]   enable implicit noexcept on required functions
  threadSafeInit[-]     enable thread-safe local static initialization
  inline[-]             remove unreferenced function or data if it is
                        COMDAT or has internal linkage only (off by default)
  sizedDealloc[-]       enable C++14 global sized deallocation
                        functions (on by default)
  throwingNew[-]        assume operator new throws on failure (off by default)
  referenceBinding[-]   a temporary will not bind to an non-const
                        lvalue reference (off by default)
  twoPhase-             disable two-phase name lookup
  ternary[-]            enforce C++11 rules for conditional operator (off by default)
  noexceptTypes[-]      enforce C++17 noexcept rules (on by default in C++17 or later)
  alignedNew[-]         enable C++17 alignment of dynamically allocated objects (on by default)
  hiddenFriend[-]       enforce Standard C++ hidden friend rules (implied by /permissive-)
  externC[-]            enforce Standard C++ rules for 'extern "C"' functions (implied by /permissive-)
  lambda[-]             better lambda support by using the newer lambda processor (off by default)
  tlsGuards[-]          generate runtime checks for TLS variable initialization (on by default)
  zeroSizeArrayNew[-]   call member new/delete for 0-size arrays of objects (on by default)
/await enable resumable functions extension
/await:strict enable standard C++20 coroutine support with earlier language versions
/constexpr:depth<N>     recursion depth limit for constexpr evaluation (default: 512)
/constexpr:backtrace<N> show N constexpr evaluations in diagnostics (default: 10)
/constexpr:steps<N>     terminate constexpr evaluation after N steps (default: 100000)
/Zi enable debugging information        /Z7 enable old-style debug info
/Zo[-] generate richer debugging information for optimized code (on by default)
/ZH:[MD5|SHA1|SHA_256] hash algorithm for calculation of file checksum in debug info (default: MD5)
/Zp[n] pack structs on n-byte boundary  /Zl omit default library name in .OBJ
/vd{0|1|2} disable/enable vtordisp      /vm<x> type of pointers to members
/std:<c11|c17> C standard version
    c11 - ISO/IEC 9899:2011
    c17 - ISO/IEC 9899:2018
/ZI enable Edit and Continue debug info 
/openmp enable OpenMP 2.0 language extensions
/openmp:experimental enable OpenMP 2.0 language extensions plus select OpenMP 3.0+ language extensions
/openmp:llvm OpenMP language extensions using LLVM runtime

                              -MISCELLANEOUS-

@<file> options response file           /?, /help print this help message
/bigobj generate extended object format /c compile only, no link
/errorReport:option deprecated. Report internal compiler errors to Microsoft
    none - do not send report                
    prompt - prompt to immediately send report
    queue - at next admin logon, prompt to send report (default)
    send - send report automatically         
/FC use full pathnames in diagnostics   /H<num> max external name length
/J default char type is unsigned        
/MP[n] use up to 'n' processes for compilation
/nologo suppress copyright message      /showIncludes show include file names
/Tc<source file> compile file as .c     /Tp<source file> compile file as .cpp
/TC compile all files as .c             /TP compile all files as .cpp
/V<string> set version string           /Yc[file] create .PCH file
/Yd put debug info in every .OBJ        /Yl[sym] inject .PCH ref for debug lib
/Yu[file] use .PCH file                 /Y- disable all PCH options
/Zm<n> max memory alloc (% of default)  /FS force to use MSPDBSRV.EXE
/source-charset:<iana-name>|.nnnn set source character set
/execution-charset:<iana-name>|.nnnn set execution character set
/utf-8 set source and execution character set to UTF-8
/validate-charset[-] validate UTF-8 files for only legal characters
/fastfail[-] enable fast-fail mode      /JMC[-] enable native just my code
/presetPadding[-] zero initialize padding for stack based class types
/volatileMetadata[-] generate metadata on volatile memory accesses

                                -LINKING-

/LD Create .DLL                         /LDd Create .DLL debug library
/LN Create a .netmodule                 /F<num> set stack size
/link [linker options and libraries]    /MD link with MSVCRT.LIB
/MT link with LIBCMT.LIB                /MDd link with MSVCRTD.LIB debug lib
/MTd link with LIBCMTD.LIB debug lib    

                              -CODE ANALYSIS-

/analyze[-] Enable native analysis      /analyze:quiet[-] No warning to console
/analyze:log<name> Warnings to file     /analyze:autolog Log to *.pftlog
/analyze:autolog:ext<ext> Log to *.<ext>/analyze:autolog- No log file
/analyze:WX- Warnings not fatal         /analyze:stacksize<num> Max stack frame
/analyze:max_paths<num> Max paths       /analyze:only Analyze, no code gen

                              -DIAGNOSTICS-

/diagnostics:<args,...> controls the format of diagnostic messages:
             classic   - retains prior format
             column[-] - prints column information
             caret[-]  - prints column and the indicated line of source
/Wall enable all warnings               /w   disable all warnings
/W<n> set warning level (default n=1)   
/Wv:xx[.yy[.zzzzz]] disable warnings introduced after version xx.yy.zzzzz
/WX treat warnings as errors            /WL enable one line diagnostics
/wd<n> disable warning n                /we<n> treat warning n as an error
/wo<n> issue warning n once             /w<l><n> set warning level 1-4 for n
/external:I <path>      - location of external headers
/external:env:<var>     - environment variable with locations of external headers
/external:anglebrackets - treat all headers included via <> as external
/external:W<n>          - warning level for external headers
/external:templates[-]  - evaluate warning level across template instantiation chain
/sdl enable additional security features and warnings
-----------
stderr:
Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30154 for x64
Copyright (C) Microsoft Corporation.  All rights reserved.
-----------
Sanity testing C compiler: cl
Is cross compiler: False.
Sanity check compiler command line: cl sanitycheckc.c /Fesanitycheckc.exe /MD /nologo /showIncludes /utf-8 /link
Sanity check compile stdout:
sanitycheckc.c

-----
Sanity check compile stderr:

-----
Running test binary command:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\sanitycheckc.exe
C compiler for the host machine: cl (msvc 19.29.30154 "Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30154 for x64")
C linker for the host machine: link link 14.29.30154.0
-----------
Detecting archiver via: `lib /?` -> 1100
stdout:
Microsoft (R) Library Manager Version 14.29.30154.0
Copyright (C) Microsoft Corporation.  All rights reserved.

usage: LIB [options] [files]

   options:

      /DEF[:filename]
      /ERRORREPORT:{NONE|PROMPT|QUEUE|SEND}
      /EXPORT:symbol
      /EXTRACT:membername
      /INCLUDE:symbol
      /LIBPATH:dir
      /LINKREPRO:dir
      /LINKREPROTARGET:filename
      /LIST[:filename]
      /LTCG
      /MACHINE:{ARM|ARM64|ARM64EC|EBC|X64|X86}
      /NAME:filename
      /NODEFAULTLIB[:library]
      /NOLOGO
      /OUT:filename
      /REMOVE:membername
      /SUBSYSTEM:{BOOT_APPLICATION|CONSOLE|EFI_APPLICATION|
                  EFI_BOOT_SERVICE_DRIVER|EFI_ROM|EFI_RUNTIME_DRIVER|
                  NATIVE|POSIX|WINDOWS|WINDOWSCE}[,#[.##]]
      /VERBOSE
      /WX[:NO]
-----------
-----------
Detecting compiler via: `icl ""` -> [WinError 2] The system cannot find the file specified
-----------
Detecting compiler via: `cl /?` -> 0
stdout:
C/C++ COMPILER OPTIONS


                              -OPTIMIZATION-

/O1 maximum optimizations (favor space) /O2 maximum optimizations (favor speed)
/Ob<n> inline expansion (default n=0)   /Od disable optimizations (default)
/Og enable global optimization          /Oi[-] enable intrinsic functions
/Os favor code space                    /Ot favor code speed
/Ox optimizations (favor speed)         
/favor:<blend|AMD64|INTEL64|ATOM> select processor to optimize for, one of:
    blend - a combination of optimizations for several different x64 processors
    AMD64 - 64-bit AMD processors                                 
    INTEL64 - Intel(R)64 architecture processors                  
    ATOM - Intel(R) Atom(TM) processors                           

                             -CODE GENERATION-

/Gu[-] ensure distinct functions have distinct addresses
/Gw[-] separate global variables for linker
/GF enable read-only string pooling     /Gm[-] enable minimal rebuild
/Gy[-] separate functions for linker    /GS[-] enable security checks
/GR[-] enable C++ RTTI                  /GX[-] enable C++ EH (same as /EHsc)
/guard:cf[-] enable CFG (control flow guard)
/guard:ehcont[-] enable EH continuation metadata (CET)
/EHs enable C++ EH (no SEH exceptions)  /EHa enable C++ EH (w/ SEH exceptions)
/EHc extern "C" defaults to nothrow     
/EHr always generate noexcept runtime termination checks
/fp:<except[-]|fast|precise|strict> choose floating-point model:
    except[-] - consider floating-point exceptions when generating code
    fast - "fast" floating-point model; results are less predictable
    precise - "precise" floating-point model; results are predictable
    strict - "strict" floating-point model (implies /fp:except)
/Qfast_transcendentals generate inline FP intrinsics even with /fp:except
/Qspectre[-] enable mitigations for CVE 2017-5753
/Qpar[-] enable parallel code generation
/Qpar-report:1 auto-parallelizer diagnostic; indicate parallelized loops
/Qpar-report:2 auto-parallelizer diagnostic; indicate loops not parallelized
/Qvec-report:1 auto-vectorizer diagnostic; indicate vectorized loops
/Qvec-report:2 auto-vectorizer diagnostic; indicate loops not vectorized
/GL[-] enable link-time code generation 
/volatile:<iso|ms> choose volatile model:
    iso - Acquire/release semantics not guaranteed on volatile accesses
    ms  - Acquire/release semantics guaranteed on volatile accesses
/GA optimize for Windows Application    /Ge force stack checking for all funcs
/Gs[num] control stack checking calls   /Gh enable _penter function call
/GH enable _pexit function call         /GT generate fiber-safe TLS accesses
/RTC1 Enable fast checks (/RTCsu)       /RTCc Convert to smaller type checks
/RTCs Stack Frame runtime checking      /RTCu Uninitialized local usage checks
/clr[:option] compile for common language runtime, where option is:
    pure : produce IL-only output file (no native executable code)
    safe : produce IL-only verifiable output file
    netcore : produce assemblies targeting .NET Core runtime
    noAssembly : do not produce an assembly
    nostdlib : ignore the system .NET framework directory when searching for assemblies
    nostdimport : do not import any required assemblies implicitly
    initialAppDomain : enable initial AppDomain behavior of Visual C++ 2002
    implicitKeepAlive- : turn off implicit emission of System::GC::KeepAlive(this)
/fsanitize=address Enable address sanitizer codegen
/homeparams Force parameters passed in registers to be written to the stack
/GZ Enable stack checks (/RTCs)         /Gv __vectorcall calling convention
/arch:<AVX|AVX2|AVX512> minimum CPU architecture requirements, one of:
   AVX - enable use of instructions available with AVX-enabled CPUs
   AVX2 - enable use of instructions available with AVX2-enabled CPUs
   AVX512 - enable use of instructions available with AVX-512-enabled CPUs
/QIntel-jcc-erratum enable mitigations for Intel JCC erratum
/Qspectre-load Enable spectre mitigations for all instructions which load memory
/Qspectre-load-cf Enable spectre mitigations for all control-flow instructions which load memory
/fpcvt:<IA|BC> FP to unsigned integer conversion compatibility
   IA - results compatible with VCVTTSD2USI instruction
   BC - results compatible with VS2017 and earlier compiler

                              -OUTPUT FILES-

/Fa[file] name assembly listing file    /FA[scu] configure assembly listing
/Fd[file] name .PDB file                /Fe<file> name executable file
/Fm[file] name map file                 /Fo<file> name object file
/Fp<file> name precompiled header file  /Fr[file] name source browser file
/FR[file] name extended .SBR file       /Fi[file] name preprocessed file
/Fd: <file> name .PDB file              /Fe: <file> name executable file
/Fm: <file> name map file               /Fo: <file> name object file
/Fp: <file> name .PCH file              /FR: <file> name extended .SBR file
/Fi: <file> name preprocessed file      
/Ft<dir> location of the header files generated for #import
/doc[file] process XML documentation comments and optionally name the .xdc file

                              -PREPROCESSOR-

/AI<dir> add to assembly search path    /FU<file> forced using assembly/module 
/C don't strip comments                 /D<name>{=|#}<text> define macro
/E preprocess to stdout                 /EP preprocess to stdout, no #line
/P preprocess to file                   /Fx merge injected code to file
/FI<file> name forced include file      /U<name> remove predefined macro
/u remove all predefined macros         /I<dir> add to include search path
/X ignore "standard places"             
/PH generate #pragma file_hash when preprocessing
/PD print all macro definitions         

                                -LANGUAGE-

/std:<c++14|c++17|c++latest> C++ standard version
    c++14 - ISO/IEC 14882:2014 (default)
    c++17 - ISO/IEC 14882:2017
    c++latest - latest draft standard (feature set subject to change)
/permissive[-] enable some nonconforming code to compile (feature set subject to change) (on by default)
/Ze enable extensions (default)         /Za disable extensions
/ZW enable WinRT language extensions    /Zs syntax check only
/Zc:arg1[,arg2] C++ language conformance, where arguments can be:
  forScope[-]           enforce Standard C++ for scoping rules
  wchar_t[-]            wchar_t is the native type, not a typedef
  auto[-]               enforce the new Standard C++ meaning for auto
  trigraphs[-]          enable trigraphs (off by default)
  rvalueCast[-]         enforce Standard C++ explicit type conversion rules
  strictStrings[-]      disable string-literal to [char|wchar_t]*
                        conversion (off by default)
  implicitNoexcept[-]   enable implicit noexcept on required functions
  threadSafeInit[-]     enable thread-safe local static initialization
  inline[-]             remove unreferenced function or data if it is
                        COMDAT or has internal linkage only (off by default)
  sizedDealloc[-]       enable C++14 global sized deallocation
                        functions (on by default)
  throwingNew[-]        assume operator new throws on failure (off by default)
  referenceBinding[-]   a temporary will not bind to an non-const
                        lvalue reference (off by default)
  twoPhase-             disable two-phase name lookup
  ternary[-]            enforce C++11 rules for conditional operator (off by default)
  noexceptTypes[-]      enforce C++17 noexcept rules (on by default in C++17 or later)
  alignedNew[-]         enable C++17 alignment of dynamically allocated objects (on by default)
  hiddenFriend[-]       enforce Standard C++ hidden friend rules (implied by /permissive-)
  externC[-]            enforce Standard C++ rules for 'extern "C"' functions (implied by /permissive-)
  lambda[-]             better lambda support by using the newer lambda processor (off by default)
  tlsGuards[-]          generate runtime checks for TLS variable initialization (on by default)
  zeroSizeArrayNew[-]   call member new/delete for 0-size arrays of objects (on by default)
/await enable resumable functions extension
/await:strict enable standard C++20 coroutine support with earlier language versions
/constexpr:depth<N>     recursion depth limit for constexpr evaluation (default: 512)
/constexpr:backtrace<N> show N constexpr evaluations in diagnostics (default: 10)
/constexpr:steps<N>     terminate constexpr evaluation after N steps (default: 100000)
/Zi enable debugging information        /Z7 enable old-style debug info
/Zo[-] generate richer debugging information for optimized code (on by default)
/ZH:[MD5|SHA1|SHA_256] hash algorithm for calculation of file checksum in debug info (default: MD5)
/Zp[n] pack structs on n-byte boundary  /Zl omit default library name in .OBJ
/vd{0|1|2} disable/enable vtordisp      /vm<x> type of pointers to members
/std:<c11|c17> C standard version
    c11 - ISO/IEC 9899:2011
    c17 - ISO/IEC 9899:2018
/ZI enable Edit and Continue debug info 
/openmp enable OpenMP 2.0 language extensions
/openmp:experimental enable OpenMP 2.0 language extensions plus select OpenMP 3.0+ language extensions
/openmp:llvm OpenMP language extensions using LLVM runtime

                              -MISCELLANEOUS-

@<file> options response file           /?, /help print this help message
/bigobj generate extended object format /c compile only, no link
/errorReport:option deprecated. Report internal compiler errors to Microsoft
    none - do not send report                
    prompt - prompt to immediately send report
    queue - at next admin logon, prompt to send report (default)
    send - send report automatically         
/FC use full pathnames in diagnostics   /H<num> max external name length
/J default char type is unsigned        
/MP[n] use up to 'n' processes for compilation
/nologo suppress copyright message      /showIncludes show include file names
/Tc<source file> compile file as .c     /Tp<source file> compile file as .cpp
/TC compile all files as .c             /TP compile all files as .cpp
/V<string> set version string           /Yc[file] create .PCH file
/Yd put debug info in every .OBJ        /Yl[sym] inject .PCH ref for debug lib
/Yu[file] use .PCH file                 /Y- disable all PCH options
/Zm<n> max memory alloc (% of default)  /FS force to use MSPDBSRV.EXE
/source-charset:<iana-name>|.nnnn set source character set
/execution-charset:<iana-name>|.nnnn set execution character set
/utf-8 set source and execution character set to UTF-8
/validate-charset[-] validate UTF-8 files for only legal characters
/fastfail[-] enable fast-fail mode      /JMC[-] enable native just my code
/presetPadding[-] zero initialize padding for stack based class types
/volatileMetadata[-] generate metadata on volatile memory accesses

                                -LINKING-

/LD Create .DLL                         /LDd Create .DLL debug library
/LN Create a .netmodule                 /F<num> set stack size
/link [linker options and libraries]    /MD link with MSVCRT.LIB
/MT link with LIBCMT.LIB                /MDd link with MSVCRTD.LIB debug lib
/MTd link with LIBCMTD.LIB debug lib    

                              -CODE ANALYSIS-

/analyze[-] Enable native analysis      /analyze:quiet[-] No warning to console
/analyze:log<name> Warnings to file     /analyze:autolog Log to *.pftlog
/analyze:autolog:ext<ext> Log to *.<ext>/analyze:autolog- No log file
/analyze:WX- Warnings not fatal         /analyze:stacksize<num> Max stack frame
/analyze:max_paths<num> Max paths       /analyze:only Analyze, no code gen

                              -DIAGNOSTICS-

/diagnostics:<args,...> controls the format of diagnostic messages:
             classic   - retains prior format
             column[-] - prints column information
             caret[-]  - prints column and the indicated line of source
/Wall enable all warnings               /w   disable all warnings
/W<n> set warning level (default n=1)   
/Wv:xx[.yy[.zzzzz]] disable warnings introduced after version xx.yy.zzzzz
/WX treat warnings as errors            /WL enable one line diagnostics
/wd<n> disable warning n                /we<n> treat warning n as an error
/wo<n> issue warning n once             /w<l><n> set warning level 1-4 for n
/external:I <path>      - location of external headers
/external:env:<var>     - environment variable with locations of external headers
/external:anglebrackets - treat all headers included via <> as external
/external:W<n>          - warning level for external headers
/external:templates[-]  - evaluate warning level across template instantiation chain
/sdl enable additional security features and warnings
-----------
stderr:
Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30154 for x64
Copyright (C) Microsoft Corporation.  All rights reserved.
-----------
Sanity testing C compiler: cl
Is cross compiler: False.
Sanity check compiler command line: cl sanitycheckc.c /Fesanitycheckc.exe /MD /nologo /showIncludes /utf-8 /link
Sanity check compile stdout:
sanitycheckc.c

-----
Sanity check compile stderr:

-----
Running test binary command:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\sanitycheckc.exe
C compiler for the build machine: cl (msvc 19.29.30154 "Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30154 for x64")
C linker for the build machine: link link 14.29.30154.0
-----------
Detecting archiver via: `lib /?` -> 1100
stdout:
Microsoft (R) Library Manager Version 14.29.30154.0
Copyright (C) Microsoft Corporation.  All rights reserved.

usage: LIB [options] [files]

   options:

      /DEF[:filename]
      /ERRORREPORT:{NONE|PROMPT|QUEUE|SEND}
      /EXPORT:symbol
      /EXTRACT:membername
      /INCLUDE:symbol
      /LIBPATH:dir
      /LINKREPRO:dir
      /LINKREPROTARGET:filename
      /LIST[:filename]
      /LTCG
      /MACHINE:{ARM|ARM64|ARM64EC|EBC|X64|X86}
      /NAME:filename
      /NODEFAULTLIB[:library]
      /NOLOGO
      /OUT:filename
      /REMOVE:membername
      /SUBSYSTEM:{BOOT_APPLICATION|CONSOLE|EFI_APPLICATION|
                  EFI_BOOT_SERVICE_DRIVER|EFI_ROM|EFI_RUNTIME_DRIVER|
                  NATIVE|POSIX|WINDOWS|WINDOWSCE}[,#[.##]]
      /VERBOSE
      /WX[:NO]
-----------
Build machine cpu family: x86_64
Build machine cpu: x86_64
Host machine cpu family: x86_64
Host machine cpu: x86_64
Target machine cpu family: x86_64
Target machine cpu: x86_64
Run-time dependency threads found: YES
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmputhrfuv_
Code:
int main(void) { return 0; }

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmputhrfuv_\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmputhrfuv_\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- ws2_32.lib /link /release /nologo` -> 0
stdout:
testfile.c
-----------
Library ws2_32 found: YES
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpiunowdcq
Code:
int main(void) { return 0; }

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpiunowdcq\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpiunowdcq\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- secur32.lib /link /release /nologo` -> 0
stdout:
testfile.c
-----------
Library secur32 found: YES
Program perl found: YES (C:\Strawberry\perl\bin\perl.EXE)
Program python3 found: YES (C:\Program Files\Python38\python3.EXE)
Running command: C:\GnuWin32\bin\flex.EXE --version
--- stdout ---
flex 2.5.35

--- stderr ---


Program flex found: YES 2.5.35 2.5.35 (C:\GnuWin32\bin\flex.EXE)
Running command: C:\GnuWin32\bin\bison.EXE --version
--- stdout ---
bison (GNU Bison) 2.4.1
Written by Robert Corbett and Richard Stallman.

Copyright (C) 2008 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

--- stderr ---


Program bison found: YES 2.4.1 2.4.1 (C:\GnuWin32\bin\bison.EXE)
Program sed found: YES (C:\GnuWin32\bin\sed.EXE)
Program prove found: YES (C:\Strawberry\perl\bin\prove.BAT)
Program tar found: YES (C:\Windows\system32\tar.EXE)
Program gzip found: NO
Program lz4 found: NO
Program openssl found: NO
Program zstd found: NO
Program dtrace skipped: feature dtrace disabled
Program config/missing found: YES (sh D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\config/missing)
Program cp found: NO
Program xmllint found: NO
Program xsltproc found: NO
Running command: C:\GnuWin32\bin\bison.EXE --version
--- stdout ---
bison (GNU Bison) 2.4.1
Written by Robert Corbett and Richard Stallman.

Copyright (C) 2008 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

--- stderr ---


Running command: C:\GnuWin32\bin\flex.EXE --version
--- stdout ---
flex 2.5.35

--- stderr ---


Program wget found: NO
Running command: "C:\Program Files\Python38\python3.EXE" src/tools/find_meson
--- stdout ---
meson
C:\Python\Python310\python.exe
D:\Jenkins\workspace\workspace\Postgres-9.4\meson-1.6.0\meson.py
--- stderr ---


Program C:\Python\Python310\python.exe found: YES (C:\Python\Python310\python.exe)
Check usable header "bsd_auth.h" skipped: feature bsd_auth disabled
Check usable header "dns_sd.h" skipped: feature bonjour disabled
Program fop found: NO
Compiler for language cpp skipped: feature llvm disabled
Pkg-config binary missing from cross or native file, or env var undefined.
Trying a default Pkg-config fallback at pkg-config
Found pkg-config 'C:\\Strawberry\\perl\\bin\\pkg-config.BAT' but it is Strawberry Perl and thus broken. Ignoring...
Found pkg-config: NO
Pkg-config for machine host machine not found. Giving up.
CMake binary for host machine is not cached
CMake binary missing from cross or native file, or env var undefined.
Trying a default CMake fallback at cmake
Found CMake: C:\Program Files\CMake\bin\cmake.EXE (3.29.0)
Extracting basic cmake information
CMake Toolchain: Calling CMake once to generate the compiler state
Calling CMake (['C:\\Program Files\\CMake\\bin\\cmake.EXE']) in D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\__CMake_compiler_info__ with:
  - "--trace-expand"
  - "--trace-format=json-v1"
  - "--no-warn-unused-cli"
  - "--trace-redirect=cmake_trace.txt"
  - "-G"
  - "Ninja"
  - "-DCMAKE_TOOLCHAIN_FILE=D:/Jenkins/workspace/workspace/Postgres-9.4/PostgreSQL/postgres-Source/buildPostgreSQL_wx6_17.0/postgresql-17.0/build/meson-private/__CMake_compiler_info__/CMakeMesonTempToolchainFile.cmake"
  - "."
CMake trace warning: add_executable() non imported executables are not supported
CMake TRACE: D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\__CMake_compiler_info__\CMakeFiles\CMakeScratch\TryCompile-fhq9wr\CMakeLists.txt:23 add_executable(['cmTC_ebead'])
CMake trace warning: target_link_libraries() TARGET cmTC_ebead not found
CMake TRACE: D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\__CMake_compiler_info__\CMakeFiles\CMakeScratch\TryCompile-fhq9wr\CMakeLists.txt:29 target_link_libraries(['cmTC_ebead', ''])
Try CMake generator: auto
Calling CMake (['C:\\Program Files\\CMake\\bin\\cmake.EXE']) in D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\cmake_readline with:
  - "--trace-expand"
  - "--trace-format=json-v1"
  - "--no-warn-unused-cli"
  - "--trace-redirect=cmake_trace.txt"
  - "-DCMAKE_TOOLCHAIN_FILE=D:/Jenkins/workspace/workspace/Postgres-9.4/PostgreSQL/postgres-Source/buildPostgreSQL_wx6_17.0/postgresql-17.0/build/meson-private/cmake_readline/CMakeMesonToolchainFile.cmake"
  - "."
  -- Module search paths:    ['C:/Program Files', 'C:/Program Files (x86)', 'C:/Program Files/CMake']
  -- CMake root:             C:/Program Files/CMake/share/cmake-3.29
  -- CMake architectures:    []
  -- CMake lib search paths: ['lib', 'lib32', 'lib64', 'libx32', 'share', '']
Preliminary CMake check failed. Aborting.
Run-time dependency readline found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpbvjlkshl
Code:

        #include<stddef.h>
        #include<stdio.h>
        int main(void) {
            printf("%ld\n", (long)(sizeof(void *)));
            return 0;
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpbvjlkshl\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpbvjlkshl\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi-` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stddef.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stdio.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstdio.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_stdio_config.h
-----------
Program stdout:

8

Program stderr:


Library readline found: NO
Pkg-config for machine host machine not found. Giving up.
CMake binary for host machine is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libedit found: NO (tried pkgconfig and cmake)
Library libedit found: NO
Dependency libselinux skipped: feature selinux disabled
Dependency libsystemd skipped: feature systemd disabled
Pkg-config for machine host machine not found. Giving up.
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdf1slavx
Code:

        #ifdef __has_include
         #if !__has_include("openssl/ssl.h")
          #error "Header 'openssl/ssl.h' could not be found"
         #endif
        #else
         #include <openssl/ssl.h>
        #endif
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdf1slavx\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdf1slavx\testfile.c(4): fatal error C1189: #error:  "Header 'openssl/ssl.h' could not be found"
-----------
CMake binary for host machine is cached.

Determining dependency 'OpenSSL' with CMake executable 'C:\\Program Files\\CMake\\bin\\cmake.EXE'
Try CMake generator: auto
Calling CMake (['C:\\Program Files\\CMake\\bin\\cmake.EXE']) in D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\cmake_OpenSSL with:
  - "-DNAME=OpenSSL"
  - "-DARCHS="
  - "-DVERSION="
  - "-DCOMPS="
  - "-DSTATIC=OFF"
  - "--trace-expand"
  - "--trace-format=json-v1"
  - "--no-warn-unused-cli"
  - "--trace-redirect=cmake_trace.txt"
  - "-DCMAKE_TOOLCHAIN_FILE=D:/Jenkins/workspace/workspace/Postgres-9.4/PostgreSQL/postgres-Source/buildPostgreSQL_wx6_17.0/postgresql-17.0/build/meson-private/cmake_OpenSSL/CMakeMesonToolchainFile.cmake"
  - "."
Run-time dependency openssl found: NO (tried pkgconfig, system and cmake)
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdessvcno
Code:

        #ifdef __has_include
         #if !__has_include("openssl/ssl.h")
          #error "Header 'openssl/ssl.h' could not be found"
         #endif
        #else
         #include <openssl/ssl.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include\openssl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdessvcno\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdessvcno\testfile.c(4): fatal error C1189: #error:  "Header 'openssl/ssl.h' could not be found"
-----------

meson.build:1336:17: ERROR: C header 'openssl/ssl.h' not found


Attachments:

  [text/plain] meson-log.txt (42.8K, ../../DM6PR05MB50837425FDAD7A9BB0F1EAA6EE5A2@DM6PR05MB5083.namprd05.prod.outlook.com/2-meson-log.txt)
  download | inline:
Build started at 2024-11-13T09:37:45.113951
Main binary: C:\Python\Python310\python.exe
Build Options: -Dssl=openssl '-Dextra_lib_dirs=D:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\lib' '-Dextra_include_dirs=D:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include\openssl' -Dnls=disabled -Dplperl=disabled -Dplpython=disabled -Dpltcl=disabled -Dllvm=disabled -Dlz4=disabled -Dzstd=disabled -Dgssapi=disabled -Dldap=disabled -Dpam=disabled -Dbsd_auth=disabled -Dsystemd=disabled -Dbonjour=disabled -Duuid=none -Dlibxml=disabled -Dlibxslt=disabled -Dselinux=disabled -Dicu=disabled -Dzlib=disabled '-Dprefix=D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6' -Dbuildtype=release
Python system: Windows
The Meson build system
Version: 1.6.0
Source dir: D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0
Build dir: D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build
Build type: native build
Project name: postgresql
Project version: 17.0
-----------
Detecting compiler via: `icl ""` -> [WinError 2] The system cannot find the file specified
-----------
Detecting compiler via: `cl /?` -> 0
stdout:
C/C++ COMPILER OPTIONS


                              -OPTIMIZATION-

/O1 maximum optimizations (favor space) /O2 maximum optimizations (favor speed)
/Ob<n> inline expansion (default n=0)   /Od disable optimizations (default)
/Og enable global optimization          /Oi[-] enable intrinsic functions
/Os favor code space                    /Ot favor code speed
/Ox optimizations (favor speed)         
/favor:<blend|AMD64|INTEL64|ATOM> select processor to optimize for, one of:
    blend - a combination of optimizations for several different x64 processors
    AMD64 - 64-bit AMD processors                                 
    INTEL64 - Intel(R)64 architecture processors                  
    ATOM - Intel(R) Atom(TM) processors                           

                             -CODE GENERATION-

/Gu[-] ensure distinct functions have distinct addresses
/Gw[-] separate global variables for linker
/GF enable read-only string pooling     /Gm[-] enable minimal rebuild
/Gy[-] separate functions for linker    /GS[-] enable security checks
/GR[-] enable C++ RTTI                  /GX[-] enable C++ EH (same as /EHsc)
/guard:cf[-] enable CFG (control flow guard)
/guard:ehcont[-] enable EH continuation metadata (CET)
/EHs enable C++ EH (no SEH exceptions)  /EHa enable C++ EH (w/ SEH exceptions)
/EHc extern "C" defaults to nothrow     
/EHr always generate noexcept runtime termination checks
/fp:<except[-]|fast|precise|strict> choose floating-point model:
    except[-] - consider floating-point exceptions when generating code
    fast - "fast" floating-point model; results are less predictable
    precise - "precise" floating-point model; results are predictable
    strict - "strict" floating-point model (implies /fp:except)
/Qfast_transcendentals generate inline FP intrinsics even with /fp:except
/Qspectre[-] enable mitigations for CVE 2017-5753
/Qpar[-] enable parallel code generation
/Qpar-report:1 auto-parallelizer diagnostic; indicate parallelized loops
/Qpar-report:2 auto-parallelizer diagnostic; indicate loops not parallelized
/Qvec-report:1 auto-vectorizer diagnostic; indicate vectorized loops
/Qvec-report:2 auto-vectorizer diagnostic; indicate loops not vectorized
/GL[-] enable link-time code generation 
/volatile:<iso|ms> choose volatile model:
    iso - Acquire/release semantics not guaranteed on volatile accesses
    ms  - Acquire/release semantics guaranteed on volatile accesses
/GA optimize for Windows Application    /Ge force stack checking for all funcs
/Gs[num] control stack checking calls   /Gh enable _penter function call
/GH enable _pexit function call         /GT generate fiber-safe TLS accesses
/RTC1 Enable fast checks (/RTCsu)       /RTCc Convert to smaller type checks
/RTCs Stack Frame runtime checking      /RTCu Uninitialized local usage checks
/clr[:option] compile for common language runtime, where option is:
    pure : produce IL-only output file (no native executable code)
    safe : produce IL-only verifiable output file
    netcore : produce assemblies targeting .NET Core runtime
    noAssembly : do not produce an assembly
    nostdlib : ignore the system .NET framework directory when searching for assemblies
    nostdimport : do not import any required assemblies implicitly
    initialAppDomain : enable initial AppDomain behavior of Visual C++ 2002
    implicitKeepAlive- : turn off implicit emission of System::GC::KeepAlive(this)
/fsanitize=address Enable address sanitizer codegen
/homeparams Force parameters passed in registers to be written to the stack
/GZ Enable stack checks (/RTCs)         /Gv __vectorcall calling convention
/arch:<AVX|AVX2|AVX512> minimum CPU architecture requirements, one of:
   AVX - enable use of instructions available with AVX-enabled CPUs
   AVX2 - enable use of instructions available with AVX2-enabled CPUs
   AVX512 - enable use of instructions available with AVX-512-enabled CPUs
/QIntel-jcc-erratum enable mitigations for Intel JCC erratum
/Qspectre-load Enable spectre mitigations for all instructions which load memory
/Qspectre-load-cf Enable spectre mitigations for all control-flow instructions which load memory
/fpcvt:<IA|BC> FP to unsigned integer conversion compatibility
   IA - results compatible with VCVTTSD2USI instruction
   BC - results compatible with VS2017 and earlier compiler

                              -OUTPUT FILES-

/Fa[file] name assembly listing file    /FA[scu] configure assembly listing
/Fd[file] name .PDB file                /Fe<file> name executable file
/Fm[file] name map file                 /Fo<file> name object file
/Fp<file> name precompiled header file  /Fr[file] name source browser file
/FR[file] name extended .SBR file       /Fi[file] name preprocessed file
/Fd: <file> name .PDB file              /Fe: <file> name executable file
/Fm: <file> name map file               /Fo: <file> name object file
/Fp: <file> name .PCH file              /FR: <file> name extended .SBR file
/Fi: <file> name preprocessed file      
/Ft<dir> location of the header files generated for #import
/doc[file] process XML documentation comments and optionally name the .xdc file

                              -PREPROCESSOR-

/AI<dir> add to assembly search path    /FU<file> forced using assembly/module 
/C don't strip comments                 /D<name>{=|#}<text> define macro
/E preprocess to stdout                 /EP preprocess to stdout, no #line
/P preprocess to file                   /Fx merge injected code to file
/FI<file> name forced include file      /U<name> remove predefined macro
/u remove all predefined macros         /I<dir> add to include search path
/X ignore "standard places"             
/PH generate #pragma file_hash when preprocessing
/PD print all macro definitions         

                                -LANGUAGE-

/std:<c++14|c++17|c++latest> C++ standard version
    c++14 - ISO/IEC 14882:2014 (default)
    c++17 - ISO/IEC 14882:2017
    c++latest - latest draft standard (feature set subject to change)
/permissive[-] enable some nonconforming code to compile (feature set subject to change) (on by default)
/Ze enable extensions (default)         /Za disable extensions
/ZW enable WinRT language extensions    /Zs syntax check only
/Zc:arg1[,arg2] C++ language conformance, where arguments can be:
  forScope[-]           enforce Standard C++ for scoping rules
  wchar_t[-]            wchar_t is the native type, not a typedef
  auto[-]               enforce the new Standard C++ meaning for auto
  trigraphs[-]          enable trigraphs (off by default)
  rvalueCast[-]         enforce Standard C++ explicit type conversion rules
  strictStrings[-]      disable string-literal to [char|wchar_t]*
                        conversion (off by default)
  implicitNoexcept[-]   enable implicit noexcept on required functions
  threadSafeInit[-]     enable thread-safe local static initialization
  inline[-]             remove unreferenced function or data if it is
                        COMDAT or has internal linkage only (off by default)
  sizedDealloc[-]       enable C++14 global sized deallocation
                        functions (on by default)
  throwingNew[-]        assume operator new throws on failure (off by default)
  referenceBinding[-]   a temporary will not bind to an non-const
                        lvalue reference (off by default)
  twoPhase-             disable two-phase name lookup
  ternary[-]            enforce C++11 rules for conditional operator (off by default)
  noexceptTypes[-]      enforce C++17 noexcept rules (on by default in C++17 or later)
  alignedNew[-]         enable C++17 alignment of dynamically allocated objects (on by default)
  hiddenFriend[-]       enforce Standard C++ hidden friend rules (implied by /permissive-)
  externC[-]            enforce Standard C++ rules for 'extern "C"' functions (implied by /permissive-)
  lambda[-]             better lambda support by using the newer lambda processor (off by default)
  tlsGuards[-]          generate runtime checks for TLS variable initialization (on by default)
  zeroSizeArrayNew[-]   call member new/delete for 0-size arrays of objects (on by default)
/await enable resumable functions extension
/await:strict enable standard C++20 coroutine support with earlier language versions
/constexpr:depth<N>     recursion depth limit for constexpr evaluation (default: 512)
/constexpr:backtrace<N> show N constexpr evaluations in diagnostics (default: 10)
/constexpr:steps<N>     terminate constexpr evaluation after N steps (default: 100000)
/Zi enable debugging information        /Z7 enable old-style debug info
/Zo[-] generate richer debugging information for optimized code (on by default)
/ZH:[MD5|SHA1|SHA_256] hash algorithm for calculation of file checksum in debug info (default: MD5)
/Zp[n] pack structs on n-byte boundary  /Zl omit default library name in .OBJ
/vd{0|1|2} disable/enable vtordisp      /vm<x> type of pointers to members
/std:<c11|c17> C standard version
    c11 - ISO/IEC 9899:2011
    c17 - ISO/IEC 9899:2018
/ZI enable Edit and Continue debug info 
/openmp enable OpenMP 2.0 language extensions
/openmp:experimental enable OpenMP 2.0 language extensions plus select OpenMP 3.0+ language extensions
/openmp:llvm OpenMP language extensions using LLVM runtime

                              -MISCELLANEOUS-

@<file> options response file           /?, /help print this help message
/bigobj generate extended object format /c compile only, no link
/errorReport:option deprecated. Report internal compiler errors to Microsoft
    none - do not send report                
    prompt - prompt to immediately send report
    queue - at next admin logon, prompt to send report (default)
    send - send report automatically         
/FC use full pathnames in diagnostics   /H<num> max external name length
/J default char type is unsigned        
/MP[n] use up to 'n' processes for compilation
/nologo suppress copyright message      /showIncludes show include file names
/Tc<source file> compile file as .c     /Tp<source file> compile file as .cpp
/TC compile all files as .c             /TP compile all files as .cpp
/V<string> set version string           /Yc[file] create .PCH file
/Yd put debug info in every .OBJ        /Yl[sym] inject .PCH ref for debug lib
/Yu[file] use .PCH file                 /Y- disable all PCH options
/Zm<n> max memory alloc (% of default)  /FS force to use MSPDBSRV.EXE
/source-charset:<iana-name>|.nnnn set source character set
/execution-charset:<iana-name>|.nnnn set execution character set
/utf-8 set source and execution character set to UTF-8
/validate-charset[-] validate UTF-8 files for only legal characters
/fastfail[-] enable fast-fail mode      /JMC[-] enable native just my code
/presetPadding[-] zero initialize padding for stack based class types
/volatileMetadata[-] generate metadata on volatile memory accesses

                                -LINKING-

/LD Create .DLL                         /LDd Create .DLL debug library
/LN Create a .netmodule                 /F<num> set stack size
/link [linker options and libraries]    /MD link with MSVCRT.LIB
/MT link with LIBCMT.LIB                /MDd link with MSVCRTD.LIB debug lib
/MTd link with LIBCMTD.LIB debug lib    

                              -CODE ANALYSIS-

/analyze[-] Enable native analysis      /analyze:quiet[-] No warning to console
/analyze:log<name> Warnings to file     /analyze:autolog Log to *.pftlog
/analyze:autolog:ext<ext> Log to *.<ext>/analyze:autolog- No log file
/analyze:WX- Warnings not fatal         /analyze:stacksize<num> Max stack frame
/analyze:max_paths<num> Max paths       /analyze:only Analyze, no code gen

                              -DIAGNOSTICS-

/diagnostics:<args,...> controls the format of diagnostic messages:
             classic   - retains prior format
             column[-] - prints column information
             caret[-]  - prints column and the indicated line of source
/Wall enable all warnings               /w   disable all warnings
/W<n> set warning level (default n=1)   
/Wv:xx[.yy[.zzzzz]] disable warnings introduced after version xx.yy.zzzzz
/WX treat warnings as errors            /WL enable one line diagnostics
/wd<n> disable warning n                /we<n> treat warning n as an error
/wo<n> issue warning n once             /w<l><n> set warning level 1-4 for n
/external:I <path>      - location of external headers
/external:env:<var>     - environment variable with locations of external headers
/external:anglebrackets - treat all headers included via <> as external
/external:W<n>          - warning level for external headers
/external:templates[-]  - evaluate warning level across template instantiation chain
/sdl enable additional security features and warnings
-----------
stderr:
Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30154 for x64
Copyright (C) Microsoft Corporation.  All rights reserved.
-----------
Sanity testing C compiler: cl
Is cross compiler: False.
Sanity check compiler command line: cl sanitycheckc.c /Fesanitycheckc.exe /MD /nologo /showIncludes /utf-8 /link
Sanity check compile stdout:
sanitycheckc.c

-----
Sanity check compile stderr:

-----
Running test binary command:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\sanitycheckc.exe
C compiler for the host machine: cl (msvc 19.29.30154 "Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30154 for x64")
C linker for the host machine: link link 14.29.30154.0
-----------
Detecting archiver via: `lib /?` -> 1100
stdout:
Microsoft (R) Library Manager Version 14.29.30154.0
Copyright (C) Microsoft Corporation.  All rights reserved.

usage: LIB [options] [files]

   options:

      /DEF[:filename]
      /ERRORREPORT:{NONE|PROMPT|QUEUE|SEND}
      /EXPORT:symbol
      /EXTRACT:membername
      /INCLUDE:symbol
      /LIBPATH:dir
      /LINKREPRO:dir
      /LINKREPROTARGET:filename
      /LIST[:filename]
      /LTCG
      /MACHINE:{ARM|ARM64|ARM64EC|EBC|X64|X86}
      /NAME:filename
      /NODEFAULTLIB[:library]
      /NOLOGO
      /OUT:filename
      /REMOVE:membername
      /SUBSYSTEM:{BOOT_APPLICATION|CONSOLE|EFI_APPLICATION|
                  EFI_BOOT_SERVICE_DRIVER|EFI_ROM|EFI_RUNTIME_DRIVER|
                  NATIVE|POSIX|WINDOWS|WINDOWSCE}[,#[.##]]
      /VERBOSE
      /WX[:NO]
-----------
-----------
Detecting compiler via: `icl ""` -> [WinError 2] The system cannot find the file specified
-----------
Detecting compiler via: `cl /?` -> 0
stdout:
C/C++ COMPILER OPTIONS


                              -OPTIMIZATION-

/O1 maximum optimizations (favor space) /O2 maximum optimizations (favor speed)
/Ob<n> inline expansion (default n=0)   /Od disable optimizations (default)
/Og enable global optimization          /Oi[-] enable intrinsic functions
/Os favor code space                    /Ot favor code speed
/Ox optimizations (favor speed)         
/favor:<blend|AMD64|INTEL64|ATOM> select processor to optimize for, one of:
    blend - a combination of optimizations for several different x64 processors
    AMD64 - 64-bit AMD processors                                 
    INTEL64 - Intel(R)64 architecture processors                  
    ATOM - Intel(R) Atom(TM) processors                           

                             -CODE GENERATION-

/Gu[-] ensure distinct functions have distinct addresses
/Gw[-] separate global variables for linker
/GF enable read-only string pooling     /Gm[-] enable minimal rebuild
/Gy[-] separate functions for linker    /GS[-] enable security checks
/GR[-] enable C++ RTTI                  /GX[-] enable C++ EH (same as /EHsc)
/guard:cf[-] enable CFG (control flow guard)
/guard:ehcont[-] enable EH continuation metadata (CET)
/EHs enable C++ EH (no SEH exceptions)  /EHa enable C++ EH (w/ SEH exceptions)
/EHc extern "C" defaults to nothrow     
/EHr always generate noexcept runtime termination checks
/fp:<except[-]|fast|precise|strict> choose floating-point model:
    except[-] - consider floating-point exceptions when generating code
    fast - "fast" floating-point model; results are less predictable
    precise - "precise" floating-point model; results are predictable
    strict - "strict" floating-point model (implies /fp:except)
/Qfast_transcendentals generate inline FP intrinsics even with /fp:except
/Qspectre[-] enable mitigations for CVE 2017-5753
/Qpar[-] enable parallel code generation
/Qpar-report:1 auto-parallelizer diagnostic; indicate parallelized loops
/Qpar-report:2 auto-parallelizer diagnostic; indicate loops not parallelized
/Qvec-report:1 auto-vectorizer diagnostic; indicate vectorized loops
/Qvec-report:2 auto-vectorizer diagnostic; indicate loops not vectorized
/GL[-] enable link-time code generation 
/volatile:<iso|ms> choose volatile model:
    iso - Acquire/release semantics not guaranteed on volatile accesses
    ms  - Acquire/release semantics guaranteed on volatile accesses
/GA optimize for Windows Application    /Ge force stack checking for all funcs
/Gs[num] control stack checking calls   /Gh enable _penter function call
/GH enable _pexit function call         /GT generate fiber-safe TLS accesses
/RTC1 Enable fast checks (/RTCsu)       /RTCc Convert to smaller type checks
/RTCs Stack Frame runtime checking      /RTCu Uninitialized local usage checks
/clr[:option] compile for common language runtime, where option is:
    pure : produce IL-only output file (no native executable code)
    safe : produce IL-only verifiable output file
    netcore : produce assemblies targeting .NET Core runtime
    noAssembly : do not produce an assembly
    nostdlib : ignore the system .NET framework directory when searching for assemblies
    nostdimport : do not import any required assemblies implicitly
    initialAppDomain : enable initial AppDomain behavior of Visual C++ 2002
    implicitKeepAlive- : turn off implicit emission of System::GC::KeepAlive(this)
/fsanitize=address Enable address sanitizer codegen
/homeparams Force parameters passed in registers to be written to the stack
/GZ Enable stack checks (/RTCs)         /Gv __vectorcall calling convention
/arch:<AVX|AVX2|AVX512> minimum CPU architecture requirements, one of:
   AVX - enable use of instructions available with AVX-enabled CPUs
   AVX2 - enable use of instructions available with AVX2-enabled CPUs
   AVX512 - enable use of instructions available with AVX-512-enabled CPUs
/QIntel-jcc-erratum enable mitigations for Intel JCC erratum
/Qspectre-load Enable spectre mitigations for all instructions which load memory
/Qspectre-load-cf Enable spectre mitigations for all control-flow instructions which load memory
/fpcvt:<IA|BC> FP to unsigned integer conversion compatibility
   IA - results compatible with VCVTTSD2USI instruction
   BC - results compatible with VS2017 and earlier compiler

                              -OUTPUT FILES-

/Fa[file] name assembly listing file    /FA[scu] configure assembly listing
/Fd[file] name .PDB file                /Fe<file> name executable file
/Fm[file] name map file                 /Fo<file> name object file
/Fp<file> name precompiled header file  /Fr[file] name source browser file
/FR[file] name extended .SBR file       /Fi[file] name preprocessed file
/Fd: <file> name .PDB file              /Fe: <file> name executable file
/Fm: <file> name map file               /Fo: <file> name object file
/Fp: <file> name .PCH file              /FR: <file> name extended .SBR file
/Fi: <file> name preprocessed file      
/Ft<dir> location of the header files generated for #import
/doc[file] process XML documentation comments and optionally name the .xdc file

                              -PREPROCESSOR-

/AI<dir> add to assembly search path    /FU<file> forced using assembly/module 
/C don't strip comments                 /D<name>{=|#}<text> define macro
/E preprocess to stdout                 /EP preprocess to stdout, no #line
/P preprocess to file                   /Fx merge injected code to file
/FI<file> name forced include file      /U<name> remove predefined macro
/u remove all predefined macros         /I<dir> add to include search path
/X ignore "standard places"             
/PH generate #pragma file_hash when preprocessing
/PD print all macro definitions         

                                -LANGUAGE-

/std:<c++14|c++17|c++latest> C++ standard version
    c++14 - ISO/IEC 14882:2014 (default)
    c++17 - ISO/IEC 14882:2017
    c++latest - latest draft standard (feature set subject to change)
/permissive[-] enable some nonconforming code to compile (feature set subject to change) (on by default)
/Ze enable extensions (default)         /Za disable extensions
/ZW enable WinRT language extensions    /Zs syntax check only
/Zc:arg1[,arg2] C++ language conformance, where arguments can be:
  forScope[-]           enforce Standard C++ for scoping rules
  wchar_t[-]            wchar_t is the native type, not a typedef
  auto[-]               enforce the new Standard C++ meaning for auto
  trigraphs[-]          enable trigraphs (off by default)
  rvalueCast[-]         enforce Standard C++ explicit type conversion rules
  strictStrings[-]      disable string-literal to [char|wchar_t]*
                        conversion (off by default)
  implicitNoexcept[-]   enable implicit noexcept on required functions
  threadSafeInit[-]     enable thread-safe local static initialization
  inline[-]             remove unreferenced function or data if it is
                        COMDAT or has internal linkage only (off by default)
  sizedDealloc[-]       enable C++14 global sized deallocation
                        functions (on by default)
  throwingNew[-]        assume operator new throws on failure (off by default)
  referenceBinding[-]   a temporary will not bind to an non-const
                        lvalue reference (off by default)
  twoPhase-             disable two-phase name lookup
  ternary[-]            enforce C++11 rules for conditional operator (off by default)
  noexceptTypes[-]      enforce C++17 noexcept rules (on by default in C++17 or later)
  alignedNew[-]         enable C++17 alignment of dynamically allocated objects (on by default)
  hiddenFriend[-]       enforce Standard C++ hidden friend rules (implied by /permissive-)
  externC[-]            enforce Standard C++ rules for 'extern "C"' functions (implied by /permissive-)
  lambda[-]             better lambda support by using the newer lambda processor (off by default)
  tlsGuards[-]          generate runtime checks for TLS variable initialization (on by default)
  zeroSizeArrayNew[-]   call member new/delete for 0-size arrays of objects (on by default)
/await enable resumable functions extension
/await:strict enable standard C++20 coroutine support with earlier language versions
/constexpr:depth<N>     recursion depth limit for constexpr evaluation (default: 512)
/constexpr:backtrace<N> show N constexpr evaluations in diagnostics (default: 10)
/constexpr:steps<N>     terminate constexpr evaluation after N steps (default: 100000)
/Zi enable debugging information        /Z7 enable old-style debug info
/Zo[-] generate richer debugging information for optimized code (on by default)
/ZH:[MD5|SHA1|SHA_256] hash algorithm for calculation of file checksum in debug info (default: MD5)
/Zp[n] pack structs on n-byte boundary  /Zl omit default library name in .OBJ
/vd{0|1|2} disable/enable vtordisp      /vm<x> type of pointers to members
/std:<c11|c17> C standard version
    c11 - ISO/IEC 9899:2011
    c17 - ISO/IEC 9899:2018
/ZI enable Edit and Continue debug info 
/openmp enable OpenMP 2.0 language extensions
/openmp:experimental enable OpenMP 2.0 language extensions plus select OpenMP 3.0+ language extensions
/openmp:llvm OpenMP language extensions using LLVM runtime

                              -MISCELLANEOUS-

@<file> options response file           /?, /help print this help message
/bigobj generate extended object format /c compile only, no link
/errorReport:option deprecated. Report internal compiler errors to Microsoft
    none - do not send report                
    prompt - prompt to immediately send report
    queue - at next admin logon, prompt to send report (default)
    send - send report automatically         
/FC use full pathnames in diagnostics   /H<num> max external name length
/J default char type is unsigned        
/MP[n] use up to 'n' processes for compilation
/nologo suppress copyright message      /showIncludes show include file names
/Tc<source file> compile file as .c     /Tp<source file> compile file as .cpp
/TC compile all files as .c             /TP compile all files as .cpp
/V<string> set version string           /Yc[file] create .PCH file
/Yd put debug info in every .OBJ        /Yl[sym] inject .PCH ref for debug lib
/Yu[file] use .PCH file                 /Y- disable all PCH options
/Zm<n> max memory alloc (% of default)  /FS force to use MSPDBSRV.EXE
/source-charset:<iana-name>|.nnnn set source character set
/execution-charset:<iana-name>|.nnnn set execution character set
/utf-8 set source and execution character set to UTF-8
/validate-charset[-] validate UTF-8 files for only legal characters
/fastfail[-] enable fast-fail mode      /JMC[-] enable native just my code
/presetPadding[-] zero initialize padding for stack based class types
/volatileMetadata[-] generate metadata on volatile memory accesses

                                -LINKING-

/LD Create .DLL                         /LDd Create .DLL debug library
/LN Create a .netmodule                 /F<num> set stack size
/link [linker options and libraries]    /MD link with MSVCRT.LIB
/MT link with LIBCMT.LIB                /MDd link with MSVCRTD.LIB debug lib
/MTd link with LIBCMTD.LIB debug lib    

                              -CODE ANALYSIS-

/analyze[-] Enable native analysis      /analyze:quiet[-] No warning to console
/analyze:log<name> Warnings to file     /analyze:autolog Log to *.pftlog
/analyze:autolog:ext<ext> Log to *.<ext>/analyze:autolog- No log file
/analyze:WX- Warnings not fatal         /analyze:stacksize<num> Max stack frame
/analyze:max_paths<num> Max paths       /analyze:only Analyze, no code gen

                              -DIAGNOSTICS-

/diagnostics:<args,...> controls the format of diagnostic messages:
             classic   - retains prior format
             column[-] - prints column information
             caret[-]  - prints column and the indicated line of source
/Wall enable all warnings               /w   disable all warnings
/W<n> set warning level (default n=1)   
/Wv:xx[.yy[.zzzzz]] disable warnings introduced after version xx.yy.zzzzz
/WX treat warnings as errors            /WL enable one line diagnostics
/wd<n> disable warning n                /we<n> treat warning n as an error
/wo<n> issue warning n once             /w<l><n> set warning level 1-4 for n
/external:I <path>      - location of external headers
/external:env:<var>     - environment variable with locations of external headers
/external:anglebrackets - treat all headers included via <> as external
/external:W<n>          - warning level for external headers
/external:templates[-]  - evaluate warning level across template instantiation chain
/sdl enable additional security features and warnings
-----------
stderr:
Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30154 for x64
Copyright (C) Microsoft Corporation.  All rights reserved.
-----------
Sanity testing C compiler: cl
Is cross compiler: False.
Sanity check compiler command line: cl sanitycheckc.c /Fesanitycheckc.exe /MD /nologo /showIncludes /utf-8 /link
Sanity check compile stdout:
sanitycheckc.c

-----
Sanity check compile stderr:

-----
Running test binary command:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\sanitycheckc.exe
C compiler for the build machine: cl (msvc 19.29.30154 "Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30154 for x64")
C linker for the build machine: link link 14.29.30154.0
-----------
Detecting archiver via: `lib /?` -> 1100
stdout:
Microsoft (R) Library Manager Version 14.29.30154.0
Copyright (C) Microsoft Corporation.  All rights reserved.

usage: LIB [options] [files]

   options:

      /DEF[:filename]
      /ERRORREPORT:{NONE|PROMPT|QUEUE|SEND}
      /EXPORT:symbol
      /EXTRACT:membername
      /INCLUDE:symbol
      /LIBPATH:dir
      /LINKREPRO:dir
      /LINKREPROTARGET:filename
      /LIST[:filename]
      /LTCG
      /MACHINE:{ARM|ARM64|ARM64EC|EBC|X64|X86}
      /NAME:filename
      /NODEFAULTLIB[:library]
      /NOLOGO
      /OUT:filename
      /REMOVE:membername
      /SUBSYSTEM:{BOOT_APPLICATION|CONSOLE|EFI_APPLICATION|
                  EFI_BOOT_SERVICE_DRIVER|EFI_ROM|EFI_RUNTIME_DRIVER|
                  NATIVE|POSIX|WINDOWS|WINDOWSCE}[,#[.##]]
      /VERBOSE
      /WX[:NO]
-----------
Build machine cpu family: x86_64
Build machine cpu: x86_64
Host machine cpu family: x86_64
Host machine cpu: x86_64
Target machine cpu family: x86_64
Target machine cpu: x86_64
Run-time dependency threads found: YES
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmputhrfuv_
Code:
int main(void) { return 0; }

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmputhrfuv_\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmputhrfuv_\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- ws2_32.lib /link /release /nologo` -> 0
stdout:
testfile.c
-----------
Library ws2_32 found: YES
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpiunowdcq
Code:
int main(void) { return 0; }

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpiunowdcq\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpiunowdcq\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- secur32.lib /link /release /nologo` -> 0
stdout:
testfile.c
-----------
Library secur32 found: YES
Program perl found: YES (C:\Strawberry\perl\bin\perl.EXE)
Program python3 found: YES (C:\Program Files\Python38\python3.EXE)
Running command: C:\GnuWin32\bin\flex.EXE --version
--- stdout ---
flex 2.5.35

--- stderr ---


Program flex found: YES 2.5.35 2.5.35 (C:\GnuWin32\bin\flex.EXE)
Running command: C:\GnuWin32\bin\bison.EXE --version
--- stdout ---
bison (GNU Bison) 2.4.1
Written by Robert Corbett and Richard Stallman.

Copyright (C) 2008 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

--- stderr ---


Program bison found: YES 2.4.1 2.4.1 (C:\GnuWin32\bin\bison.EXE)
Program sed found: YES (C:\GnuWin32\bin\sed.EXE)
Program prove found: YES (C:\Strawberry\perl\bin\prove.BAT)
Program tar found: YES (C:\Windows\system32\tar.EXE)
Program gzip found: NO
Program lz4 found: NO
Program openssl found: NO
Program zstd found: NO
Program dtrace skipped: feature dtrace disabled
Program config/missing found: YES (sh D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\config/missing)
Program cp found: NO
Program xmllint found: NO
Program xsltproc found: NO
Running command: C:\GnuWin32\bin\bison.EXE --version
--- stdout ---
bison (GNU Bison) 2.4.1
Written by Robert Corbett and Richard Stallman.

Copyright (C) 2008 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

--- stderr ---


Running command: C:\GnuWin32\bin\flex.EXE --version
--- stdout ---
flex 2.5.35

--- stderr ---


Program wget found: NO
Running command: "C:\Program Files\Python38\python3.EXE" src/tools/find_meson
--- stdout ---
meson
C:\Python\Python310\python.exe
D:\Jenkins\workspace\workspace\Postgres-9.4\meson-1.6.0\meson.py
--- stderr ---


Program C:\Python\Python310\python.exe found: YES (C:\Python\Python310\python.exe)
Check usable header "bsd_auth.h" skipped: feature bsd_auth disabled
Check usable header "dns_sd.h" skipped: feature bonjour disabled
Program fop found: NO
Compiler for language cpp skipped: feature llvm disabled
Pkg-config binary missing from cross or native file, or env var undefined.
Trying a default Pkg-config fallback at pkg-config
Found pkg-config 'C:\\Strawberry\\perl\\bin\\pkg-config.BAT' but it is Strawberry Perl and thus broken. Ignoring...
Found pkg-config: NO
Pkg-config for machine host machine not found. Giving up.
CMake binary for host machine is not cached
CMake binary missing from cross or native file, or env var undefined.
Trying a default CMake fallback at cmake
Found CMake: C:\Program Files\CMake\bin\cmake.EXE (3.29.0)
Extracting basic cmake information
CMake Toolchain: Calling CMake once to generate the compiler state
Calling CMake (['C:\\Program Files\\CMake\\bin\\cmake.EXE']) in D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\__CMake_compiler_info__ with:
  - "--trace-expand"
  - "--trace-format=json-v1"
  - "--no-warn-unused-cli"
  - "--trace-redirect=cmake_trace.txt"
  - "-G"
  - "Ninja"
  - "-DCMAKE_TOOLCHAIN_FILE=D:/Jenkins/workspace/workspace/Postgres-9.4/PostgreSQL/postgres-Source/buildPostgreSQL_wx6_17.0/postgresql-17.0/build/meson-private/__CMake_compiler_info__/CMakeMesonTempToolchainFile.cmake"
  - "."
CMake trace warning: add_executable() non imported executables are not supported
CMake TRACE: D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\__CMake_compiler_info__\CMakeFiles\CMakeScratch\TryCompile-fhq9wr\CMakeLists.txt:23 add_executable(['cmTC_ebead'])
CMake trace warning: target_link_libraries() TARGET cmTC_ebead not found
CMake TRACE: D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\__CMake_compiler_info__\CMakeFiles\CMakeScratch\TryCompile-fhq9wr\CMakeLists.txt:29 target_link_libraries(['cmTC_ebead', ''])
Try CMake generator: auto
Calling CMake (['C:\\Program Files\\CMake\\bin\\cmake.EXE']) in D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\cmake_readline with:
  - "--trace-expand"
  - "--trace-format=json-v1"
  - "--no-warn-unused-cli"
  - "--trace-redirect=cmake_trace.txt"
  - "-DCMAKE_TOOLCHAIN_FILE=D:/Jenkins/workspace/workspace/Postgres-9.4/PostgreSQL/postgres-Source/buildPostgreSQL_wx6_17.0/postgresql-17.0/build/meson-private/cmake_readline/CMakeMesonToolchainFile.cmake"
  - "."
  -- Module search paths:    ['C:/Program Files', 'C:/Program Files (x86)', 'C:/Program Files/CMake']
  -- CMake root:             C:/Program Files/CMake/share/cmake-3.29
  -- CMake architectures:    []
  -- CMake lib search paths: ['lib', 'lib32', 'lib64', 'libx32', 'share', '']
Preliminary CMake check failed. Aborting.
Run-time dependency readline found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpbvjlkshl
Code:

        #include<stddef.h>
        #include<stdio.h>
        int main(void) {
            printf("%ld\n", (long)(sizeof(void *)));
            return 0;
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpbvjlkshl\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpbvjlkshl\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi-` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stddef.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stdio.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstdio.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_stdio_config.h
-----------
Program stdout:

8

Program stderr:


Library readline found: NO
Pkg-config for machine host machine not found. Giving up.
CMake binary for host machine is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libedit found: NO (tried pkgconfig and cmake)
Library libedit found: NO
Dependency libselinux skipped: feature selinux disabled
Dependency libsystemd skipped: feature systemd disabled
Pkg-config for machine host machine not found. Giving up.
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdf1slavx
Code:

        #ifdef __has_include
         #if !__has_include("openssl/ssl.h")
          #error "Header 'openssl/ssl.h' could not be found"
         #endif
        #else
         #include <openssl/ssl.h>
        #endif
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdf1slavx\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdf1slavx\testfile.c(4): fatal error C1189: #error:  "Header 'openssl/ssl.h' could not be found"
-----------
CMake binary for host machine is cached.

Determining dependency 'OpenSSL' with CMake executable 'C:\\Program Files\\CMake\\bin\\cmake.EXE'
Try CMake generator: auto
Calling CMake (['C:\\Program Files\\CMake\\bin\\cmake.EXE']) in D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\cmake_OpenSSL with:
  - "-DNAME=OpenSSL"
  - "-DARCHS="
  - "-DVERSION="
  - "-DCOMPS="
  - "-DSTATIC=OFF"
  - "--trace-expand"
  - "--trace-format=json-v1"
  - "--no-warn-unused-cli"
  - "--trace-redirect=cmake_trace.txt"
  - "-DCMAKE_TOOLCHAIN_FILE=D:/Jenkins/workspace/workspace/Postgres-9.4/PostgreSQL/postgres-Source/buildPostgreSQL_wx6_17.0/postgresql-17.0/build/meson-private/cmake_OpenSSL/CMakeMesonToolchainFile.cmake"
  - "."
Run-time dependency openssl found: NO (tried pkgconfig, system and cmake)
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdessvcno
Code:

        #ifdef __has_include
         #if !__has_include("openssl/ssl.h")
          #error "Header 'openssl/ssl.h' could not be found"
         #endif
        #else
         #include <openssl/ssl.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include\openssl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdessvcno\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdessvcno\testfile.c(4): fatal error C1189: #error:  "Header 'openssl/ssl.h' could not be found"
-----------

meson.build:1336:17: ERROR: C header 'openssl/ssl.h' not found

^ permalink  raw  reply  [nested|flat] 6+ messages in thread

* Re: FW: Building Postgres 17.0 with meson
@ 2024-11-13 15:51  Nazir Bilal Yavuz <[email protected]>
  parent: Mark Hill <[email protected]>
  0 siblings, 1 reply; 6+ messages in thread

From: Nazir Bilal Yavuz @ 2024-11-13 15:51 UTC (permalink / raw)
  To: Mark Hill <[email protected]>; +Cc: Robert Haas <[email protected]>; [email protected] <[email protected]>

Hi,

On Wed, 13 Nov 2024 at 18:17, Mark Hill <[email protected]> wrote:
>
> The error above says meson can't find openssl/ssl.h but it's there:
> D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0>dir D:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include\openssl\ssl.h
>  Volume in drive D is Data
>  Volume Serial Number is 58B5-7193
>
>  Directory of D:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include\openssl
>
> 08/12/2024  04:22 PM           127,595 ssl.h
>                1 File(s)        127,595 bytes
>                0 Dir(s)  210,974,670,848 bytes free
>
> I don't know why meson cannot find the OpenSSL installation I've specified via the options:
> extra_lib_dirs
> extra_include_dirs

I think that the problem is that you are setting '.../include/openssl'
as an include_dir not '.../include'. Could you please try:

set openssl_include_dir=D:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include

-- 
Regards,
Nazir Bilal Yavuz
Microsoft






^ permalink  raw  reply  [nested|flat] 6+ messages in thread

* RE: FW: Building Postgres 17.0 with meson
@ 2024-11-14 19:55  Mark Hill <[email protected]>
  parent: Nazir Bilal Yavuz <[email protected]>
  0 siblings, 1 reply; 6+ messages in thread

From: Mark Hill @ 2024-11-14 19:55 UTC (permalink / raw)
  To: Nazir Bilal Yavuz <[email protected]>; +Cc: Robert Haas <[email protected]>; [email protected] <[email protected]>

On Wed, 13 Nov 2024 at 10:53AM(EST), Nazir Bilal Yavuz <[email protected] > wrote:

> I think that the problem is that you are setting '.../include/openssl'
> as an include_dir not '.../include'. Could you please try:

> set openssl_include_dir=D:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include

Hi Nazir,

Thank you, that worked!   I had actually tried that with openssl, icu, and zlib all enabled but when either icu or zlib failed it didn't get
as far as openssl so I didn't know that it would work until I tried with just openssl by itself.  I have the setup working now but ninja
fails when I do the setup with openssl, zlib, and icu.   If I setup just openssl and zlib, the build works.

With openssl, zlib, and icu enabled in the setup, the ninja build fails trying to link src/backend/postgres.exe.  There are 40 unresolved
external symbol errors (see below.)  I checked a few of the symbols and they appear in the Postgres source without the "_72" text on
the end.   Is it getting "72" from the version of icu4c I'm using, 72.1?   Anyone know how to prevent these errors?

Thanks, Mark


[1206/2170] Linking target src/backend/postgres.exe
FAILED: src/backend/postgres.exe
"link" @src/backend/postgres.exe.rsp
   Creating library src\backend\postgres.lib
commands_collationcmds.c.obj : error LNK2019: unresolved external symbol uloc_getDisplayName_72 referenced in function get_icu_locale_comment
commands_collationcmds.c.obj : error LNK2019: unresolved external symbol uloc_getAvailable_72 referenced in function pg_import_system_collations
utils_adt_pg_locale.c.obj : error LNK2001: unresolved external symbol uloc_getAvailable_72
commands_collationcmds.c.obj : error LNK2019: unresolved external symbol uloc_countAvailable_72 referenced in function pg_import_system_collations
utils_adt_pg_locale.c.obj : error LNK2001: unresolved external symbol uloc_countAvailable_72
regex_regcomp.c.obj : error LNK2019: unresolved external symbol u_islower_72 referenced in function pg_wc_islower
regex_regcomp.c.obj : error LNK2019: unresolved external symbol u_isupper_72 referenced in function pg_wc_isupper
regex_regcomp.c.obj : error LNK2019: unresolved external symbol u_isdigit_72 referenced in function pg_wc_isdigit
regex_regcomp.c.obj : error LNK2019: unresolved external symbol u_isalpha_72 referenced in function pg_wc_isalpha
regex_regcomp.c.obj : error LNK2019: unresolved external symbol u_isalnum_72 referenced in function pg_wc_isalnum
regex_regcomp.c.obj : error LNK2019: unresolved external symbol u_ispunct_72 referenced in function pg_wc_ispunct
regex_regcomp.c.obj : error LNK2019: unresolved external symbol u_isgraph_72 referenced in function pg_wc_isgraph
regex_regcomp.c.obj : error LNK2019: unresolved external symbol u_isspace_72 referenced in function pg_wc_isspace
regex_regcomp.c.obj : error LNK2019: unresolved external symbol u_isprint_72 referenced in function pg_wc_isprint
regex_regcomp.c.obj : error LNK2019: unresolved external symbol u_tolower_72 referenced in function casecmp
regex_regcomp.c.obj : error LNK2019: unresolved external symbol u_toupper_72 referenced in function pg_wc_toupper
utils_adt_formatting.c.obj : error LNK2019: unresolved external symbol u_errorName_72 referenced in function icu_convert_case
utils_adt_pg_locale.c.obj : error LNK2001: unresolved external symbol u_errorName_72
utils_adt_formatting.c.obj : error LNK2019: unresolved external symbol u_strToUpper_72 referenced in function str_toupper
utils_adt_formatting.c.obj : error LNK2019: unresolved external symbol u_strToLower_72 referenced in function str_tolower
utils_adt_formatting.c.obj : error LNK2019: unresolved external symbol u_strToTitle_72 referenced in function u_strToTitle_default_BI
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol u_versionToString_72 referenced in function get_collation_actual_version
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol uiter_setString_72 referenced in function pg_strnxfrm_prefix_icu
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol uiter_setUTF8_72 referenced in function pg_strnxfrm_prefix_icu
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol uloc_getLanguage_72 referenced in function icu_validate_locale
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol uloc_canonicalize_72 referenced in function icu_set_collation_attributes
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol uloc_toLanguageTag_72 referenced in function icu_language_tag
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol ucol_open_72 referenced in function pg_ucol_open
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol ucol_openRules_72 referenced in function make_icu_collator
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol ucol_close_72 referenced in function get_collation_actual_version
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol ucol_strcoll_72 referenced in function pg_strncoll_icu
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol ucol_strcollUTF8_72 referenced in function pg_strncoll_icu
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol ucol_getRules_72 referenced in function make_icu_collator
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol ucol_getSortKey_72 referenced in function pg_strnxfrm_icu
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol ucol_nextSortKeyPart_72 referenced in function pg_strnxfrm_prefix_icu
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol ucol_getVersion_72 referenced in function get_collation_actual_version
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol ucol_setAttribute_72 referenced in function icu_set_collation_attributes
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol ucnv_open_72 referenced in function init_icu_converter
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol ucnv_fromUChars_72 referenced in function icu_from_uchar
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol ucnv_toUChars_72 referenced in function uchar_convert
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol u_strlen_72 referenced in function make_icu_collator
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol u_strcat_72 referenced in function make_icu_collator
utils_adt_pg_locale.c.obj : error LNK2019: unresolved external symbol u_strcpy_72 referenced in function make_icu_collator
src\backend\postgres.exe : fatal error LNK1120: 40 unresolved externals
[1211/2170] Compiling C object src/backend/snowball/dict_snowball.dll.p/libstemmer_stem_UTF_8_hindi.c.obj
ninja: build stopped: subcommand failed.


^ permalink  raw  reply  [nested|flat] 6+ messages in thread

* RE: FW: Building Postgres 17.0 with meson
@ 2024-11-15 13:01  Mark Hill <[email protected]>
  parent: Mark Hill <[email protected]>
  0 siblings, 0 replies; 6+ messages in thread

From: Mark Hill @ 2024-11-15 13:01 UTC (permalink / raw)
  To: Nazir Bilal Yavuz <[email protected]>; +Cc: Robert Haas <[email protected]>; [email protected] <[email protected]>

On Wed, 14 Nov 2024 at 2:55PM(EST), Mark Hill <[email protected] > wrote:

> With openssl, zlib, and icu enabled in the setup, the ninja build fails trying to link src/backend/postgres.exe.
> There are 40 unresolved external symbol errors (see below.)  I checked a few of the symbols and they appear
> in the Postgres source without the "_72" text on the end.   Is it getting "72" from the version of icu4c I'm using,
> 72.1?   Anyone know how to prevent these errors?

I'm including the meson-log.txt file for the build I reported in my previous post for more information.



Build started at 2024-11-13T16:52:54.834494
Main binary: C:\Python\Python310\python.exe
Build Options: -Dssl=openssl -Dzlib=enabled -Dicu=enabled '-Dextra_lib_dirs=D:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\lib,D:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6,D:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\lib64' '-Dextra_include_dirs=D:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include,D:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6,D:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include' -Dnls=disabled -Dplperl=disabled -Dplpython=disabled -Dpltcl=disabled -Dllvm=disabled -Dlz4=disabled -Dzstd=disabled -Dgssapi=disabled -Dldap=disabled -Dpam=disabled -Dbsd_auth=disabled -Dsystemd=disabled -Dbonjour=disabled -Duuid=none -Dlibxml=disabled -Dlibxslt=disabled -Dselinux=disabled '-Dprefix=D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6' -Dbuildtype=release
Python system: Windows
The Meson build system
Version: 1.6.0
Source dir: D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0
Build dir: D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build
Build type: native build
Project name: postgresql
Project version: 17.0
-----------
Detecting compiler via: `icl ""` -> [WinError 2] The system cannot find the file specified
-----------
Detecting compiler via: `cl /?` -> 0
stdout:
C/C++ COMPILER OPTIONS


                              -OPTIMIZATION-

/O1 maximum optimizations (favor space) /O2 maximum optimizations (favor speed)
/Ob<n> inline expansion (default n=0)   /Od disable optimizations (default)
/Og enable global optimization          /Oi[-] enable intrinsic functions
/Os favor code space                    /Ot favor code speed
/Ox optimizations (favor speed)         
/favor:<blend|AMD64|INTEL64|ATOM> select processor to optimize for, one of:
    blend - a combination of optimizations for several different x64 processors
    AMD64 - 64-bit AMD processors                                 
    INTEL64 - Intel(R)64 architecture processors                  
    ATOM - Intel(R) Atom(TM) processors                           

                             -CODE GENERATION-

/Gu[-] ensure distinct functions have distinct addresses
/Gw[-] separate global variables for linker
/GF enable read-only string pooling     /Gm[-] enable minimal rebuild
/Gy[-] separate functions for linker    /GS[-] enable security checks
/GR[-] enable C++ RTTI                  /GX[-] enable C++ EH (same as /EHsc)
/guard:cf[-] enable CFG (control flow guard)
/guard:ehcont[-] enable EH continuation metadata (CET)
/EHs enable C++ EH (no SEH exceptions)  /EHa enable C++ EH (w/ SEH exceptions)
/EHc extern "C" defaults to nothrow     
/EHr always generate noexcept runtime termination checks
/fp:<except[-]|fast|precise|strict> choose floating-point model:
    except[-] - consider floating-point exceptions when generating code
    fast - "fast" floating-point model; results are less predictable
    precise - "precise" floating-point model; results are predictable
    strict - "strict" floating-point model (implies /fp:except)
/Qfast_transcendentals generate inline FP intrinsics even with /fp:except
/Qspectre[-] enable mitigations for CVE 2017-5753
/Qpar[-] enable parallel code generation
/Qpar-report:1 auto-parallelizer diagnostic; indicate parallelized loops
/Qpar-report:2 auto-parallelizer diagnostic; indicate loops not parallelized
/Qvec-report:1 auto-vectorizer diagnostic; indicate vectorized loops
/Qvec-report:2 auto-vectorizer diagnostic; indicate loops not vectorized
/GL[-] enable link-time code generation 
/volatile:<iso|ms> choose volatile model:
    iso - Acquire/release semantics not guaranteed on volatile accesses
    ms  - Acquire/release semantics guaranteed on volatile accesses
/GA optimize for Windows Application    /Ge force stack checking for all funcs
/Gs[num] control stack checking calls   /Gh enable _penter function call
/GH enable _pexit function call         /GT generate fiber-safe TLS accesses
/RTC1 Enable fast checks (/RTCsu)       /RTCc Convert to smaller type checks
/RTCs Stack Frame runtime checking      /RTCu Uninitialized local usage checks
/clr[:option] compile for common language runtime, where option is:
    pure : produce IL-only output file (no native executable code)
    safe : produce IL-only verifiable output file
    netcore : produce assemblies targeting .NET Core runtime
    noAssembly : do not produce an assembly
    nostdlib : ignore the system .NET framework directory when searching for assemblies
    nostdimport : do not import any required assemblies implicitly
    initialAppDomain : enable initial AppDomain behavior of Visual C++ 2002
    implicitKeepAlive- : turn off implicit emission of System::GC::KeepAlive(this)
/fsanitize=address Enable address sanitizer codegen
/homeparams Force parameters passed in registers to be written to the stack
/GZ Enable stack checks (/RTCs)         /Gv __vectorcall calling convention
/arch:<AVX|AVX2|AVX512> minimum CPU architecture requirements, one of:
   AVX - enable use of instructions available with AVX-enabled CPUs
   AVX2 - enable use of instructions available with AVX2-enabled CPUs
   AVX512 - enable use of instructions available with AVX-512-enabled CPUs
/QIntel-jcc-erratum enable mitigations for Intel JCC erratum
/Qspectre-load Enable spectre mitigations for all instructions which load memory
/Qspectre-load-cf Enable spectre mitigations for all control-flow instructions which load memory
/fpcvt:<IA|BC> FP to unsigned integer conversion compatibility
   IA - results compatible with VCVTTSD2USI instruction
   BC - results compatible with VS2017 and earlier compiler

                              -OUTPUT FILES-

/Fa[file] name assembly listing file    /FA[scu] configure assembly listing
/Fd[file] name .PDB file                /Fe<file> name executable file
/Fm[file] name map file                 /Fo<file> name object file
/Fp<file> name precompiled header file  /Fr[file] name source browser file
/FR[file] name extended .SBR file       /Fi[file] name preprocessed file
/Fd: <file> name .PDB file              /Fe: <file> name executable file
/Fm: <file> name map file               /Fo: <file> name object file
/Fp: <file> name .PCH file              /FR: <file> name extended .SBR file
/Fi: <file> name preprocessed file      
/Ft<dir> location of the header files generated for #import
/doc[file] process XML documentation comments and optionally name the .xdc file

                              -PREPROCESSOR-

/AI<dir> add to assembly search path    /FU<file> forced using assembly/module 
/C don't strip comments                 /D<name>{=|#}<text> define macro
/E preprocess to stdout                 /EP preprocess to stdout, no #line
/P preprocess to file                   /Fx merge injected code to file
/FI<file> name forced include file      /U<name> remove predefined macro
/u remove all predefined macros         /I<dir> add to include search path
/X ignore "standard places"             
/PH generate #pragma file_hash when preprocessing
/PD print all macro definitions         

                                -LANGUAGE-

/std:<c++14|c++17|c++latest> C++ standard version
    c++14 - ISO/IEC 14882:2014 (default)
    c++17 - ISO/IEC 14882:2017
    c++latest - latest draft standard (feature set subject to change)
/permissive[-] enable some nonconforming code to compile (feature set subject to change) (on by default)
/Ze enable extensions (default)         /Za disable extensions
/ZW enable WinRT language extensions    /Zs syntax check only
/Zc:arg1[,arg2] C++ language conformance, where arguments can be:
  forScope[-]           enforce Standard C++ for scoping rules
  wchar_t[-]            wchar_t is the native type, not a typedef
  auto[-]               enforce the new Standard C++ meaning for auto
  trigraphs[-]          enable trigraphs (off by default)
  rvalueCast[-]         enforce Standard C++ explicit type conversion rules
  strictStrings[-]      disable string-literal to [char|wchar_t]*
                        conversion (off by default)
  implicitNoexcept[-]   enable implicit noexcept on required functions
  threadSafeInit[-]     enable thread-safe local static initialization
  inline[-]             remove unreferenced function or data if it is
                        COMDAT or has internal linkage only (off by default)
  sizedDealloc[-]       enable C++14 global sized deallocation
                        functions (on by default)
  throwingNew[-]        assume operator new throws on failure (off by default)
  referenceBinding[-]   a temporary will not bind to an non-const
                        lvalue reference (off by default)
  twoPhase-             disable two-phase name lookup
  ternary[-]            enforce C++11 rules for conditional operator (off by default)
  noexceptTypes[-]      enforce C++17 noexcept rules (on by default in C++17 or later)
  alignedNew[-]         enable C++17 alignment of dynamically allocated objects (on by default)
  hiddenFriend[-]       enforce Standard C++ hidden friend rules (implied by /permissive-)
  externC[-]            enforce Standard C++ rules for 'extern "C"' functions (implied by /permissive-)
  lambda[-]             better lambda support by using the newer lambda processor (off by default)
  tlsGuards[-]          generate runtime checks for TLS variable initialization (on by default)
  zeroSizeArrayNew[-]   call member new/delete for 0-size arrays of objects (on by default)
/await enable resumable functions extension
/await:strict enable standard C++20 coroutine support with earlier language versions
/constexpr:depth<N>     recursion depth limit for constexpr evaluation (default: 512)
/constexpr:backtrace<N> show N constexpr evaluations in diagnostics (default: 10)
/constexpr:steps<N>     terminate constexpr evaluation after N steps (default: 100000)
/Zi enable debugging information        /Z7 enable old-style debug info
/Zo[-] generate richer debugging information for optimized code (on by default)
/ZH:[MD5|SHA1|SHA_256] hash algorithm for calculation of file checksum in debug info (default: MD5)
/Zp[n] pack structs on n-byte boundary  /Zl omit default library name in .OBJ
/vd{0|1|2} disable/enable vtordisp      /vm<x> type of pointers to members
/std:<c11|c17> C standard version
    c11 - ISO/IEC 9899:2011
    c17 - ISO/IEC 9899:2018
/ZI enable Edit and Continue debug info 
/openmp enable OpenMP 2.0 language extensions
/openmp:experimental enable OpenMP 2.0 language extensions plus select OpenMP 3.0+ language extensions
/openmp:llvm OpenMP language extensions using LLVM runtime

                              -MISCELLANEOUS-

@<file> options response file           /?, /help print this help message
/bigobj generate extended object format /c compile only, no link
/errorReport:option deprecated. Report internal compiler errors to Microsoft
    none - do not send report                
    prompt - prompt to immediately send report
    queue - at next admin logon, prompt to send report (default)
    send - send report automatically         
/FC use full pathnames in diagnostics   /H<num> max external name length
/J default char type is unsigned        
/MP[n] use up to 'n' processes for compilation
/nologo suppress copyright message      /showIncludes show include file names
/Tc<source file> compile file as .c     /Tp<source file> compile file as .cpp
/TC compile all files as .c             /TP compile all files as .cpp
/V<string> set version string           /Yc[file] create .PCH file
/Yd put debug info in every .OBJ        /Yl[sym] inject .PCH ref for debug lib
/Yu[file] use .PCH file                 /Y- disable all PCH options
/Zm<n> max memory alloc (% of default)  /FS force to use MSPDBSRV.EXE
/source-charset:<iana-name>|.nnnn set source character set
/execution-charset:<iana-name>|.nnnn set execution character set
/utf-8 set source and execution character set to UTF-8
/validate-charset[-] validate UTF-8 files for only legal characters
/fastfail[-] enable fast-fail mode      /JMC[-] enable native just my code
/presetPadding[-] zero initialize padding for stack based class types
/volatileMetadata[-] generate metadata on volatile memory accesses

                                -LINKING-

/LD Create .DLL                         /LDd Create .DLL debug library
/LN Create a .netmodule                 /F<num> set stack size
/link [linker options and libraries]    /MD link with MSVCRT.LIB
/MT link with LIBCMT.LIB                /MDd link with MSVCRTD.LIB debug lib
/MTd link with LIBCMTD.LIB debug lib    

                              -CODE ANALYSIS-

/analyze[-] Enable native analysis      /analyze:quiet[-] No warning to console
/analyze:log<name> Warnings to file     /analyze:autolog Log to *.pftlog
/analyze:autolog:ext<ext> Log to *.<ext>/analyze:autolog- No log file
/analyze:WX- Warnings not fatal         /analyze:stacksize<num> Max stack frame
/analyze:max_paths<num> Max paths       /analyze:only Analyze, no code gen

                              -DIAGNOSTICS-

/diagnostics:<args,...> controls the format of diagnostic messages:
             classic   - retains prior format
             column[-] - prints column information
             caret[-]  - prints column and the indicated line of source
/Wall enable all warnings               /w   disable all warnings
/W<n> set warning level (default n=1)   
/Wv:xx[.yy[.zzzzz]] disable warnings introduced after version xx.yy.zzzzz
/WX treat warnings as errors            /WL enable one line diagnostics
/wd<n> disable warning n                /we<n> treat warning n as an error
/wo<n> issue warning n once             /w<l><n> set warning level 1-4 for n
/external:I <path>      - location of external headers
/external:env:<var>     - environment variable with locations of external headers
/external:anglebrackets - treat all headers included via <> as external
/external:W<n>          - warning level for external headers
/external:templates[-]  - evaluate warning level across template instantiation chain
/sdl enable additional security features and warnings
-----------
stderr:
Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30154 for x64
Copyright (C) Microsoft Corporation.  All rights reserved.
-----------
Sanity testing C compiler: cl
Is cross compiler: False.
Sanity check compiler command line: cl sanitycheckc.c /Fesanitycheckc.exe /MD /nologo /showIncludes /utf-8 /link
Sanity check compile stdout:
sanitycheckc.c

-----
Sanity check compile stderr:

-----
Running test binary command:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\sanitycheckc.exe
C compiler for the host machine: cl (msvc 19.29.30154 "Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30154 for x64")
C linker for the host machine: link link 14.29.30154.0
-----------
Detecting archiver via: `lib /?` -> 1100
stdout:
Microsoft (R) Library Manager Version 14.29.30154.0
Copyright (C) Microsoft Corporation.  All rights reserved.

usage: LIB [options] [files]

   options:

      /DEF[:filename]
      /ERRORREPORT:{NONE|PROMPT|QUEUE|SEND}
      /EXPORT:symbol
      /EXTRACT:membername
      /INCLUDE:symbol
      /LIBPATH:dir
      /LINKREPRO:dir
      /LINKREPROTARGET:filename
      /LIST[:filename]
      /LTCG
      /MACHINE:{ARM|ARM64|ARM64EC|EBC|X64|X86}
      /NAME:filename
      /NODEFAULTLIB[:library]
      /NOLOGO
      /OUT:filename
      /REMOVE:membername
      /SUBSYSTEM:{BOOT_APPLICATION|CONSOLE|EFI_APPLICATION|
                  EFI_BOOT_SERVICE_DRIVER|EFI_ROM|EFI_RUNTIME_DRIVER|
                  NATIVE|POSIX|WINDOWS|WINDOWSCE}[,#[.##]]
      /VERBOSE
      /WX[:NO]
-----------
-----------
Detecting compiler via: `icl ""` -> [WinError 2] The system cannot find the file specified
-----------
Detecting compiler via: `cl /?` -> 0
stdout:
C/C++ COMPILER OPTIONS


                              -OPTIMIZATION-

/O1 maximum optimizations (favor space) /O2 maximum optimizations (favor speed)
/Ob<n> inline expansion (default n=0)   /Od disable optimizations (default)
/Og enable global optimization          /Oi[-] enable intrinsic functions
/Os favor code space                    /Ot favor code speed
/Ox optimizations (favor speed)         
/favor:<blend|AMD64|INTEL64|ATOM> select processor to optimize for, one of:
    blend - a combination of optimizations for several different x64 processors
    AMD64 - 64-bit AMD processors                                 
    INTEL64 - Intel(R)64 architecture processors                  
    ATOM - Intel(R) Atom(TM) processors                           

                             -CODE GENERATION-

/Gu[-] ensure distinct functions have distinct addresses
/Gw[-] separate global variables for linker
/GF enable read-only string pooling     /Gm[-] enable minimal rebuild
/Gy[-] separate functions for linker    /GS[-] enable security checks
/GR[-] enable C++ RTTI                  /GX[-] enable C++ EH (same as /EHsc)
/guard:cf[-] enable CFG (control flow guard)
/guard:ehcont[-] enable EH continuation metadata (CET)
/EHs enable C++ EH (no SEH exceptions)  /EHa enable C++ EH (w/ SEH exceptions)
/EHc extern "C" defaults to nothrow     
/EHr always generate noexcept runtime termination checks
/fp:<except[-]|fast|precise|strict> choose floating-point model:
    except[-] - consider floating-point exceptions when generating code
    fast - "fast" floating-point model; results are less predictable
    precise - "precise" floating-point model; results are predictable
    strict - "strict" floating-point model (implies /fp:except)
/Qfast_transcendentals generate inline FP intrinsics even with /fp:except
/Qspectre[-] enable mitigations for CVE 2017-5753
/Qpar[-] enable parallel code generation
/Qpar-report:1 auto-parallelizer diagnostic; indicate parallelized loops
/Qpar-report:2 auto-parallelizer diagnostic; indicate loops not parallelized
/Qvec-report:1 auto-vectorizer diagnostic; indicate vectorized loops
/Qvec-report:2 auto-vectorizer diagnostic; indicate loops not vectorized
/GL[-] enable link-time code generation 
/volatile:<iso|ms> choose volatile model:
    iso - Acquire/release semantics not guaranteed on volatile accesses
    ms  - Acquire/release semantics guaranteed on volatile accesses
/GA optimize for Windows Application    /Ge force stack checking for all funcs
/Gs[num] control stack checking calls   /Gh enable _penter function call
/GH enable _pexit function call         /GT generate fiber-safe TLS accesses
/RTC1 Enable fast checks (/RTCsu)       /RTCc Convert to smaller type checks
/RTCs Stack Frame runtime checking      /RTCu Uninitialized local usage checks
/clr[:option] compile for common language runtime, where option is:
    pure : produce IL-only output file (no native executable code)
    safe : produce IL-only verifiable output file
    netcore : produce assemblies targeting .NET Core runtime
    noAssembly : do not produce an assembly
    nostdlib : ignore the system .NET framework directory when searching for assemblies
    nostdimport : do not import any required assemblies implicitly
    initialAppDomain : enable initial AppDomain behavior of Visual C++ 2002
    implicitKeepAlive- : turn off implicit emission of System::GC::KeepAlive(this)
/fsanitize=address Enable address sanitizer codegen
/homeparams Force parameters passed in registers to be written to the stack
/GZ Enable stack checks (/RTCs)         /Gv __vectorcall calling convention
/arch:<AVX|AVX2|AVX512> minimum CPU architecture requirements, one of:
   AVX - enable use of instructions available with AVX-enabled CPUs
   AVX2 - enable use of instructions available with AVX2-enabled CPUs
   AVX512 - enable use of instructions available with AVX-512-enabled CPUs
/QIntel-jcc-erratum enable mitigations for Intel JCC erratum
/Qspectre-load Enable spectre mitigations for all instructions which load memory
/Qspectre-load-cf Enable spectre mitigations for all control-flow instructions which load memory
/fpcvt:<IA|BC> FP to unsigned integer conversion compatibility
   IA - results compatible with VCVTTSD2USI instruction
   BC - results compatible with VS2017 and earlier compiler

                              -OUTPUT FILES-

/Fa[file] name assembly listing file    /FA[scu] configure assembly listing
/Fd[file] name .PDB file                /Fe<file> name executable file
/Fm[file] name map file                 /Fo<file> name object file
/Fp<file> name precompiled header file  /Fr[file] name source browser file
/FR[file] name extended .SBR file       /Fi[file] name preprocessed file
/Fd: <file> name .PDB file              /Fe: <file> name executable file
/Fm: <file> name map file               /Fo: <file> name object file
/Fp: <file> name .PCH file              /FR: <file> name extended .SBR file
/Fi: <file> name preprocessed file      
/Ft<dir> location of the header files generated for #import
/doc[file] process XML documentation comments and optionally name the .xdc file

                              -PREPROCESSOR-

/AI<dir> add to assembly search path    /FU<file> forced using assembly/module 
/C don't strip comments                 /D<name>{=|#}<text> define macro
/E preprocess to stdout                 /EP preprocess to stdout, no #line
/P preprocess to file                   /Fx merge injected code to file
/FI<file> name forced include file      /U<name> remove predefined macro
/u remove all predefined macros         /I<dir> add to include search path
/X ignore "standard places"             
/PH generate #pragma file_hash when preprocessing
/PD print all macro definitions         

                                -LANGUAGE-

/std:<c++14|c++17|c++latest> C++ standard version
    c++14 - ISO/IEC 14882:2014 (default)
    c++17 - ISO/IEC 14882:2017
    c++latest - latest draft standard (feature set subject to change)
/permissive[-] enable some nonconforming code to compile (feature set subject to change) (on by default)
/Ze enable extensions (default)         /Za disable extensions
/ZW enable WinRT language extensions    /Zs syntax check only
/Zc:arg1[,arg2] C++ language conformance, where arguments can be:
  forScope[-]           enforce Standard C++ for scoping rules
  wchar_t[-]            wchar_t is the native type, not a typedef
  auto[-]               enforce the new Standard C++ meaning for auto
  trigraphs[-]          enable trigraphs (off by default)
  rvalueCast[-]         enforce Standard C++ explicit type conversion rules
  strictStrings[-]      disable string-literal to [char|wchar_t]*
                        conversion (off by default)
  implicitNoexcept[-]   enable implicit noexcept on required functions
  threadSafeInit[-]     enable thread-safe local static initialization
  inline[-]             remove unreferenced function or data if it is
                        COMDAT or has internal linkage only (off by default)
  sizedDealloc[-]       enable C++14 global sized deallocation
                        functions (on by default)
  throwingNew[-]        assume operator new throws on failure (off by default)
  referenceBinding[-]   a temporary will not bind to an non-const
                        lvalue reference (off by default)
  twoPhase-             disable two-phase name lookup
  ternary[-]            enforce C++11 rules for conditional operator (off by default)
  noexceptTypes[-]      enforce C++17 noexcept rules (on by default in C++17 or later)
  alignedNew[-]         enable C++17 alignment of dynamically allocated objects (on by default)
  hiddenFriend[-]       enforce Standard C++ hidden friend rules (implied by /permissive-)
  externC[-]            enforce Standard C++ rules for 'extern "C"' functions (implied by /permissive-)
  lambda[-]             better lambda support by using the newer lambda processor (off by default)
  tlsGuards[-]          generate runtime checks for TLS variable initialization (on by default)
  zeroSizeArrayNew[-]   call member new/delete for 0-size arrays of objects (on by default)
/await enable resumable functions extension
/await:strict enable standard C++20 coroutine support with earlier language versions
/constexpr:depth<N>     recursion depth limit for constexpr evaluation (default: 512)
/constexpr:backtrace<N> show N constexpr evaluations in diagnostics (default: 10)
/constexpr:steps<N>     terminate constexpr evaluation after N steps (default: 100000)
/Zi enable debugging information        /Z7 enable old-style debug info
/Zo[-] generate richer debugging information for optimized code (on by default)
/ZH:[MD5|SHA1|SHA_256] hash algorithm for calculation of file checksum in debug info (default: MD5)
/Zp[n] pack structs on n-byte boundary  /Zl omit default library name in .OBJ
/vd{0|1|2} disable/enable vtordisp      /vm<x> type of pointers to members
/std:<c11|c17> C standard version
    c11 - ISO/IEC 9899:2011
    c17 - ISO/IEC 9899:2018
/ZI enable Edit and Continue debug info 
/openmp enable OpenMP 2.0 language extensions
/openmp:experimental enable OpenMP 2.0 language extensions plus select OpenMP 3.0+ language extensions
/openmp:llvm OpenMP language extensions using LLVM runtime

                              -MISCELLANEOUS-

@<file> options response file           /?, /help print this help message
/bigobj generate extended object format /c compile only, no link
/errorReport:option deprecated. Report internal compiler errors to Microsoft
    none - do not send report                
    prompt - prompt to immediately send report
    queue - at next admin logon, prompt to send report (default)
    send - send report automatically         
/FC use full pathnames in diagnostics   /H<num> max external name length
/J default char type is unsigned        
/MP[n] use up to 'n' processes for compilation
/nologo suppress copyright message      /showIncludes show include file names
/Tc<source file> compile file as .c     /Tp<source file> compile file as .cpp
/TC compile all files as .c             /TP compile all files as .cpp
/V<string> set version string           /Yc[file] create .PCH file
/Yd put debug info in every .OBJ        /Yl[sym] inject .PCH ref for debug lib
/Yu[file] use .PCH file                 /Y- disable all PCH options
/Zm<n> max memory alloc (% of default)  /FS force to use MSPDBSRV.EXE
/source-charset:<iana-name>|.nnnn set source character set
/execution-charset:<iana-name>|.nnnn set execution character set
/utf-8 set source and execution character set to UTF-8
/validate-charset[-] validate UTF-8 files for only legal characters
/fastfail[-] enable fast-fail mode      /JMC[-] enable native just my code
/presetPadding[-] zero initialize padding for stack based class types
/volatileMetadata[-] generate metadata on volatile memory accesses

                                -LINKING-

/LD Create .DLL                         /LDd Create .DLL debug library
/LN Create a .netmodule                 /F<num> set stack size
/link [linker options and libraries]    /MD link with MSVCRT.LIB
/MT link with LIBCMT.LIB                /MDd link with MSVCRTD.LIB debug lib
/MTd link with LIBCMTD.LIB debug lib    

                              -CODE ANALYSIS-

/analyze[-] Enable native analysis      /analyze:quiet[-] No warning to console
/analyze:log<name> Warnings to file     /analyze:autolog Log to *.pftlog
/analyze:autolog:ext<ext> Log to *.<ext>/analyze:autolog- No log file
/analyze:WX- Warnings not fatal         /analyze:stacksize<num> Max stack frame
/analyze:max_paths<num> Max paths       /analyze:only Analyze, no code gen

                              -DIAGNOSTICS-

/diagnostics:<args,...> controls the format of diagnostic messages:
             classic   - retains prior format
             column[-] - prints column information
             caret[-]  - prints column and the indicated line of source
/Wall enable all warnings               /w   disable all warnings
/W<n> set warning level (default n=1)   
/Wv:xx[.yy[.zzzzz]] disable warnings introduced after version xx.yy.zzzzz
/WX treat warnings as errors            /WL enable one line diagnostics
/wd<n> disable warning n                /we<n> treat warning n as an error
/wo<n> issue warning n once             /w<l><n> set warning level 1-4 for n
/external:I <path>      - location of external headers
/external:env:<var>     - environment variable with locations of external headers
/external:anglebrackets - treat all headers included via <> as external
/external:W<n>          - warning level for external headers
/external:templates[-]  - evaluate warning level across template instantiation chain
/sdl enable additional security features and warnings
-----------
stderr:
Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30154 for x64
Copyright (C) Microsoft Corporation.  All rights reserved.
-----------
Sanity testing C compiler: cl
Is cross compiler: False.
Sanity check compiler command line: cl sanitycheckc.c /Fesanitycheckc.exe /MD /nologo /showIncludes /utf-8 /link
Sanity check compile stdout:
sanitycheckc.c

-----
Sanity check compile stderr:

-----
Running test binary command:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\sanitycheckc.exe
C compiler for the build machine: cl (msvc 19.29.30154 "Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30154 for x64")
C linker for the build machine: link link 14.29.30154.0
-----------
Detecting archiver via: `lib /?` -> 1100
stdout:
Microsoft (R) Library Manager Version 14.29.30154.0
Copyright (C) Microsoft Corporation.  All rights reserved.

usage: LIB [options] [files]

   options:

      /DEF[:filename]
      /ERRORREPORT:{NONE|PROMPT|QUEUE|SEND}
      /EXPORT:symbol
      /EXTRACT:membername
      /INCLUDE:symbol
      /LIBPATH:dir
      /LINKREPRO:dir
      /LINKREPROTARGET:filename
      /LIST[:filename]
      /LTCG
      /MACHINE:{ARM|ARM64|ARM64EC|EBC|X64|X86}
      /NAME:filename
      /NODEFAULTLIB[:library]
      /NOLOGO
      /OUT:filename
      /REMOVE:membername
      /SUBSYSTEM:{BOOT_APPLICATION|CONSOLE|EFI_APPLICATION|
                  EFI_BOOT_SERVICE_DRIVER|EFI_ROM|EFI_RUNTIME_DRIVER|
                  NATIVE|POSIX|WINDOWS|WINDOWSCE}[,#[.##]]
      /VERBOSE
      /WX[:NO]
-----------
Build machine cpu family: x86_64
Build machine cpu: x86_64
Host machine cpu family: x86_64
Host machine cpu: x86_64
Target machine cpu family: x86_64
Target machine cpu: x86_64
Run-time dependency threads found: YES
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1cnunnku
Code:
int main(void) { return 0; }

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1cnunnku\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1cnunnku\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- ws2_32.lib /link /release /nologo` -> 0
stdout:
testfile.c
-----------
Library ws2_32 found: YES
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2ms2pwfc
Code:
int main(void) { return 0; }

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2ms2pwfc\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2ms2pwfc\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- secur32.lib /link /release /nologo` -> 0
stdout:
testfile.c
-----------
Library secur32 found: YES
Program perl found: YES (C:\Strawberry\perl\bin\perl.EXE)
Program python3 found: YES (C:\Program Files\Python38\python3.EXE)
Running command: C:\GnuWin32\bin\flex.EXE --version
--- stdout ---
flex 2.5.35

--- stderr ---


Program flex found: YES 2.5.35 2.5.35 (C:\GnuWin32\bin\flex.EXE)
Running command: C:\GnuWin32\bin\bison.EXE --version
--- stdout ---
bison (GNU Bison) 2.4.1
Written by Robert Corbett and Richard Stallman.

Copyright (C) 2008 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

--- stderr ---


Program bison found: YES 2.4.1 2.4.1 (C:\GnuWin32\bin\bison.EXE)
Program sed found: YES (C:\GnuWin32\bin\sed.EXE)
Program prove found: YES (C:\Strawberry\perl\bin\prove.BAT)
Program tar found: YES (C:\Windows\system32\tar.EXE)
Program gzip found: NO
Program lz4 found: NO
Program openssl found: NO
Program zstd found: NO
Program dtrace skipped: feature dtrace disabled
Program config/missing found: YES (sh D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\config/missing)
Program cp found: NO
Program xmllint found: NO
Program xsltproc found: NO
Running command: C:\GnuWin32\bin\bison.EXE --version
--- stdout ---
bison (GNU Bison) 2.4.1
Written by Robert Corbett and Richard Stallman.

Copyright (C) 2008 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

--- stderr ---


Running command: C:\GnuWin32\bin\flex.EXE --version
--- stdout ---
flex 2.5.35

--- stderr ---


Program wget found: NO
Running command: "C:\Program Files\Python38\python3.EXE" src/tools/find_meson
--- stdout ---
meson
C:\Python\Python310\python.exe
D:\Jenkins\workspace\workspace\Postgres-9.4\meson-1.6.0\meson.py
--- stderr ---


Program C:\Python\Python310\python.exe found: YES (C:\Python\Python310\python.exe)
Check usable header "bsd_auth.h" skipped: feature bsd_auth disabled
Check usable header "dns_sd.h" skipped: feature bonjour disabled
Program fop found: NO
Compiler for language cpp skipped: feature llvm disabled
Pkg-config binary missing from cross or native file, or env var undefined.
Trying a default Pkg-config fallback at pkg-config
Found pkg-config 'C:\\Strawberry\\perl\\bin\\pkg-config.BAT' but it is Strawberry Perl and thus broken. Ignoring...
Found pkg-config: NO
Pkg-config for machine host machine not found. Giving up.
CMake binary for host machine is not cached
CMake binary missing from cross or native file, or env var undefined.
Trying a default CMake fallback at cmake
Found CMake: C:\Program Files\CMake\bin\cmake.EXE (3.29.0)
Extracting basic cmake information
CMake Toolchain: Calling CMake once to generate the compiler state
Calling CMake (['C:\\Program Files\\CMake\\bin\\cmake.EXE']) in D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\__CMake_compiler_info__ with:
  - "--trace-expand"
  - "--trace-format=json-v1"
  - "--no-warn-unused-cli"
  - "--trace-redirect=cmake_trace.txt"
  - "-G"
  - "Ninja"
  - "-DCMAKE_TOOLCHAIN_FILE=D:/Jenkins/workspace/workspace/Postgres-9.4/PostgreSQL/postgres-Source/buildPostgreSQL_wx6_17.0/postgresql-17.0/build/meson-private/__CMake_compiler_info__/CMakeMesonTempToolchainFile.cmake"
  - "."
CMake trace warning: add_executable() non imported executables are not supported
CMake TRACE: D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\__CMake_compiler_info__\CMakeFiles\CMakeScratch\TryCompile-2d2j3l\CMakeLists.txt:23 add_executable(['cmTC_f768e'])
CMake trace warning: target_link_libraries() TARGET cmTC_f768e not found
CMake TRACE: D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\__CMake_compiler_info__\CMakeFiles\CMakeScratch\TryCompile-2d2j3l\CMakeLists.txt:29 target_link_libraries(['cmTC_f768e', ''])
Try CMake generator: auto
Calling CMake (['C:\\Program Files\\CMake\\bin\\cmake.EXE']) in D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\cmake_icu-uc with:
  - "--trace-expand"
  - "--trace-format=json-v1"
  - "--no-warn-unused-cli"
  - "--trace-redirect=cmake_trace.txt"
  - "-DCMAKE_TOOLCHAIN_FILE=D:/Jenkins/workspace/workspace/Postgres-9.4/PostgreSQL/postgres-Source/buildPostgreSQL_wx6_17.0/postgresql-17.0/build/meson-private/cmake_icu-uc/CMakeMesonToolchainFile.cmake"
  - "."
  -- Module search paths:    ['C:/Program Files', 'C:/Program Files (x86)', 'C:/Program Files/CMake']
  -- CMake root:             C:/Program Files/CMake/share/cmake-3.29
  -- CMake architectures:    []
  -- CMake lib search paths: ['lib', 'lib32', 'lib64', 'libx32', 'share', '']
Preliminary CMake check failed. Aborting.
Run-time dependency icu-uc found: NO (tried pkgconfig and cmake)
CMake binary for host machine is cached.

Determining dependency 'ICU' with CMake executable 'C:\\Program Files\\CMake\\bin\\cmake.EXE'
Try CMake generator: auto
Calling CMake (['C:\\Program Files\\CMake\\bin\\cmake.EXE']) in D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\cmake_ICU with:
  - "-DNAME=ICU"
  - "-DARCHS="
  - "-DVERSION="
  - "-DCOMPS=uc"
  - "-DSTATIC=OFF"
  - "--trace-expand"
  - "--trace-format=json-v1"
  - "--no-warn-unused-cli"
  - "--trace-redirect=cmake_trace.txt"
  - "-DCMAKE_TOOLCHAIN_FILE=D:/Jenkins/workspace/workspace/Postgres-9.4/PostgreSQL/postgres-Source/buildPostgreSQL_wx6_17.0/postgresql-17.0/build/meson-private/cmake_ICU/CMakeMesonToolchainFile.cmake"
  - "."
CMake TARGET:
  -- name:      ICU::uc
  -- type:      UNKNOWN
  -- imported:  True
  -- properties: {
      'INTERFACE_INCLUDE_DIRECTORIES': ['D:/Jenkins/workspace/workspace/Postgres-9.4/icu/icu4c-72.1-wx6/include']
      'IMPORTED_LINK_INTERFACE_LANGUAGES': ['CXX']
      'IMPORTED_LOCATION': ['C:/Program Files (x86)/Windows Kits/10/Lib/10.0.19041.0/um/x64/icuuc.lib']
      'IMPORTED_CONFIGURATIONS': ['RELEASE']
      'IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE': ['CXX']
      'IMPORTED_LOCATION_RELEASE': ['C:/Program Files (x86)/Windows Kits/10/Lib/10.0.19041.0/um/x64/icuuc.lib']
     }
  -- tline: CMake TRACE: C:\Program Files\CMake\share\cmake-3.29\Modules\FindICU.cmake:358 add_library(['ICU::uc', 'UNKNOWN', 'IMPORTED'])
Include Dirs:         ['D:/Jenkins/workspace/workspace/Postgres-9.4/icu/icu4c-72.1-wx6/include']
Compiler Options:     []
Libraries:            ['C:/Program Files (x86)/Windows Kits/10/Lib/10.0.19041.0/um/x64/icuuc.lib']
Run-time dependency icu (modules: ICU::uc) found: YES 72.1
Dependency lookup for ICU with method 'pkgconfig' failed: Pkg-config for machine host machine not found. Giving up.
CMake binary for host machine is cached.

Determining dependency 'ICU' with CMake executable 'C:\\Program Files\\CMake\\bin\\cmake.EXE'
Try CMake generator: auto
Calling CMake (['C:\\Program Files\\CMake\\bin\\cmake.EXE']) in D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\cmake_ICU with:
  - "-DNAME=ICU"
  - "-DARCHS="
  - "-DVERSION="
  - "-DCOMPS=i18n"
  - "-DSTATIC=OFF"
  - "--trace-expand"
  - "--trace-format=json-v1"
  - "--no-warn-unused-cli"
  - "--trace-redirect=cmake_trace.txt"
  - "-DCMAKE_TOOLCHAIN_FILE=D:/Jenkins/workspace/workspace/Postgres-9.4/PostgreSQL/postgres-Source/buildPostgreSQL_wx6_17.0/postgresql-17.0/build/meson-private/cmake_ICU/CMakeMesonToolchainFile.cmake"
  - "."
CMake TARGET:
  -- name:      ICU::i18n
  -- type:      UNKNOWN
  -- imported:  True
  -- properties: {
      'INTERFACE_INCLUDE_DIRECTORIES': ['D:/Jenkins/workspace/workspace/Postgres-9.4/icu/icu4c-72.1-wx6/include']
      'IMPORTED_LINK_INTERFACE_LANGUAGES': ['CXX']
      'IMPORTED_LOCATION': ['C:/Program Files (x86)/Windows Kits/10/Lib/10.0.19041.0/um/x64/icuin.Lib']
      'IMPORTED_CONFIGURATIONS': ['RELEASE']
      'IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE': ['CXX']
      'IMPORTED_LOCATION_RELEASE': ['C:/Program Files (x86)/Windows Kits/10/Lib/10.0.19041.0/um/x64/icuin.Lib']
     }
  -- tline: CMake TRACE: C:\Program Files\CMake\share\cmake-3.29\Modules\FindICU.cmake:358 add_library(['ICU::i18n', 'UNKNOWN', 'IMPORTED'])
Include Dirs:         ['D:/Jenkins/workspace/workspace/Postgres-9.4/icu/icu4c-72.1-wx6/include']
Compiler Options:     []
Libraries:            ['C:/Program Files (x86)/Windows Kits/10/Lib/10.0.19041.0/um/x64/icuin.Lib']
Run-time dependency icu (modules: ICU::i18n) found: YES 72.1
Pkg-config for machine host machine not found. Giving up.
CMake binary for host machine is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency readline found: NO (tried pkgconfig and cmake)
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp54qx5ymz
Code:

        #include<stddef.h>
        #include<stdio.h>
        int main(void) {
            printf("%ld\n", (long)(sizeof(void *)));
            return 0;
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp54qx5ymz\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp54qx5ymz\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi-` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stddef.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stdio.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstdio.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_stdio_config.h
-----------
Program stdout:

8

Program stderr:


Library readline found: NO
Pkg-config for machine host machine not found. Giving up.
CMake binary for host machine is cached.
Preliminary CMake check failed. Aborting.
Run-time dependency libedit found: NO (tried pkgconfig and cmake)
Library libedit found: NO
Dependency libselinux skipped: feature selinux disabled
Dependency libsystemd skipped: feature systemd disabled
Pkg-config for machine host machine not found. Giving up.
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpxjd7kdll
Code:

        #ifdef __has_include
         #if !__has_include("openssl/ssl.h")
          #error "Header 'openssl/ssl.h' could not be found"
         #endif
        #else
         #include <openssl/ssl.h>
        #endif
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpxjd7kdll\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpxjd7kdll\testfile.c(4): fatal error C1189: #error:  "Header 'openssl/ssl.h' could not be found"
-----------
CMake binary for host machine is cached.

Determining dependency 'OpenSSL' with CMake executable 'C:\\Program Files\\CMake\\bin\\cmake.EXE'
Try CMake generator: auto
Calling CMake (['C:\\Program Files\\CMake\\bin\\cmake.EXE']) in D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\cmake_OpenSSL with:
  - "-DNAME=OpenSSL"
  - "-DARCHS="
  - "-DVERSION="
  - "-DCOMPS="
  - "-DSTATIC=OFF"
  - "--trace-expand"
  - "--trace-format=json-v1"
  - "--no-warn-unused-cli"
  - "--trace-redirect=cmake_trace.txt"
  - "-DCMAKE_TOOLCHAIN_FILE=D:/Jenkins/workspace/workspace/Postgres-9.4/PostgreSQL/postgres-Source/buildPostgreSQL_wx6_17.0/postgresql-17.0/build/meson-private/cmake_OpenSSL/CMakeMesonToolchainFile.cmake"
  - "."
Run-time dependency openssl found: NO (tried pkgconfig, system and cmake)
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5fn1trb8
Code:

        #ifdef __has_include
         #if !__has_include("openssl/ssl.h")
          #error "Header 'openssl/ssl.h' could not be found"
         #endif
        #else
         #include <openssl/ssl.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5fn1trb8\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 0
stderr:
testfile.c
-----------
Has header "openssl/ssl.h" : YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpk7eszg0s
Code:

        #ifdef __has_include
         #if !__has_include("openssl/err.h")
          #error "Header 'openssl/err.h' could not be found"
         #endif
        #else
         #include <openssl/err.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpk7eszg0s\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 0
stderr:
testfile.c
-----------
Has header "openssl/err.h" : YES 
Library ssl found: YES
Library crypto found: YES
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz28puol9
Code:

        #define CRYPTO_new_ex_data meson_disable_define_of_CRYPTO_new_ex_data
        
        #include <limits.h>
        #undef CRYPTO_new_ex_data
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char CRYPTO_new_ex_data (void);
        
        #if defined __stub_CRYPTO_new_ex_data || defined __stub___CRYPTO_new_ex_data
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return CRYPTO_new_ex_data ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz28puol9\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz28puol9\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /link D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libssl.lib D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libcrypto.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
-----------
Checking for function "CRYPTO_new_ex_data" with dependencies -lssl, -lcrypto: YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmps37fkbhh
Code:

        #define SSL_new meson_disable_define_of_SSL_new
        
        #include <limits.h>
        #undef SSL_new
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char SSL_new (void);
        
        #if defined __stub_SSL_new || defined __stub___SSL_new
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return SSL_new ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmps37fkbhh\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmps37fkbhh\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /link D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libssl.lib D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libcrypto.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
-----------
Checking for function "SSL_new" with dependencies -lssl, -lcrypto: YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpst9c_1l5
Code:

        #define SSL_CTX_set_cert_cb meson_disable_define_of_SSL_CTX_set_cert_cb
        
        #include <limits.h>
        #undef SSL_CTX_set_cert_cb
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char SSL_CTX_set_cert_cb (void);
        
        #if defined __stub_SSL_CTX_set_cert_cb || defined __stub___SSL_CTX_set_cert_cb
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return SSL_CTX_set_cert_cb ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpst9c_1l5\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpst9c_1l5\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /link D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libssl.lib D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libcrypto.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
-----------
Checking for function "SSL_CTX_set_cert_cb" with dependencies -lssl, -lcrypto: YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmptb3_agdp
Code:

        #define OPENSSL_init_ssl meson_disable_define_of_OPENSSL_init_ssl
        
        #include <limits.h>
        #undef OPENSSL_init_ssl
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char OPENSSL_init_ssl (void);
        
        #if defined __stub_OPENSSL_init_ssl || defined __stub___OPENSSL_init_ssl
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return OPENSSL_init_ssl ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmptb3_agdp\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmptb3_agdp\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /link D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libssl.lib D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libcrypto.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
-----------
Checking for function "OPENSSL_init_ssl" with dependencies -lssl, -lcrypto: YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1iwwzpn8
Code:

        #define BIO_meth_new meson_disable_define_of_BIO_meth_new
        
        #include <limits.h>
        #undef BIO_meth_new
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char BIO_meth_new (void);
        
        #if defined __stub_BIO_meth_new || defined __stub___BIO_meth_new
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return BIO_meth_new ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1iwwzpn8\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1iwwzpn8\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /link D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libssl.lib D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libcrypto.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
-----------
Checking for function "BIO_meth_new" with dependencies -lssl, -lcrypto: YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp8lf6yrex
Code:

        #define ASN1_STRING_get0_data meson_disable_define_of_ASN1_STRING_get0_data
        
        #include <limits.h>
        #undef ASN1_STRING_get0_data
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char ASN1_STRING_get0_data (void);
        
        #if defined __stub_ASN1_STRING_get0_data || defined __stub___ASN1_STRING_get0_data
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return ASN1_STRING_get0_data ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp8lf6yrex\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp8lf6yrex\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /link D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libssl.lib D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libcrypto.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
-----------
Checking for function "ASN1_STRING_get0_data" with dependencies -lssl, -lcrypto: YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpcjmiihml
Code:

        #define HMAC_CTX_new meson_disable_define_of_HMAC_CTX_new
        
        #include <limits.h>
        #undef HMAC_CTX_new
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char HMAC_CTX_new (void);
        
        #if defined __stub_HMAC_CTX_new || defined __stub___HMAC_CTX_new
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return HMAC_CTX_new ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpcjmiihml\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpcjmiihml\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /link D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libssl.lib D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libcrypto.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
-----------
Checking for function "HMAC_CTX_new" with dependencies -lssl, -lcrypto: YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmph27_ryjb
Code:

        #define HMAC_CTX_free meson_disable_define_of_HMAC_CTX_free
        
        #include <limits.h>
        #undef HMAC_CTX_free
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char HMAC_CTX_free (void);
        
        #if defined __stub_HMAC_CTX_free || defined __stub___HMAC_CTX_free
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return HMAC_CTX_free ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmph27_ryjb\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmph27_ryjb\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /link D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libssl.lib D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libcrypto.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
-----------
Checking for function "HMAC_CTX_free" with dependencies -lssl, -lcrypto: YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2zf7ee4n
Code:

        #define CRYPTO_lock meson_disable_define_of_CRYPTO_lock
        
        #include <limits.h>
        #undef CRYPTO_lock
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char CRYPTO_lock (void);
        
        #if defined __stub_CRYPTO_lock || defined __stub___CRYPTO_lock
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return CRYPTO_lock ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2zf7ee4n\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2zf7ee4n\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /link D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libssl.lib D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libcrypto.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol CRYPTO_lock referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2zf7ee4n\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "CRYPTO_lock" with dependencies -lssl, -lcrypto: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpasln3srt
Code:

        #define X509_get_signature_info meson_disable_define_of_X509_get_signature_info
        
        #include <limits.h>
        #undef X509_get_signature_info
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char X509_get_signature_info (void);
        
        #if defined __stub_X509_get_signature_info || defined __stub___X509_get_signature_info
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return X509_get_signature_info ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpasln3srt\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpasln3srt\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /link D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libssl.lib D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libcrypto.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
-----------
Checking for function "X509_get_signature_info" with dependencies -lssl, -lcrypto: YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7piikycf
Code:

        #define SSL_CTX_set_num_tickets meson_disable_define_of_SSL_CTX_set_num_tickets
        
        #include <limits.h>
        #undef SSL_CTX_set_num_tickets
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char SSL_CTX_set_num_tickets (void);
        
        #if defined __stub_SSL_CTX_set_num_tickets || defined __stub___SSL_CTX_set_num_tickets
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return SSL_CTX_set_num_tickets ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7piikycf\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7piikycf\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /link D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libssl.lib D:/Jenkins/workspace/workspace/Postgres-9.4/OpenSSL/OpenSSL-Install/OpenSSL-3.1.6-wx6/lib/libcrypto.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
-----------
Checking for function "SSL_CTX_set_num_tickets" with dependencies -lssl, -lcrypto: YES 
Dependency lookup for zlib with method 'pkgconfig' failed: Pkg-config for machine host machine not found. Giving up.
CMake binary for host machine is cached.

Determining dependency 'ZLIB' with CMake executable 'C:\\Program Files\\CMake\\bin\\cmake.EXE'
Try CMake generator: auto
Calling CMake (['C:\\Program Files\\CMake\\bin\\cmake.EXE']) in D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\cmake_ZLIB with:
  - "-DNAME=ZLIB"
  - "-DARCHS="
  - "-DVERSION="
  - "-DCOMPS="
  - "-DSTATIC=OFF"
  - "--trace-expand"
  - "--trace-format=json-v1"
  - "--no-warn-unused-cli"
  - "--trace-redirect=cmake_trace.txt"
  - "-DCMAKE_TOOLCHAIN_FILE=D:/Jenkins/workspace/workspace/Postgres-9.4/PostgreSQL/postgres-Source/buildPostgreSQL_wx6_17.0/postgresql-17.0/build/meson-private/cmake_ZLIB/CMakeMesonToolchainFile.cmake"
  - "."
Guessed CMake target 'ZLIB::ZLIB'
CMake TARGET:
  -- name:      ZLIB::ZLIB
  -- type:      UNKNOWN
  -- imported:  True
  -- properties: {
      'INTERFACE_INCLUDE_DIRECTORIES': ['D:/Jenkins/workspace/workspace/Postgres-9.4/zlib/zlib-1.3.1-wx6/include']
      'IMPORTED_CONFIGURATIONS': ['RELEASE']
      'IMPORTED_LOCATION_RELEASE': ['D:/Jenkins/workspace/workspace/Postgres-9.4/zlib/zlib-1.3.1-wx6/lib/zdll.lib']
     }
  -- tline: CMake TRACE: C:\Program Files\CMake\share\cmake-3.29\Modules\FindZLIB.cmake:211 add_library(['ZLIB::ZLIB', 'UNKNOWN', 'IMPORTED'])
Include Dirs:         ['D:/Jenkins/workspace/workspace/Postgres-9.4/zlib/zlib-1.3.1-wx6/include']
Compiler Options:     []
Libraries:            ['D:/Jenkins/workspace/workspace/Postgres-9.4/zlib/zlib-1.3.1-wx6/lib/zdll.lib']
Run-time dependency zlib found: YES 1.3.1
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmptnjykfn0
Code:

        #ifdef __has_include
         #if !__has_include("zlib.h")
          #error "Header 'zlib.h' could not be found"
         #endif
        #else
         #include <zlib.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc -ID:/Jenkins/workspace/workspace/Postgres-9.4/zlib/zlib-1.3.1-wx6/include D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmptnjykfn0\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 0
stderr:
testfile.c
-----------
Has header "zlib.h" with dependency ZLIB: YES 
Running command: C:\Strawberry\perl\bin\perl.EXE config/check_modules.pl
--- stdout ---
ok 1
1..1

--- stderr ---
# IPC::Run::VERSION: 0.99
# Test::More::VERSION: 1.302135
# Time::HiRes::VERSION: 1.9758


Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5buc1zry
Code:

#include <stdbool.h>
#include <complex.h>
#include <tgmath.h>
#include <inttypes.h>

struct named_init_test {
  int a;
  int b;
};

extern void structfunc(struct named_init_test);

int main(int argc, char **argv)
{
  struct named_init_test nit = {
    .a = 3,
    .b = 5,
  };

  for (int loop_var = 0; loop_var < 3; loop_var++)
  {
    nit.a += nit.b;
  }

  structfunc((struct named_init_test){1, 0});

  return nit.a != 0;
}

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5buc1zry\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5buc1zry\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\stdbool.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\complex.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\tgmath.h
C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\tgmath.h(27): warning UCRT4000: The Universal CRT implementation of tgmath.h does not conform to the C99 standard. Functionality equivalent to the type-generic functions provided by tgmath.h is available in <ctgmath> when compiling as C++. If compiling in C++17 mode or higher (/std:c++17), this header will automatically include <ctgmath> instead. You can define _CRT_SILENCE_NONCONFORMING_TGMATH_H to acknowledge that you have received this warning.
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\math.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_math.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\inttypes.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\stdint.h
-----------
Checking if "c99" compiles: YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp21r7jh69
Code:

        #include<stddef.h>
        #include<stdio.h>
        int main(void) {
            printf("%ld\n", (long)(sizeof(long)));
            return 0;
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp21r7jh69\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp21r7jh69\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stddef.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stdio.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstdio.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_stdio_config.h
-----------
Program stdout:

4

Program stderr:


Checking for size of "long" : 4 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpru8_u7c1
Code:

        #include<stddef.h>
        #include<stdio.h>
        int main(void) {
            printf("%ld\n", (long)(sizeof(long long)));
            return 0;
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpru8_u7c1\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpru8_u7c1\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stddef.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stdio.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstdio.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_stdio_config.h
-----------
Program stdout:

8

Program stderr:


Checking for size of "long long" : 8 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpeepn4z2j
Code:

        #include <stdio.h>
        #include <stddef.h>
        struct tmp {
            char c;
            short target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpeepn4z2j\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpeepn4z2j\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi-` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stdio.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstdio.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_stdio_config.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stddef.h
-----------
Program stdout:

2
Program stderr:


Checking for alignment of "short" : 2 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpppjzrxme
Code:

        #include <stdio.h>
        #include <stddef.h>
        struct tmp {
            char c;
            int target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpppjzrxme\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpppjzrxme\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi-` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stdio.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstdio.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_stdio_config.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stddef.h
-----------
Program stdout:

4
Program stderr:


Checking for alignment of "int" : 4 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpavpfrhjw
Code:

        #include <stdio.h>
        #include <stddef.h>
        struct tmp {
            char c;
            long target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpavpfrhjw\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpavpfrhjw\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi-` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stdio.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstdio.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_stdio_config.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stddef.h
-----------
Program stdout:

4
Program stderr:


Checking for alignment of "long" : 4 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpsph0fmz_
Code:

        #include <stdio.h>
        #include <stddef.h>
        struct tmp {
            char c;
            double target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpsph0fmz_\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpsph0fmz_\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi-` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stdio.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstdio.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_stdio_config.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stddef.h
-----------
Program stdout:

8
Program stderr:


Checking for alignment of "double" : 8 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppt65_fhs
Code:

        #include <stdio.h>
        #include <stddef.h>
        struct tmp {
            char c;
            long long int target;
        };
        int main(void) {
            printf("%d", (int)offsetof(struct tmp, target));
            return 0;
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppt65_fhs\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppt65_fhs\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi-` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stdio.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstdio.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_stdio_config.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stddef.h
-----------
Program stdout:

8
Program stderr:


Checking for alignment of "long long int" : 8 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp067cfl71
Code:

        #include<stddef.h>
        #include<stdio.h>
        int main(void) {
            printf("%ld\n", (long)(sizeof(void *)));
            return 0;
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp067cfl71\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp067cfl71\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stddef.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stdio.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstdio.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_stdio_config.h
-----------
Program stdout:

8

Program stderr:


Checking for size of "void *" : 8 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpyz1k4xeq
Code:

        #include<stddef.h>
        #include<stdio.h>
        int main(void) {
            printf("%ld\n", (long)(sizeof(size_t)));
            return 0;
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpyz1k4xeq\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpyz1k4xeq\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stddef.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stdio.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstdio.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_stdio_config.h
-----------
Program stdout:

8

Program stderr:


Checking for size of "size_t" : 8 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz13sel12
Code:

  /*
   * We don't actually run this test, just link it to verify that any support
   * functions needed for __int128 are present.
   *
   * These are globals to discourage the compiler from folding all the
   * arithmetic tests down to compile-time constants.  We do not have
   * convenient support for 128bit literals at this point...
   */
  __int128 a = 48828125;
  __int128 b = 97656250;

  int main(void)
  {
      __int128 c,d;
      a = (a << 12) + 1; /* 200000000001 */
      b = (b << 12) + 5; /* 400000000005 */
      /* try the most relevant arithmetic ops */
      c = a * b;
      d = (c + b) / b;
      /* must use the results, else compiler may optimize arithmetic away */
      return d != a+1;
  }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz13sel12\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz13sel12\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz13sel12\testfile.c(10): error C4235: nonstandard extension used: '__int128' keyword not supported on this architecture
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz13sel12\testfile.c(11): error C4235: nonstandard extension used: '__int128' keyword not supported on this architecture
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz13sel12\testfile.c(15): error C4235: nonstandard extension used: '__int128' keyword not supported on this architecture
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz13sel12\testfile.c(15): error C2065: 'c': undeclared identifier
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz13sel12\testfile.c(15): error C2065: 'd': undeclared identifier
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz13sel12\testfile.c(19): error C2065: 'c': undeclared identifier
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz13sel12\testfile.c(20): error C2065: 'd': undeclared identifier
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz13sel12\testfile.c(20): error C2065: 'c': undeclared identifier
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz13sel12\testfile.c(22): error C2065: 'd': undeclared identifier
-----------
Checking if "__int128" : links: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpd58o2rs1
Code:

    static inline int foo(void)
    {
      void *labeladdrs[] = {&&my_label};
      goto *labeladdrs[0];
      my_label:
      return 1;
    }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpd58o2rs1\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpd58o2rs1\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpd58o2rs1\testfile.c(4): error C2059: syntax error: '&&'
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpd58o2rs1\testfile.c(5): error C2059: syntax error: '*'
-----------
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp098f_nxs
Code:

    int main(int arg, char **argv)
    {
        ({ _Static_assert(1, "foo"); });
    }
    
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp098f_nxs\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp098f_nxs\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp098f_nxs\testfile.c(4): error C2059: syntax error: '{'
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp098f_nxs\testfile.c(4): error C2059: syntax error: ')'
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp098f_nxs\testfile.c(5): error C2059: syntax error: '}'
-----------
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_sr3g7gp
Code:

        void bar(void) {
            (void) sizeof(_Bool);
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_sr3g7gp\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_sr3g7gp\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 0
stdout:
testfile.c
-----------
Checking for type "_Bool" : YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpxl719ow7
Code:
#include <stdbool.h>
        void bar(void) {
            (void) sizeof(bool);
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpxl719ow7\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpxl719ow7\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\stdbool.h
-----------
Checking for type "bool" : YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpms657sqb
Code:
#include <stdbool.h>
        #include<stddef.h>
        #include<stdio.h>
        int main(void) {
            printf("%ld\n", (long)(sizeof(bool)));
            return 0;
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpms657sqb\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpms657sqb\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\stdbool.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stddef.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stdio.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstdio.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_stdio_config.h
-----------
Program stdout:

1

Program stderr:


Checking for size of "bool" : 1 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7y21494p
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7y21494p\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7y21494p\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Werror=format` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Werror=format'
-----------
Compiler for C supports arguments -Werror=format: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpu8qlhvs9
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpu8qlhvs9\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpu8qlhvs9\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Werror=ignored-attributes` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Werror=ignored-attributes'
-----------
Compiler for C supports arguments -Werror=ignored-attributes: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpr0sy95d6
Code:

extern void emit_log(int ignore, const char *fmt,...) __attribute__((format(gnu_printf, 2,3)));
static void call_log(void)
{
    emit_log(0, "error: %s: %m", "foo");
}

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpr0sy95d6\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpr0sy95d6\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpr0sy95d6\testfile.c(2): error C2061: syntax error: identifier '__attribute__'
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpr0sy95d6\testfile.c(2): error C2059: syntax error: ';'
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpr0sy95d6\testfile.c(2): error C2059: syntax error: 'constant'
-----------
Checking if "format gnu_printf" compiles: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpt6qhwgcw
Code:

extern void emit_log(int ignore, const char *fmt,...) __attribute__((format(__syslog__, 2,3)));
static void call_log(void)
{
    emit_log(0, "error: %s: %m", "foo");
}

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpt6qhwgcw\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpt6qhwgcw\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpt6qhwgcw\testfile.c(2): error C2061: syntax error: identifier '__attribute__'
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpt6qhwgcw\testfile.c(2): error C2059: syntax error: ';'
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpt6qhwgcw\testfile.c(2): error C2059: syntax error: 'constant'
-----------
Checking if "format __syslog__" compiles: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpcf5osnf6
Code:

extern void emit_log(int ignore, const char *fmt,...) __attribute__((format(printf, 2,3)));
static void call_log(void)
{
    emit_log(0, "error: %s: %m", "foo");
}

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpcf5osnf6\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpcf5osnf6\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpcf5osnf6\testfile.c(2): error C2061: syntax error: identifier '__attribute__'
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpcf5osnf6\testfile.c(2): error C2059: syntax error: ';'
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpcf5osnf6\testfile.c(2): error C2059: syntax error: 'constant'
-----------
Checking if "format printf" compiles: NO 
Compiler for C supports function attribute visibility:default: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdn8n8ff6
Code:

        #define __builtin_bswap16 meson_disable_define_of___builtin_bswap16
        
        #include <limits.h>
        #undef __builtin_bswap16
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char __builtin_bswap16 (void);
        
        #if defined __stub___builtin_bswap16 || defined __stub_____builtin_bswap16
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return __builtin_bswap16 ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdn8n8ff6\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdn8n8ff6\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol __builtin_bswap16 referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdn8n8ff6\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "__builtin_bswap16" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpsb00bazc
Code:

        #define __builtin_bswap32 meson_disable_define_of___builtin_bswap32
        
        #include <limits.h>
        #undef __builtin_bswap32
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char __builtin_bswap32 (void);
        
        #if defined __stub___builtin_bswap32 || defined __stub_____builtin_bswap32
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return __builtin_bswap32 ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpsb00bazc\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpsb00bazc\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol __builtin_bswap32 referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpsb00bazc\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "__builtin_bswap32" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpzhxw0bwc
Code:

        #define __builtin_bswap64 meson_disable_define_of___builtin_bswap64
        
        #include <limits.h>
        #undef __builtin_bswap64
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char __builtin_bswap64 (void);
        
        #if defined __stub___builtin_bswap64 || defined __stub_____builtin_bswap64
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return __builtin_bswap64 ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpzhxw0bwc\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpzhxw0bwc\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol __builtin_bswap64 referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpzhxw0bwc\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "__builtin_bswap64" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpiagb7lpj
Code:

        #define __builtin_clz meson_disable_define_of___builtin_clz
        
        #include <limits.h>
        #undef __builtin_clz
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char __builtin_clz (void);
        
        #if defined __stub___builtin_clz || defined __stub_____builtin_clz
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return __builtin_clz ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpiagb7lpj\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpiagb7lpj\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol __builtin_clz referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpiagb7lpj\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "__builtin_clz" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp6hs9di_8
Code:

        #define __builtin_ctz meson_disable_define_of___builtin_ctz
        
        #include <limits.h>
        #undef __builtin_ctz
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char __builtin_ctz (void);
        
        #if defined __stub___builtin_ctz || defined __stub_____builtin_ctz
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return __builtin_ctz ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp6hs9di_8\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp6hs9di_8\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol __builtin_ctz referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp6hs9di_8\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "__builtin_ctz" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpsplj131g
Code:

        #define __builtin_constant_p meson_disable_define_of___builtin_constant_p
        
        #include <limits.h>
        #undef __builtin_constant_p
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char __builtin_constant_p (void);
        
        #if defined __stub___builtin_constant_p || defined __stub_____builtin_constant_p
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return __builtin_constant_p ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpsplj131g\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpsplj131g\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol __builtin_constant_p referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpsplj131g\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "__builtin_constant_p" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpbysz1rd_
Code:

        #define __builtin_frame_address meson_disable_define_of___builtin_frame_address
        
        #include <limits.h>
        #undef __builtin_frame_address
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char __builtin_frame_address (void);
        
        #if defined __stub___builtin_frame_address || defined __stub_____builtin_frame_address
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return __builtin_frame_address ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpbysz1rd_\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpbysz1rd_\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol __builtin_frame_address referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpbysz1rd_\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "__builtin_frame_address" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjuepok3q
Code:

        #define __builtin_popcount meson_disable_define_of___builtin_popcount
        
        #include <limits.h>
        #undef __builtin_popcount
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char __builtin_popcount (void);
        
        #if defined __stub___builtin_popcount || defined __stub_____builtin_popcount
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return __builtin_popcount ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjuepok3q\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjuepok3q\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol __builtin_popcount referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjuepok3q\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "__builtin_popcount" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz6gjmb4n
Code:

        #define __builtin_unreachable meson_disable_define_of___builtin_unreachable
        
        #include <limits.h>
        #undef __builtin_unreachable
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char __builtin_unreachable (void);
        
        #if defined __stub___builtin_unreachable || defined __stub_____builtin_unreachable
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return __builtin_unreachable ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz6gjmb4n\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz6gjmb4n\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol __builtin_unreachable referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpz6gjmb4n\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "__builtin_unreachable" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp27h4xfab
Code:

    static int x;
    static int y[__builtin_types_compatible_p(__typeof__(x), int)];
    
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp27h4xfab\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp27h4xfab\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp27h4xfab\testfile.c(3): error C2059: syntax error: 'type'
-----------
Checking if "__builtin_types_compatible_p" compiles: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpnli1x1kk
Code:

    INT64 a = 1;
    INT64 b = 1;
    INT64 result;

    int main(void)
    {
        return __builtin_mul_overflow(a, b, &result);
    }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpnli1x1kk\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpnli1x1kk\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib "-DINT64=long long int"` -> 2
stdout:
testfile.c
testfile.obj : error LNK2019: unresolved external symbol __builtin_mul_overflow referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpnli1x1kk\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking if "__builtin_mul_overflow" : links: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpwnxka_bp
Code:

    #include <cpuid.h>
    int main(int arg, char **argv)
    {
        unsigned int exx[4] = {0, 0, 0, 0};
        __get_cpuid(1, &exx[0], &exx[1], &exx[2], &exx[3]);
    }
    
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpwnxka_bp\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpwnxka_bp\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpwnxka_bp\testfile.c(2): fatal error C1083: Cannot open include file: 'cpuid.h': No such file or directory
-----------
Checking if "__get_cpuid" : links: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppc4p68d2
Code:

    #include <intrin.h>
    int main(int arg, char **argv)
    {
        unsigned int exx[4] = {0, 0, 0, 0};
        __cpuid(exx, 1);
    }
    
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppc4p68d2\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppc4p68d2\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\intrin.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\intrin0.inl.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\setjmp.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\immintrin.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\wmmintrin.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\nmmintrin.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\smmintrin.h
Note: including file:      C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\tmmintrin.h
Note: including file:       C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\pmmintrin.h
Note: including file:        C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\emmintrin.h
Note: including file:         C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xmmintrin.h
Note: including file:          C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\mmintrin.h
Note: including file:          C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\malloc.h
Note: including file:           C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:           C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_malloc.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\zmmintrin.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\ammintrin.h
-----------
Checking if "__cpuid" : links: YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphudsxqh7
Code:

    #include <cpuid.h>
    int main(int arg, char **argv)
    {
        unsigned int exx[4] = {0, 0, 0, 0};
        __get_cpuid_count(7, 0, &exx[0], &exx[1], &exx[2], &exx[3]);
    }
    
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphudsxqh7\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphudsxqh7\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphudsxqh7\testfile.c(2): fatal error C1083: Cannot open include file: 'cpuid.h': No such file or directory
-----------
Checking if "__get_cpuid_count" : links: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpsyr_kn34
Code:

    #include <intrin.h>
    int main(int arg, char **argv)
    {
        unsigned int exx[4] = {0, 0, 0, 0};
        __cpuidex(exx, 7, 0);
    }
    
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpsyr_kn34\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpsyr_kn34\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\intrin.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\intrin0.inl.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\setjmp.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\immintrin.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\wmmintrin.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\nmmintrin.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\smmintrin.h
Note: including file:      C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\tmmintrin.h
Note: including file:       C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\pmmintrin.h
Note: including file:        C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\emmintrin.h
Note: including file:         C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xmmintrin.h
Note: including file:          C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\mmintrin.h
Note: including file:          C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\malloc.h
Note: including file:           C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:           C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_malloc.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\zmmintrin.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\ammintrin.h
-----------
Checking if "__cpuidex" : links: YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpewv8acp1
Code:

#if defined(__clang__) && defined(__i386__) && !defined(__SSE2_MATH__)
choke me
#endif
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpewv8acp1\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpewv8acp1\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 0
stdout:
testfile.c
-----------
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpo1kra98v
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpo1kra98v\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpo1kra98v\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -fno-strict-aliasing` -> 0
stdout:
testfile.c
-----------
stderr:
cl : Command line warning D9002 : ignoring unknown option '-fno-strict-aliasing'
-----------
Compiler for C supports arguments -fno-strict-aliasing: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpebgpzzvx
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpebgpzzvx\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpebgpzzvx\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -fwrapv` -> 0
stdout:
testfile.c
-----------
stderr:
cl : Command line warning D9002 : ignoring unknown option '-fwrapv'
-----------
Compiler for C supports arguments -fwrapv: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp43sget6l
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp43sget6l\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp43sget6l\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -fexcess-precision=standard` -> 0
stdout:
testfile.c
-----------
stderr:
cl : Command line warning D9002 : ignoring unknown option '-fexcess-precision=standard'
-----------
Compiler for C supports arguments -fexcess-precision=standard: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpck8mrbb2
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpck8mrbb2\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpck8mrbb2\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -ftree-vectorize` -> 0
stdout:
testfile.c
-----------
stderr:
cl : Command line warning D9002 : ignoring unknown option '-ftree-vectorize'
-----------
Compiler for C supports arguments -ftree-vectorize: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppq11454c
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppq11454c\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppq11454c\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -funroll-loops` -> 0
stdout:
testfile.c
-----------
stderr:
cl : Command line warning D9002 : ignoring unknown option '-funroll-loops'
-----------
Compiler for C supports arguments -funroll-loops: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp4nxzrdpa
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp4nxzrdpa\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp4nxzrdpa\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Wmissing-prototypes` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Wmissing-prototypes'
-----------
Compiler for C supports arguments -Wmissing-prototypes: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpqiouxd8q
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpqiouxd8q\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpqiouxd8q\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Wpointer-arith` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Wpointer-arith'
-----------
Compiler for C supports arguments -Wpointer-arith: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpg4vhk8lo
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpg4vhk8lo\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpg4vhk8lo\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Werror=vla` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Werror=vla'
-----------
Compiler for C supports arguments -Werror=vla: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1kuej1eh
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1kuej1eh\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1kuej1eh\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Werror=unguarded-availability-new` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Werror=unguarded-availability-new'
-----------
Compiler for C supports arguments -Werror=unguarded-availability-new: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpzz4f2y08
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpzz4f2y08\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpzz4f2y08\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Wendif-labels` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Wendif-labels'
-----------
Compiler for C supports arguments -Wendif-labels: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpenepntz8
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpenepntz8\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpenepntz8\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Wmissing-format-attribute` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Wmissing-format-attribute'
-----------
Compiler for C supports arguments -Wmissing-format-attribute: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmprzmbyf1w
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmprzmbyf1w\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmprzmbyf1w\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Wimplicit-fallthrough=3` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Wimplicit-fallthrough=3'
-----------
Compiler for C supports arguments -Wimplicit-fallthrough=3: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpl0trrj9r
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpl0trrj9r\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpl0trrj9r\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Wcast-function-type` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Wcast-function-type'
-----------
Compiler for C supports arguments -Wcast-function-type: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpbgurwxi1
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpbgurwxi1\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpbgurwxi1\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Wshadow=compatible-local` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Wshadow=compatible-local'
-----------
Compiler for C supports arguments -Wshadow=compatible-local: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpzqk757nk
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpzqk757nk\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpzqk757nk\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Wformat-security` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Wformat-security'
-----------
Compiler for C supports arguments -Wformat-security: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdo7u1ib3
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdo7u1ib3\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdo7u1ib3\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Wdeclaration-after-statement` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Wdeclaration-after-statement'
-----------
Compiler for C supports arguments -Wdeclaration-after-statement: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjktlstdc
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjktlstdc\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjktlstdc\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Wunused-command-line-argument` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Wunused-command-line-argument'
-----------
Compiler for C supports arguments -Wunused-command-line-argument: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5dnafn50
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5dnafn50\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5dnafn50\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Wcompound-token-split-by-macro` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Wcompound-token-split-by-macro'
-----------
Compiler for C supports arguments -Wcompound-token-split-by-macro: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7jii_e0l
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7jii_e0l\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7jii_e0l\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Wformat-truncation` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Wformat-truncation'
-----------
Compiler for C supports arguments -Wformat-truncation: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpvszjnpbr
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpvszjnpbr\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpvszjnpbr\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Wstringop-truncation` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Wstringop-truncation'
-----------
Compiler for C supports arguments -Wstringop-truncation: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpx1vhnq70
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpx1vhnq70\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpx1vhnq70\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Wcast-function-type-strict` -> 2
stderr:
cl : Command line error D8021 : invalid numeric argument '/Wcast-function-type-strict'
-----------
Compiler for C supports arguments -Wcast-function-type-strict: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpiqbsa138
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpiqbsa138\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpiqbsa138\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -Wall` -> 0
stdout:
testfile.c
-----------
Compiler for C supports arguments -Wall: YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_kf555fu
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_kf555fu\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_kf555fu\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -O3` -> 0
stdout:
testfile.c
-----------
stderr:
cl : Command line warning D9002 : ignoring unknown option '-O3'
-----------
Compiler for C supports arguments -O3: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpihhswm95
Code:

int main(void)
{

char lock = 0;
__sync_lock_test_and_set(&lock, 1);
__sync_lock_release(&lock);
}
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpihhswm95\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpihhswm95\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib "-DINT64=long long int"` -> 2
stdout:
testfile.c
testfile.obj : error LNK2019: unresolved external symbol __sync_lock_test_and_set referenced in function main
testfile.obj : error LNK2019: unresolved external symbol __sync_lock_release referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpihhswm95\output.exe : fatal error LNK1120: 2 unresolved externals
-----------
Checking if "__sync_lock_test_and_set(char)" : links: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpf5cszerh
Code:

int main(void)
{

int lock = 0;
__sync_lock_test_and_set(&lock, 1);
__sync_lock_release(&lock);
}
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpf5cszerh\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpf5cszerh\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib "-DINT64=long long int"` -> 2
stdout:
testfile.c
testfile.obj : error LNK2019: unresolved external symbol __sync_lock_test_and_set referenced in function main
testfile.obj : error LNK2019: unresolved external symbol __sync_lock_release referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpf5cszerh\output.exe : fatal error LNK1120: 2 unresolved externals
-----------
Checking if "__sync_lock_test_and_set(int32)" : links: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpwfl6yw1y
Code:

int main(void)
{

int val = 0;
__sync_val_compare_and_swap(&val, 0, 37);
}
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpwfl6yw1y\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpwfl6yw1y\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib "-DINT64=long long int"` -> 2
stdout:
testfile.c
testfile.obj : error LNK2019: unresolved external symbol __sync_val_compare_and_swap referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpwfl6yw1y\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking if "__sync_val_compare_and_swap(int32)" : links: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5w9t8f2f
Code:

int main(void)
{

INT64 val = 0;
__sync_val_compare_and_swap(&val, 0, 37);
}
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5w9t8f2f\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5w9t8f2f\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib "-DINT64=long long int"` -> 2
stdout:
testfile.c
testfile.obj : error LNK2019: unresolved external symbol __sync_val_compare_and_swap referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5w9t8f2f\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking if "__sync_val_compare_and_swap(int64)" : links: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp98diidry
Code:

int main(void)
{

int val = 0;
int expect = 0;
__atomic_compare_exchange_n(&val, &expect, 37, 0, __ATOMIC_SEQ_CST, __ATOMIC_RELAXED);
}
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp98diidry\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp98diidry\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib "-DINT64=long long int"` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp98diidry\testfile.c(7): error C2065: '__ATOMIC_SEQ_CST': undeclared identifier
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp98diidry\testfile.c(7): error C2065: '__ATOMIC_RELAXED': undeclared identifier
-----------
Checking if " __atomic_compare_exchange_n(int32)" : links: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp8hd3hqv9
Code:

int main(void)
{

INT64 val = 0;
INT64 expect = 0;
__atomic_compare_exchange_n(&val, &expect, 37, 0, __ATOMIC_SEQ_CST, __ATOMIC_RELAXED);
}
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp8hd3hqv9\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp8hd3hqv9\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib "-DINT64=long long int"` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp8hd3hqv9\testfile.c(7): error C2065: '__ATOMIC_SEQ_CST': undeclared identifier
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp8hd3hqv9\testfile.c(7): error C2065: '__ATOMIC_RELAXED': undeclared identifier
-----------
Checking if " __atomic_compare_exchange_n(int64)" : links: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphvtnoa0_
Code:

#include <immintrin.h>

int main(void)
{
    return _xgetbv(0) & 0xe0;
}

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphvtnoa0_\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphvtnoa0_\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\immintrin.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\wmmintrin.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\nmmintrin.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\smmintrin.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\tmmintrin.h
Note: including file:      C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\pmmintrin.h
Note: including file:       C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\emmintrin.h
Note: including file:        C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xmmintrin.h
Note: including file:         C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\mmintrin.h
Note: including file:         C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\malloc.h
Note: including file:          C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:           C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:            C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:             C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:            C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file:          C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_malloc.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\zmmintrin.h
-----------
Checking if "XSAVE intrinsics without -mxsave" : links: YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7_g17063
Code:

#include <immintrin.h>

int main(void)
{
    const char buf[sizeof(__m512i)];
    INT64 popcnt = 0;
    __m512i accum = _mm512_setzero_si512();
    const __m512i val = _mm512_maskz_loadu_epi8((__mmask64) 0xf0f0f0f0f0f0f0f0, (const __m512i *) buf);
    const __m512i cnt = _mm512_popcnt_epi64(val);
    accum = _mm512_add_epi64(accum, cnt);
    popcnt = _mm512_reduce_add_epi64(accum);
    /* return computed value, to prevent the above being optimized away */
    return popcnt == 0;
}

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7_g17063\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7_g17063\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib "-DINT64=long long int"` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\immintrin.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\wmmintrin.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\nmmintrin.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\smmintrin.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\tmmintrin.h
Note: including file:      C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\pmmintrin.h
Note: including file:       C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\emmintrin.h
Note: including file:        C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xmmintrin.h
Note: including file:         C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\mmintrin.h
Note: including file:         C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\malloc.h
Note: including file:          C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:           C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:            C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:             C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:            C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file:          C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_malloc.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\zmmintrin.h
-----------
Checking if "AVX-512 popcount without -mavx512vpopcntdq -mavx512bw" : links: YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpthdbohyi
Code:

      void main(void)
      {
          long long x = 1; long long r;
          __asm__ __volatile__ (" popcntq %1,%0\n" : "=q"(r) : "rm"(x));
      }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpthdbohyi\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpthdbohyi\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpthdbohyi\testfile.c(5): error C2065: '__asm__': undeclared identifier
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpthdbohyi\testfile.c(5): error C2146: syntax error: missing ';' before identifier '__volatile__'
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpthdbohyi\testfile.c(5): error C2143: syntax error: missing ')' before ':'
-----------
Checking if "x86_64: popcntq instruction" compiles: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpok_6sq6i
Code:

        #ifdef __has_include
         #if !__has_include("atomic.h")
          #error "Header 'atomic.h' could not be found"
         #endif
        #else
         #include <atomic.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpok_6sq6i\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpok_6sq6i\testfile.c(4): fatal error C1189: #error:  "Header 'atomic.h' could not be found"
-----------
Has header "atomic.h" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp30jb0zae
Code:

        #ifdef __has_include
         #if !__has_include("copyfile.h")
          #error "Header 'copyfile.h' could not be found"
         #endif
        #else
         #include <copyfile.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp30jb0zae\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp30jb0zae\testfile.c(4): fatal error C1189: #error:  "Header 'copyfile.h' could not be found"
-----------
Has header "copyfile.h" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpm7qd10fp
Code:

        #ifdef __has_include
         #if !__has_include("crtdefs.h")
          #error "Header 'crtdefs.h' could not be found"
         #endif
        #else
         #include <crtdefs.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpm7qd10fp\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 0
stderr:
testfile.c
-----------
Has header "crtdefs.h" : YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2vuquxy1
Code:

        #ifdef __has_include
         #if !__has_include("execinfo.h")
          #error "Header 'execinfo.h' could not be found"
         #endif
        #else
         #include <execinfo.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2vuquxy1\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2vuquxy1\testfile.c(4): fatal error C1189: #error:  "Header 'execinfo.h' could not be found"
-----------
Has header "execinfo.h" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpf7uxxkeo
Code:

        #ifdef __has_include
         #if !__has_include("getopt.h")
          #error "Header 'getopt.h' could not be found"
         #endif
        #else
         #include <getopt.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpf7uxxkeo\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpf7uxxkeo\testfile.c(4): fatal error C1189: #error:  "Header 'getopt.h' could not be found"
-----------
Has header "getopt.h" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5j94svur
Code:

        #ifdef __has_include
         #if !__has_include("ifaddrs.h")
          #error "Header 'ifaddrs.h' could not be found"
         #endif
        #else
         #include <ifaddrs.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5j94svur\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5j94svur\testfile.c(4): fatal error C1189: #error:  "Header 'ifaddrs.h' could not be found"
-----------
Has header "ifaddrs.h" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpyeu8swi6
Code:

        #ifdef __has_include
         #if !__has_include("langinfo.h")
          #error "Header 'langinfo.h' could not be found"
         #endif
        #else
         #include <langinfo.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpyeu8swi6\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpyeu8swi6\testfile.c(4): fatal error C1189: #error:  "Header 'langinfo.h' could not be found"
-----------
Has header "langinfo.h" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpo4qppyjt
Code:

        #ifdef __has_include
         #if !__has_include("mbarrier.h")
          #error "Header 'mbarrier.h' could not be found"
         #endif
        #else
         #include <mbarrier.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpo4qppyjt\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpo4qppyjt\testfile.c(4): fatal error C1189: #error:  "Header 'mbarrier.h' could not be found"
-----------
Has header "mbarrier.h" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpg1akwg94
Code:

        #ifdef __has_include
         #if !__has_include("stdbool.h")
          #error "Header 'stdbool.h' could not be found"
         #endif
        #else
         #include <stdbool.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpg1akwg94\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 0
stderr:
testfile.c
-----------
Has header "stdbool.h" : YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp8_yu8vdm
Code:

        #ifdef __has_include
         #if !__has_include("strings.h")
          #error "Header 'strings.h' could not be found"
         #endif
        #else
         #include <strings.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp8_yu8vdm\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp8_yu8vdm\testfile.c(4): fatal error C1189: #error:  "Header 'strings.h' could not be found"
-----------
Has header "strings.h" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpaj0htww3
Code:

        #ifdef __has_include
         #if !__has_include("sys/epoll.h")
          #error "Header 'sys/epoll.h' could not be found"
         #endif
        #else
         #include <sys/epoll.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpaj0htww3\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpaj0htww3\testfile.c(4): fatal error C1189: #error:  "Header 'sys/epoll.h' could not be found"
-----------
Has header "sys/epoll.h" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpw8_pmlfv
Code:

        #ifdef __has_include
         #if !__has_include("sys/event.h")
          #error "Header 'sys/event.h' could not be found"
         #endif
        #else
         #include <sys/event.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpw8_pmlfv\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpw8_pmlfv\testfile.c(4): fatal error C1189: #error:  "Header 'sys/event.h' could not be found"
-----------
Has header "sys/event.h" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_ba5uq9v
Code:

        #ifdef __has_include
         #if !__has_include("sys/personality.h")
          #error "Header 'sys/personality.h' could not be found"
         #endif
        #else
         #include <sys/personality.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_ba5uq9v\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_ba5uq9v\testfile.c(4): fatal error C1189: #error:  "Header 'sys/personality.h' could not be found"
-----------
Has header "sys/personality.h" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpki4pbnkw
Code:

        #ifdef __has_include
         #if !__has_include("sys/prctl.h")
          #error "Header 'sys/prctl.h' could not be found"
         #endif
        #else
         #include <sys/prctl.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpki4pbnkw\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpki4pbnkw\testfile.c(4): fatal error C1189: #error:  "Header 'sys/prctl.h' could not be found"
-----------
Has header "sys/prctl.h" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpa3pbwre4
Code:

        #ifdef __has_include
         #if !__has_include("sys/procctl.h")
          #error "Header 'sys/procctl.h' could not be found"
         #endif
        #else
         #include <sys/procctl.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpa3pbwre4\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpa3pbwre4\testfile.c(4): fatal error C1189: #error:  "Header 'sys/procctl.h' could not be found"
-----------
Has header "sys/procctl.h" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpptb_y11b
Code:

        #ifdef __has_include
         #if !__has_include("sys/signalfd.h")
          #error "Header 'sys/signalfd.h' could not be found"
         #endif
        #else
         #include <sys/signalfd.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpptb_y11b\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpptb_y11b\testfile.c(4): fatal error C1189: #error:  "Header 'sys/signalfd.h' could not be found"
-----------
Has header "sys/signalfd.h" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpm6r78z2z
Code:

        #ifdef __has_include
         #if !__has_include("sys/ucred.h")
          #error "Header 'sys/ucred.h' could not be found"
         #endif
        #else
         #include <sys/ucred.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpm6r78z2z\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpm6r78z2z\testfile.c(4): fatal error C1189: #error:  "Header 'sys/ucred.h' could not be found"
-----------
Has header "sys/ucred.h" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppzaafl4t
Code:

        #ifdef __has_include
         #if !__has_include("termios.h")
          #error "Header 'termios.h' could not be found"
         #endif
        #else
         #include <termios.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppzaafl4t\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppzaafl4t\testfile.c(4): fatal error C1189: #error:  "Header 'termios.h' could not be found"
-----------
Has header "termios.h" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppg03uprh
Code:

        #ifdef __has_include
         #if !__has_include("ucred.h")
          #error "Header 'ucred.h' could not be found"
         #endif
        #else
         #include <ucred.h>
        #endif
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppg03uprh\testfile.c /nologo /showIncludes /utf-8 /EP /nologo /showIncludes /utf-8 /EP /Od /Oi-` -> 2
stderr:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppg03uprh\testfile.c(4): fatal error C1189: #error:  "Header 'ucred.h' could not be found"
-----------
Has header "ucred.h" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1a65q4lo
Code:

        #include <fcntl.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef F_FULLFSYNC
                F_FULLFSYNC;
            #endif
            return 0;
        }
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1a65q4lo\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1a65q4lo\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\fcntl.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1a65q4lo\testfile.c(6): error C2065: 'F_FULLFSYNC': undeclared identifier
-----------
Header "fcntl.h" has symbol "F_FULLFSYNC" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfyeogjsv
Code:

        #include <unistd.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef fdatasync
                fdatasync;
            #endif
            return 0;
        }
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfyeogjsv\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfyeogjsv\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
Note: including file: D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc\unistd.h
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfyeogjsv\testfile.c(6): error C2065: 'fdatasync': undeclared identifier
-----------
Header "unistd.h" has symbol "fdatasync" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpen2msj5s
Code:

        #include <fcntl.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef posix_fadvise
                posix_fadvise;
            #endif
            return 0;
        }
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpen2msj5s\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpen2msj5s\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\fcntl.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpen2msj5s\testfile.c(6): error C2065: 'posix_fadvise': undeclared identifier
-----------
Header "fcntl.h" has symbol "posix_fadvise" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphwze9nvj
Code:

        #include <string.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef strlcat
                strlcat;
            #endif
            return 0;
        }
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphwze9nvj\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphwze9nvj\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\string.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_memory.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_memcpy_s.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\errno.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime_string.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstring.h
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphwze9nvj\testfile.c(6): error C2065: 'strlcat': undeclared identifier
-----------
Header "string.h" has symbol "strlcat" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpl3sm3x76
Code:

        #include <string.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef strlcpy
                strlcpy;
            #endif
            return 0;
        }
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpl3sm3x76\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpl3sm3x76\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\string.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_memory.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_memcpy_s.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\errno.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime_string.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstring.h
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpl3sm3x76\testfile.c(6): error C2065: 'strlcpy': undeclared identifier
-----------
Header "string.h" has symbol "strlcpy" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpigik6ssr
Code:

        #include <string.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef strnlen
                strnlen;
            #endif
            return 0;
        }
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpigik6ssr\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpigik6ssr\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\string.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_memory.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_memcpy_s.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\errno.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime_string.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstring.h
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpigik6ssr\testfile.c(6): warning C4550: expression evaluates to a function which is missing an argument list
-----------
Header "string.h" has symbol "strnlen" : YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfl7sdxqw
Code:

        #include <sys/uio.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef preadv
                preadv;
            #endif
            return 0;
        }
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfl7sdxqw\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfl7sdxqw\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfl7sdxqw\testfile.c(2): fatal error C1083: Cannot open include file: 'sys/uio.h': No such file or directory
-----------
Header "sys/uio.h" has symbol "preadv" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpa5vlsdtj
Code:

        #include <sys/uio.h>
        int main(void) {
            /* If it's not defined as a macro, try to use as a symbol */
            #ifndef pwritev
                pwritev;
            #endif
            return 0;
        }
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpa5vlsdtj\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpa5vlsdtj\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpa5vlsdtj\testfile.c(2): fatal error C1083: Cannot open include file: 'sys/uio.h': No such file or directory
-----------
Header "sys/uio.h" has symbol "pwritev" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphh6gnttm
Code:

        void bar(void) {
            (void) sizeof(struct option);
        }
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphh6gnttm\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphh6gnttm\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphh6gnttm\testfile.c(3): error C2027: use of undefined type 'option'
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphh6gnttm\testfile.c(3): note: see declaration of 'option'
-----------
Checking for type "struct option" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2yeuhna1
Code:

#include <unistd.h>
int main(void)
{
    extern int opterr;
    opterr = 1;
}

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2yeuhna1\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2yeuhna1\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2yeuhna1\testfile.c(2): fatal error C1083: Cannot open include file: 'unistd.h': No such file or directory
-----------
Checking if "opterr" : links: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpr5uwfv5b
Code:

#include <unistd.h>
int main(void)
{
    extern int optreset;
    optreset = 1;
}

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpr5uwfv5b\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpr5uwfv5b\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpr5uwfv5b\testfile.c(2): fatal error C1083: Cannot open include file: 'unistd.h': No such file or directory
-----------
Checking if "optreset" : links: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfyu91vuu
Code:

#include <sys/socket.h>
        void bar(void) {
            (void) sizeof(socklen_t);
        }
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfyu91vuu\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfyu91vuu\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 0
stdout:
testfile.c
Note: including file: D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32\sys/socket.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winsock2.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\winapifamily.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\winpackagefamily.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\windows.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\sdkddkver.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\excpt.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:      C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:       C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:      C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\stdarg.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\windef.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\minwindef.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\specstrings.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\specstrings_strict.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\specstrings_undef.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\driverspecs.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\sdv_driverspecs.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winnt.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\ctype.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wctype.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\kernelspecs.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\basetsd.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\guiddef.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\string.h
Note: including file:         C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_memory.h
Note: including file:          C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_memcpy_s.h
Note: including file:           C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\errno.h
Note: including file:           C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime_string.h
Note: including file:         C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstring.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack4.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack4.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack4.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack2.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack2.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack2.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\apiset.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\ktmtypes.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\apisetcconv.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\minwinbase.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\apiquery2.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\processenv.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\fileapifromapp.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\fileapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\debugapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\utilapiset.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\handleapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\errhandlingapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\fibersapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\namedpipeapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\profileapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\heapapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\ioapiset.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\synchapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\interlockedapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\processthreadsapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\sysinfoapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\memoryapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\enclaveapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\threadpoollegacyapiset.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\threadpoolapiset.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\jobapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\jobapi2.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\wow64apiset.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\libloaderapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\securitybaseapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\namespaceapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\systemtopologyapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\processtopologyapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\securityappcontainer.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\realtimeapiset.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\winerror.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\timezoneapi.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\wingdi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack2.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack2.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack4.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack4.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winuser.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack2.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\tvout.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winnls.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\datetimeapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\stringapiset.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winnls.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\wincon.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\wincontypes.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\consoleapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\consoleapi2.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\consoleapi3.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winver.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\verrsrc.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winreg.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\reason.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winnetwk.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\wnnc.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\cderr.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\dde.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\ddeml.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\dlgs.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\lzexpand.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsystem.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsyscom.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mciapi.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsyscom.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmiscapi.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsyscom.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmiscapi2.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsyscom.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\playsoundapi.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsyscom.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmeapi.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsyscom.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\timeapi.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsyscom.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\joystickapi.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsyscom.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\nb30.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\rpc.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\rpcdce.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\rpcdcep.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\rpcnsi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\rpcnterr.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\rpcasync.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\shellapi.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winperf.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winsock.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\wincrypt.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\bcrypt.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\ncrypt.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\dpapi.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winefs.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winscard.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\wtypes.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\rpcndr.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\rpcnsip.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\rpcsal.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\wtypesbase.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\guiddef.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winioctl.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\winsmcrd.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winspool.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\prsht.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\ole2.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\objbase.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\combaseapi.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stdlib.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_malloc.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_search.h
Note: including file:         C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stddef.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstdlib.h
Note: including file:        C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\unknwnbase.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\objidlbase.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\guiddef.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\cguid.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\coml2api.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\objidl.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\unknwn.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\propidlbase.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\oaidl.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\urlmon.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\oleidl.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\servprov.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\msxml.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\propidl.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\oleauto.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\commdlg.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\prsht.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\stralign.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winsvc.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mcx.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\imm.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\ime_cmodes.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\ws2def.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\inaddr.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\qos.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\ws2tcpip.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\ws2ipdef.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\in6addr.h
-----------
Checking for type "socklen_t" : YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpv1oeu8fg
Code:

#include <sys/types.h>
#include <sys/socket.h>
        void bar(void) {
            struct sockaddr foo;
            (void) ( foo.sa_len );

            (void) foo;
        }
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpv1oeu8fg\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpv1oeu8fg\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\sys/types.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file: D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32\sys/socket.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winsock2.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\winapifamily.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\winpackagefamily.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\windows.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\sdkddkver.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\excpt.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\stdarg.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\windef.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\minwindef.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\specstrings.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\specstrings_strict.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\specstrings_undef.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\driverspecs.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\sdv_driverspecs.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winnt.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\ctype.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wctype.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\kernelspecs.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\basetsd.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\guiddef.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\string.h
Note: including file:         C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_memory.h
Note: including file:          C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_memcpy_s.h
Note: including file:           C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\errno.h
Note: including file:           C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime_string.h
Note: including file:         C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstring.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack4.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack4.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack4.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack2.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack2.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack2.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\apiset.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\ktmtypes.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\apisetcconv.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\minwinbase.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\apiquery2.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\processenv.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\fileapifromapp.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\fileapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\debugapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\utilapiset.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\handleapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\errhandlingapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\fibersapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\namedpipeapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\profileapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\heapapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\ioapiset.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\synchapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\interlockedapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\processthreadsapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\sysinfoapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\memoryapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\enclaveapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\threadpoollegacyapiset.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\threadpoolapiset.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\jobapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\jobapi2.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\wow64apiset.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\libloaderapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\securitybaseapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\namespaceapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\systemtopologyapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\processtopologyapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\securityappcontainer.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\realtimeapiset.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\winerror.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\timezoneapi.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\wingdi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack2.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack2.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack4.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack4.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winuser.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack2.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\tvout.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winnls.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\datetimeapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\stringapiset.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winnls.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\wincon.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\wincontypes.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\consoleapi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\consoleapi2.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\consoleapi3.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winver.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\verrsrc.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winreg.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\reason.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winnetwk.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\wnnc.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\cderr.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\dde.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\ddeml.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\dlgs.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\lzexpand.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsystem.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsyscom.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mciapi.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsyscom.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmiscapi.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsyscom.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmiscapi2.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsyscom.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\playsoundapi.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsyscom.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmeapi.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsyscom.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\timeapi.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsyscom.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\joystickapi.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mmsyscom.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\nb30.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\rpc.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\rpcdce.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\rpcdcep.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\rpcnsi.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\rpcnterr.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\rpcasync.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\shellapi.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winperf.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winsock.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\wincrypt.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\bcrypt.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\ncrypt.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\dpapi.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winefs.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winscard.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\wtypes.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\rpcndr.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\rpcnsip.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\rpcsal.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\wtypesbase.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\guiddef.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winioctl.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack1.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\winsmcrd.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winspool.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\prsht.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\ole2.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\objbase.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\combaseapi.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stdlib.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_malloc.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_search.h
Note: including file:         C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stddef.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstdlib.h
Note: including file:        C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\unknwnbase.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\objidlbase.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\guiddef.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\cguid.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\coml2api.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\objidl.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\unknwn.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\propidlbase.h
Note: including file:        C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\oaidl.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\urlmon.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\oleidl.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\servprov.h
Note: including file:       C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\msxml.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\propidl.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\oleauto.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\pshpack8.h
Note: including file:      C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\poppack.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\commdlg.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\prsht.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\stralign.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winsvc.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\mcx.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\imm.h
Note: including file:     C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\ime_cmodes.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\ws2def.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\inaddr.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\qos.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\ws2tcpip.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\ws2ipdef.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\in6addr.h
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpv1oeu8fg\testfile.c(6): error C2039: 'sa_len': is not a member of 'sockaddr'
C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared\ws2def.h(240): note: see declaration of 'sockaddr'
-----------
Checking whether type "struct sockaddr" has member "sa_len" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpmfwzzjrn
Code:

#include <sys/types.h>
#include <time.h>

        void bar(void) {
            struct tm foo;
            (void) ( foo.tm_zone );

            (void) foo;
        }
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpmfwzzjrn\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpmfwzzjrn\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\sys/types.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\time.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wtime.h
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpmfwzzjrn\testfile.c(7): error C2039: 'tm_zone': is not a member of 'tm'
C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wtime.h(26): note: see declaration of 'tm'
-----------
Checking whether type "struct tm" has member "tm_zone" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpcw1grb23
Code:

#include <time.h>
extern int foo(void);
int foo(void)
{
    return timezone / 60;
}

-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpcw1grb23\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpcw1grb23\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\time.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wtime.h
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpcw1grb23\testfile.c(6): error C2065: 'timezone': undeclared identifier
-----------
Checking if "global variable `timezone' exists" compiles: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjulwstop
Code:

#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>

        void bar(void) {
            (void) sizeof(union semun);
        }
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjulwstop\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjulwstop\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\sys/types.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjulwstop\testfile.c(3): fatal error C1083: Cannot open include file: 'sys/ipc.h': No such file or directory
-----------
Checking for type "union semun" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpyjypt55d
Code:

#include <string.h>
int main(void)
{
  char buf[100];
  switch (strerror_r(1, buf, sizeof(buf)))
  { case 0: break; default: break; }
}
-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpyjypt55d\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpyjypt55d\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\string.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_memory.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_memcpy_s.h
Note: including file:    C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\errno.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime_string.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstring.h
-----------
Checking if "strerror_r" compiles: YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp81zyv6_b
Code:
#include <locale.h>
        void bar(void) {
            (void) sizeof(locale_t);
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp81zyv6_b\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp81zyv6_b\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\locale.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp81zyv6_b\testfile.c(3): error C2065: 'locale_t': undeclared identifier
-----------
Checking for type "locale_t" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpy9_rrnq1
Code:
#include <xlocale.h>
        void bar(void) {
            (void) sizeof(locale_t);
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpy9_rrnq1\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpy9_rrnq1\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpy9_rrnq1\testfile.c(1): fatal error C1083: Cannot open include file: 'xlocale.h': No such file or directory
-----------
Checking for type "locale_t" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpkjm6og2o
Code:

int main(void)
{
    int x = 0;
    typeof(x) y;
    y = x;
    return y;
}

-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpkjm6og2o\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpkjm6og2o\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpkjm6og2o\testfile.c(5): error C2146: syntax error: missing ';' before identifier 'y'
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpkjm6og2o\testfile.c(5): error C2065: 'y': undeclared identifier
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpkjm6og2o\testfile.c(6): error C2065: 'y': undeclared identifier
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpkjm6og2o\testfile.c(7): error C2065: 'y': undeclared identifier
-----------
Checking if "typeof()" compiles: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp4i6npc_a
Code:

int main(void)
{
    int x = 0;
    __typeof__(x) y;
    y = x;
    return y;
}

-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp4i6npc_a\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp4i6npc_a\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp4i6npc_a\testfile.c(5): error C2146: syntax error: missing ';' before identifier 'y'
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp4i6npc_a\testfile.c(5): error C2065: 'y': undeclared identifier
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp4i6npc_a\testfile.c(6): error C2065: 'y': undeclared identifier
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp4i6npc_a\testfile.c(7): error C2065: 'y': undeclared identifier
-----------
Checking if "typeof()" compiles: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7qu1bx0g
Code:

int main(void)
{
    int x = 0;
    decltype(x) y;
    y = x;
    return y;
}

-----------
Command line: `cl -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include -ID:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6 -ID:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32 -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/include/port/win32_msvc -ID:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\src/include/port/win32_msvc D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7qu1bx0g\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7qu1bx0g\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7qu1bx0g\testfile.c(5): error C2146: syntax error: missing ';' before identifier 'y'
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7qu1bx0g\testfile.c(5): error C2065: 'y': undeclared identifier
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7qu1bx0g\testfile.c(6): error C2065: 'y': undeclared identifier
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp7qu1bx0g\testfile.c(7): error C2065: 'y': undeclared identifier
-----------
Checking if "typeof()" compiles: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpf94pstmu
Code:

#include <stdlib.h>
#include <locale.h>


void main(void)
{
#ifndef wcstombs_l
    (void) wcstombs_l;
#endif
}

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpf94pstmu\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpf94pstmu\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stdlib.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_malloc.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_search.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stddef.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstdlib.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\locale.h
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpf94pstmu\testfile.c(9): error C2065: 'wcstombs_l': undeclared identifier
-----------
Checking if "wcstombs_l" compiles: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjw63nrxn
Code:

#include <stdlib.h>
#include <locale.h>
#include <xlocale.h>

void main(void)
{
#ifndef wcstombs_l
    (void) wcstombs_l;
#endif
}

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjw63nrxn\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjw63nrxn\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi-` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stdlib.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:     C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_malloc.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_search.h
Note: including file:   C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\stddef.h
Note: including file:  C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt_wstdlib.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file: C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\locale.h
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjw63nrxn\testfile.c(4): fatal error C1083: Cannot open include file: 'xlocale.h': No such file or directory
-----------
Checking if "wcstombs_l in xlocale.h" compiles: NO 
Library m found: NO
Library rt found: NO
Library dl found: NO
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5tyf5i17
Code:
int main(void) { return 0; }

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5tyf5i17\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5tyf5i17\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- util.lib /link /release /nologo` -> 2
stdout:
testfile.c
LINK : fatal error LNK1181: cannot open input file 'util.lib'
-----------
Library util found: NO
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp54a5svzy
Code:
int main(void) { return 0; }

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp54a5svzy\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp54a5svzy\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- getopt.lib /link /release /nologo` -> 2
stdout:
testfile.c
LINK : fatal error LNK1181: cannot open input file 'getopt.lib'
-----------
Library getopt found: NO
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5pnikevo
Code:
int main(void) { return 0; }

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5pnikevo\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5pnikevo\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- gnugetopt.lib /link /release /nologo` -> 2
stdout:
testfile.c
LINK : fatal error LNK1181: cannot open input file 'gnugetopt.lib'
-----------
Library gnugetopt found: NO
Library execinfo found: NO
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjs0v0smu
Code:

        #define _configthreadlocale meson_disable_define_of__configthreadlocale
        
        #include <limits.h>
        #undef _configthreadlocale
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char _configthreadlocale (void);
        
        #if defined __stub__configthreadlocale || defined __stub____configthreadlocale
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return _configthreadlocale ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjs0v0smu\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpjs0v0smu\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
-----------
Checking for function "_configthreadlocale" : YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpxrahal9c
Code:

        #define backtrace_symbols meson_disable_define_of_backtrace_symbols
        
        #include <limits.h>
        #undef backtrace_symbols
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char backtrace_symbols (void);
        
        #if defined __stub_backtrace_symbols || defined __stub___backtrace_symbols
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return backtrace_symbols ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpxrahal9c\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpxrahal9c\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol backtrace_symbols referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpxrahal9c\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "backtrace_symbols" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpy41a0y51
Code:

        #define clock_gettime meson_disable_define_of_clock_gettime
        
        #include <limits.h>
        #undef clock_gettime
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char clock_gettime (void);
        
        #if defined __stub_clock_gettime || defined __stub___clock_gettime
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return clock_gettime ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpy41a0y51\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpy41a0y51\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol clock_gettime referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpy41a0y51\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "clock_gettime" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpasu0d_b8
Code:

        #define copyfile meson_disable_define_of_copyfile
        
        #include <limits.h>
        #undef copyfile
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char copyfile (void);
        
        #if defined __stub_copyfile || defined __stub___copyfile
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return copyfile ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpasu0d_b8\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpasu0d_b8\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol copyfile referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpasu0d_b8\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "copyfile" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmploybhgr8
Code:

        #define copy_file_range meson_disable_define_of_copy_file_range
        
        #include <limits.h>
        #undef copy_file_range
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char copy_file_range (void);
        
        #if defined __stub_copy_file_range || defined __stub___copy_file_range
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return copy_file_range ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmploybhgr8\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmploybhgr8\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol copy_file_range referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmploybhgr8\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "copy_file_range" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpc1pcg2xw
Code:

        #define dlsym meson_disable_define_of_dlsym
        
        #include <limits.h>
        #undef dlsym
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char dlsym (void);
        
        #if defined __stub_dlsym || defined __stub___dlsym
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return dlsym ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpc1pcg2xw\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpc1pcg2xw\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol dlsym referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpc1pcg2xw\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "dlsym" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp9svhbqod
Code:

        #define explicit_bzero meson_disable_define_of_explicit_bzero
        
        #include <limits.h>
        #undef explicit_bzero
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char explicit_bzero (void);
        
        #if defined __stub_explicit_bzero || defined __stub___explicit_bzero
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return explicit_bzero ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp9svhbqod\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp9svhbqod\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol explicit_bzero referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp9svhbqod\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "explicit_bzero" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpmralse2v
Code:

        #define getifaddrs meson_disable_define_of_getifaddrs
        
        #include <limits.h>
        #undef getifaddrs
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getifaddrs (void);
        
        #if defined __stub_getifaddrs || defined __stub___getifaddrs
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getifaddrs ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpmralse2v\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpmralse2v\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol getifaddrs referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpmralse2v\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "getifaddrs" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpaopcey7k
Code:

        #define getpeereid meson_disable_define_of_getpeereid
        
        #include <limits.h>
        #undef getpeereid
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getpeereid (void);
        
        #if defined __stub_getpeereid || defined __stub___getpeereid
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getpeereid ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpaopcey7k\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpaopcey7k\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol getpeereid referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpaopcey7k\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "getpeereid" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfsj7p22a
Code:

        #define getpeerucred meson_disable_define_of_getpeerucred
        
        #include <limits.h>
        #undef getpeerucred
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char getpeerucred (void);
        
        #if defined __stub_getpeerucred || defined __stub___getpeerucred
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return getpeerucred ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfsj7p22a\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfsj7p22a\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol getpeerucred referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfsj7p22a\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "getpeerucred" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5jw2_ab2
Code:

        #define inet_aton meson_disable_define_of_inet_aton
        
        #include <limits.h>
        #undef inet_aton
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char inet_aton (void);
        
        #if defined __stub_inet_aton || defined __stub___inet_aton
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return inet_aton ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5jw2_ab2\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5jw2_ab2\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol inet_aton referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp5jw2_ab2\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "inet_aton" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpxgjx9d4j
Code:

        #define inet_pton meson_disable_define_of_inet_pton
        
        #include <limits.h>
        #undef inet_pton
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char inet_pton (void);
        
        #if defined __stub_inet_pton || defined __stub___inet_pton
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return inet_pton ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpxgjx9d4j\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpxgjx9d4j\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol inet_pton referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpxgjx9d4j\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "inet_pton" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppwfi03v0
Code:

        #define kqueue meson_disable_define_of_kqueue
        
        #include <limits.h>
        #undef kqueue
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char kqueue (void);
        
        #if defined __stub_kqueue || defined __stub___kqueue
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return kqueue ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppwfi03v0\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppwfi03v0\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol kqueue referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmppwfi03v0\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "kqueue" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmputp1fqda
Code:

        #define mbstowcs_l meson_disable_define_of_mbstowcs_l
        
        #include <limits.h>
        #undef mbstowcs_l
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char mbstowcs_l (void);
        
        #if defined __stub_mbstowcs_l || defined __stub___mbstowcs_l
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return mbstowcs_l ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmputp1fqda\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmputp1fqda\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol mbstowcs_l referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmputp1fqda\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "mbstowcs_l" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpenu_12fj
Code:

        #define memset_s meson_disable_define_of_memset_s
        
        #include <limits.h>
        #undef memset_s
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char memset_s (void);
        
        #if defined __stub_memset_s || defined __stub___memset_s
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return memset_s ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpenu_12fj\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpenu_12fj\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol memset_s referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpenu_12fj\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "memset_s" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpuiu0uw26
Code:

        #define mkdtemp meson_disable_define_of_mkdtemp
        
        #include <limits.h>
        #undef mkdtemp
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char mkdtemp (void);
        
        #if defined __stub_mkdtemp || defined __stub___mkdtemp
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return mkdtemp ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpuiu0uw26\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpuiu0uw26\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol mkdtemp referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpuiu0uw26\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "mkdtemp" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_kyh23pc
Code:

        #define posix_fadvise meson_disable_define_of_posix_fadvise
        
        #include <limits.h>
        #undef posix_fadvise
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char posix_fadvise (void);
        
        #if defined __stub_posix_fadvise || defined __stub___posix_fadvise
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return posix_fadvise ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_kyh23pc\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_kyh23pc\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol posix_fadvise referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_kyh23pc\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "posix_fadvise" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1og9za5r
Code:

        #define posix_fallocate meson_disable_define_of_posix_fallocate
        
        #include <limits.h>
        #undef posix_fallocate
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char posix_fallocate (void);
        
        #if defined __stub_posix_fallocate || defined __stub___posix_fallocate
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return posix_fallocate ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1og9za5r\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1og9za5r\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol posix_fallocate referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1og9za5r\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "posix_fallocate" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpakmfe_7r
Code:

        #define ppoll meson_disable_define_of_ppoll
        
        #include <limits.h>
        #undef ppoll
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char ppoll (void);
        
        #if defined __stub_ppoll || defined __stub___ppoll
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return ppoll ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpakmfe_7r\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpakmfe_7r\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol ppoll referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpakmfe_7r\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "ppoll" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpkbodx0_a
Code:

        #define pthread_barrier_wait meson_disable_define_of_pthread_barrier_wait
        
        #include <limits.h>
        #undef pthread_barrier_wait
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char pthread_barrier_wait (void);
        
        #if defined __stub_pthread_barrier_wait || defined __stub___pthread_barrier_wait
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return pthread_barrier_wait ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpkbodx0_a\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpkbodx0_a\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol pthread_barrier_wait referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpkbodx0_a\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "pthread_barrier_wait" : NO 
Using cached compile:
Cached command line:  cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpkbodx0_a\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpkbodx0_a\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib 

Code:
 
        #define pthread_barrier_wait meson_disable_define_of_pthread_barrier_wait
        
        #include <limits.h>
        #undef pthread_barrier_wait
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char pthread_barrier_wait (void);
        
        #if defined __stub_pthread_barrier_wait || defined __stub___pthread_barrier_wait
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return pthread_barrier_wait ();
        }
Cached compiler stdout:
 testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol pthread_barrier_wait referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpkbodx0_a\output.exe : fatal error LNK1120: 1 unresolved externals

Cached compiler stderr:
 
Checking for function "pthread_barrier_wait" with dependency threads: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_l7f8qmo
Code:

        #define pthread_is_threaded_np meson_disable_define_of_pthread_is_threaded_np
        
        #include <limits.h>
        #undef pthread_is_threaded_np
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char pthread_is_threaded_np (void);
        
        #if defined __stub_pthread_is_threaded_np || defined __stub___pthread_is_threaded_np
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return pthread_is_threaded_np ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_l7f8qmo\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_l7f8qmo\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol pthread_is_threaded_np referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_l7f8qmo\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "pthread_is_threaded_np" : NO 
Using cached compile:
Cached command line:  cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_l7f8qmo\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_l7f8qmo\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib 

Code:
 
        #define pthread_is_threaded_np meson_disable_define_of_pthread_is_threaded_np
        
        #include <limits.h>
        #undef pthread_is_threaded_np
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char pthread_is_threaded_np (void);
        
        #if defined __stub_pthread_is_threaded_np || defined __stub___pthread_is_threaded_np
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return pthread_is_threaded_np ();
        }
Cached compiler stdout:
 testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol pthread_is_threaded_np referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp_l7f8qmo\output.exe : fatal error LNK1120: 1 unresolved externals

Cached compiler stderr:
 
Checking for function "pthread_is_threaded_np" with dependency threads: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1ia8tvgc
Code:

        #define setproctitle meson_disable_define_of_setproctitle
        
        #include <limits.h>
        #undef setproctitle
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char setproctitle (void);
        
        #if defined __stub_setproctitle || defined __stub___setproctitle
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return setproctitle ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1ia8tvgc\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1ia8tvgc\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol setproctitle referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp1ia8tvgc\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "setproctitle" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2l7sw304
Code:

        #define setproctitle_fast meson_disable_define_of_setproctitle_fast
        
        #include <limits.h>
        #undef setproctitle_fast
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char setproctitle_fast (void);
        
        #if defined __stub_setproctitle_fast || defined __stub___setproctitle_fast
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return setproctitle_fast ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2l7sw304\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2l7sw304\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol setproctitle_fast referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp2l7sw304\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "setproctitle_fast" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmputakslw3
Code:

        #define shm_open meson_disable_define_of_shm_open
        
        #include <limits.h>
        #undef shm_open
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char shm_open (void);
        
        #if defined __stub_shm_open || defined __stub___shm_open
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return shm_open ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmputakslw3\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmputakslw3\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol shm_open referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmputakslw3\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "shm_open" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpwf87ar1v
Code:

        #define shm_unlink meson_disable_define_of_shm_unlink
        
        #include <limits.h>
        #undef shm_unlink
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char shm_unlink (void);
        
        #if defined __stub_shm_unlink || defined __stub___shm_unlink
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return shm_unlink ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpwf87ar1v\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpwf87ar1v\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol shm_unlink referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpwf87ar1v\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "shm_unlink" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp0b7g8lac
Code:

        #define shmget meson_disable_define_of_shmget
        
        #include <limits.h>
        #undef shmget
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char shmget (void);
        
        #if defined __stub_shmget || defined __stub___shmget
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return shmget ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp0b7g8lac\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp0b7g8lac\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol shmget referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp0b7g8lac\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "shmget" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpo_zcmunu
Code:

        #define socket meson_disable_define_of_socket
        
        #include <limits.h>
        #undef socket
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char socket (void);
        
        #if defined __stub_socket || defined __stub___socket
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return socket ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpo_zcmunu\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpo_zcmunu\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol socket referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpo_zcmunu\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "socket" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpt0y629fv
Code:

        #define strchrnul meson_disable_define_of_strchrnul
        
        #include <limits.h>
        #undef strchrnul
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strchrnul (void);
        
        #if defined __stub_strchrnul || defined __stub___strchrnul
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strchrnul ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpt0y629fv\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpt0y629fv\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol strchrnul referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpt0y629fv\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "strchrnul" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphtd3usdu
Code:

        #define strerror_r meson_disable_define_of_strerror_r
        
        #include <limits.h>
        #undef strerror_r
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strerror_r (void);
        
        #if defined __stub_strerror_r || defined __stub___strerror_r
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strerror_r ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphtd3usdu\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphtd3usdu\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol strerror_r referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphtd3usdu\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "strerror_r" : NO 
Using cached compile:
Cached command line:  cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphtd3usdu\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphtd3usdu\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib 

Code:
 
        #define strerror_r meson_disable_define_of_strerror_r
        
        #include <limits.h>
        #undef strerror_r
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strerror_r (void);
        
        #if defined __stub_strerror_r || defined __stub___strerror_r
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strerror_r ();
        }
Cached compiler stdout:
 testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol strerror_r referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmphtd3usdu\output.exe : fatal error LNK1120: 1 unresolved externals

Cached compiler stderr:
 
Checking for function "strerror_r" with dependency threads: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdsp7fanz
Code:

        #define strlcat meson_disable_define_of_strlcat
        
        #include <limits.h>
        #undef strlcat
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strlcat (void);
        
        #if defined __stub_strlcat || defined __stub___strlcat
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strlcat ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdsp7fanz\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdsp7fanz\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol strlcat referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpdsp7fanz\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "strlcat" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpiliuqhea
Code:

        #define strlcpy meson_disable_define_of_strlcpy
        
        #include <limits.h>
        #undef strlcpy
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strlcpy (void);
        
        #if defined __stub_strlcpy || defined __stub___strlcpy
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strlcpy ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpiliuqhea\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpiliuqhea\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol strlcpy referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpiliuqhea\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "strlcpy" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpc1nv_pvv
Code:

        #define strnlen meson_disable_define_of_strnlen
        
        #include <limits.h>
        #undef strnlen
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strnlen (void);
        
        #if defined __stub_strnlen || defined __stub___strnlen
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strnlen ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpc1nv_pvv\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpc1nv_pvv\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 0
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
-----------
Checking for function "strnlen" : YES 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp49gqmirb
Code:

        #define strsignal meson_disable_define_of_strsignal
        
        #include <limits.h>
        #undef strsignal
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char strsignal (void);
        
        #if defined __stub_strsignal || defined __stub___strsignal
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return strsignal ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp49gqmirb\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp49gqmirb\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol strsignal referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp49gqmirb\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "strsignal" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfbe2k_ku
Code:

        #define sync_file_range meson_disable_define_of_sync_file_range
        
        #include <limits.h>
        #undef sync_file_range
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char sync_file_range (void);
        
        #if defined __stub_sync_file_range || defined __stub___sync_file_range
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return sync_file_range ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfbe2k_ku\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfbe2k_ku\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol sync_file_range referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpfbe2k_ku\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "sync_file_range" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp9cx6v40_
Code:

        #define syncfs meson_disable_define_of_syncfs
        
        #include <limits.h>
        #undef syncfs
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char syncfs (void);
        
        #if defined __stub_syncfs || defined __stub___syncfs
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return syncfs ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp9cx6v40_\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp9cx6v40_\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol syncfs referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmp9cx6v40_\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "syncfs" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpl7fh_zvy
Code:

        #define uselocale meson_disable_define_of_uselocale
        
        #include <limits.h>
        #undef uselocale
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char uselocale (void);
        
        #if defined __stub_uselocale || defined __stub___uselocale
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return uselocale ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpl7fh_zvy\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpl7fh_zvy\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol uselocale referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpl7fh_zvy\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "uselocale" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpmhy1d082
Code:

        #define wcstombs_l meson_disable_define_of_wcstombs_l
        
        #include <limits.h>
        #undef wcstombs_l
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char wcstombs_l (void);
        
        #if defined __stub_wcstombs_l || defined __stub___wcstombs_l
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return wcstombs_l ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpmhy1d082\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpmhy1d082\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol wcstombs_l referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpmhy1d082\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "wcstombs_l" : NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpewvj3af_
Code:

        #define syslog meson_disable_define_of_syslog
        
        #include <limits.h>
        #undef syslog
        
        #ifdef __cplusplus
        extern "C"
        #endif
        char syslog (void);
        
        #if defined __stub_syslog || defined __stub___syslog
        fail fail fail this function is not going to work
        #endif
        
        int main(void) {
          return syslog ();
        }
-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpewvj3af_\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpewvj3af_\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib` -> 2
stdout:
testfile.c
Note: including file: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\limits.h
Note: including file:  C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vcruntime.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\sal.h
Note: including file:    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\concurrencysal.h
Note: including file:   C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vadefs.h
testfile.obj : error LNK2019: unresolved external symbol syslog referenced in function main
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpewvj3af_\output.exe : fatal error LNK1120: 1 unresolved externals
-----------
Checking for function "syslog" : NO 
Program src/tools/rcgen found: YES (C:\Python\Python310\python.exe D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\src/tools/rcgen)
Program rc found: YES (C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x64\rc.EXE)
Configuring pg_config_ext.h using configuration
Configuring pg_config.h using configuration
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpgvp7e0mf
Code:
extern int i;
int i;

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpgvp7e0mf\testfile.c /FoD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpgvp7e0mf\output.obj /nologo /showIncludes /utf-8 /c /nologo /showIncludes /utf-8 /c /Od /Oi- -fPIC` -> 0
stdout:
testfile.c
-----------
stderr:
cl : Command line warning D9002 : ignoring unknown option '-fPIC'
-----------
Compiler for C supports arguments -fPIC: NO 
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmptrzdblqm
Code:
int main(void) { return 0; }

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmptrzdblqm\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmptrzdblqm\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- /link -WX -Wl,--as-needed` -> 2
stdout:
testfile.c
LINK : warning LNK4044: unrecognized option '/Wl,--as-needed'; ignored
LINK : error LNK1218: warning treated as error; no output file generated
-----------
Compiler for C supports link arguments -Wl,--as-needed: NO 
Configuring pg_config_paths.h using configuration
Windows resource compiler: Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384

Configuring ecpg_config.h using configuration
Program strip found: NO
Running compile:
Working directory:  D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpv98ub4_f
Code:
int main(void) { return 0; }

-----------
Command line: `cl D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpv98ub4_f\testfile.c /FeD:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\meson-private\tmpv98ub4_f\output.exe /nologo /showIncludes /utf-8 /MD /nologo /showIncludes /utf-8 /Od /Oi- /link -WX -Wl,--export-dynamic` -> 2
stdout:
testfile.c
LINK : warning LNK4044: unrecognized option '/Wl,--export-dynamic'; ignored
LINK : error LNK1218: warning treated as error; no output file generated
-----------
Compiler for C supports link arguments -Wl,--export-dynamic: NO 
Program ar found: NO
Program gawk mawk nawk awk found: NO
Configuring Makefile.global using configuration
Configuring version.sgml using configuration
Message: checking for file conflicts between source and build directory
Running command: "C:\Program Files\Python38\python3.EXE" -c "import sys; from pathlib import PurePath; d1=sys.argv[1]; d2=sys.argv[2]; print(str(PurePath(d1, *PurePath(d2).parts[1:])))" D:/Jenkins/workspace/workspace/Postgres-9.4/PostgreSQL/postgres-Source/buildPostgreSQL_wx6_17.0/postgresql-17.0/build/tmp_install/ D:/Jenkins/workspace/workspace/Postgres-9.4/PostgreSQL/postgres-Install/pg_17.0_wx6/bin
--- stdout ---
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\tmp_install\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\bin

--- stderr ---


Running command: "C:\Program Files\Python38\python3.EXE" -c "import sys; from pathlib import PurePath; d1=sys.argv[1]; d2=sys.argv[2]; print(str(PurePath(d1, *PurePath(d2).parts[1:])))" D:/Jenkins/workspace/workspace/Postgres-9.4/PostgreSQL/postgres-Source/buildPostgreSQL_wx6_17.0/postgresql-17.0/build/tmp_install/ D:/Jenkins/workspace/workspace/Postgres-9.4/PostgreSQL/postgres-Install/pg_17.0_wx6/lib
--- stdout ---
D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Source\buildPostgreSQL_wx6_17.0\postgresql-17.0\build\tmp_install\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib

--- stderr ---


Adding test "tmp_install"
Adding test "install_test_files"
Adding test "initdb_cache"
Adding test "libpq/001_uri"
Adding test "libpq/002_api"
Adding test "libpq/003_load_balance_host_list"
Adding test "libpq/004_load_balance_dns"
Adding test "libpq/005_negotiate_encryption"
Adding test "initdb/001_initdb"
Adding test "pg_amcheck/001_basic"
Adding test "pg_amcheck/002_nonesuch"
Adding test "pg_amcheck/003_check"
Adding test "pg_amcheck/004_verify_heapam"
Adding test "pg_amcheck/005_opclass_damage"
Adding test "pg_archivecleanup/010_pg_archivecleanup"
Adding test "pg_basebackup/010_pg_basebackup"
Adding test "pg_basebackup/011_in_place_tablespace"
Adding test "pg_basebackup/020_pg_receivewal"
Adding test "pg_basebackup/030_pg_recvlogical"
Adding test "pg_basebackup/040_pg_createsubscriber"
Adding test "pg_checksums/001_basic"
Adding test "pg_checksums/002_actions"
Adding test "pg_combinebackup/001_basic"
Adding test "pg_combinebackup/002_compare_backups"
Adding test "pg_combinebackup/003_timeline"
Adding test "pg_combinebackup/004_manifest"
Adding test "pg_combinebackup/005_integrity"
Adding test "pg_combinebackup/006_db_file_copy"
Adding test "pg_combinebackup/007_wal_level_minimal"
Adding test "pg_combinebackup/008_promote"
Adding test "pg_config/001_pg_config"
Adding test "pg_controldata/001_pg_controldata"
Adding test "pg_ctl/001_start_stop"
Adding test "pg_ctl/002_status"
Adding test "pg_ctl/003_promote"
Adding test "pg_ctl/004_logrotate"
Adding test "pg_dump/001_basic"
Adding test "pg_dump/002_pg_dump"
Adding test "pg_dump/003_pg_dump_with_server"
Adding test "pg_dump/004_pg_dump_parallel"
Adding test "pg_dump/005_pg_dump_filterfile"
Adding test "pg_dump/010_dump_connstr"
Adding test "pg_resetwal/001_basic"
Adding test "pg_resetwal/002_corrupted"
Adding test "pg_rewind/001_basic"
Adding test "pg_rewind/002_databases"
Adding test "pg_rewind/003_extrafiles"
Adding test "pg_rewind/004_pg_xlog_symlink"
Adding test "pg_rewind/005_same_timeline"
Adding test "pg_rewind/006_options"
Adding test "pg_rewind/007_standby_source"
Adding test "pg_rewind/008_min_recovery_point"
Adding test "pg_rewind/009_growing_files"
Adding test "pg_test_fsync/001_basic"
Adding test "pg_test_timing/001_basic"
Adding test "pg_upgrade/001_basic"
Adding test "pg_upgrade/002_pg_upgrade"
Adding test "pg_upgrade/003_logical_slots"
Adding test "pg_upgrade/004_subscription"
Adding test "pg_verifybackup/001_basic"
Adding test "pg_verifybackup/002_algorithm"
Adding test "pg_verifybackup/003_corruption"
Adding test "pg_verifybackup/004_options"
Adding test "pg_verifybackup/005_bad_manifest"
Adding test "pg_verifybackup/006_encoding"
Adding test "pg_verifybackup/007_wal"
Adding test "pg_verifybackup/008_untar"
Adding test "pg_verifybackup/009_extract"
Adding test "pg_verifybackup/010_client_untar"
Adding test "pg_waldump/001_basic"
Adding test "pg_waldump/002_save_fullpage"
Adding test "pg_walsummary/001_basic"
Adding test "pg_walsummary/002_blocks"
Adding test "pgbench/001_pgbench_with_server"
Adding test "pgbench/002_pgbench_no_server"
Adding test "psql/001_basic"
Adding test "psql/010_tab_completion"
Adding test "psql/020_cancel"
Adding test "scripts/010_clusterdb"
Adding test "scripts/011_clusterdb_all"
Adding test "scripts/020_createdb"
Adding test "scripts/040_createuser"
Adding test "scripts/050_dropdb"
Adding test "scripts/070_dropuser"
Adding test "scripts/080_pg_isready"
Adding test "scripts/090_reindexdb"
Adding test "scripts/091_reindexdb_all"
Adding test "scripts/100_vacuumdb"
Adding test "scripts/101_vacuumdb_all"
Adding test "scripts/102_vacuumdb_stages"
Adding test "scripts/200_connstr"
Adding test "plpgsql/regress"
Adding test "plpgsql-running/regress"
Adding test "pg_bsd_indent/001_pg_bsd_indent"
Adding test "amcheck/regress"
Adding test "amcheck-running/regress"
Adding test "amcheck/001_verify_heapam"
Adding test "amcheck/002_cic"
Adding test "amcheck/003_cic_2pc"
Adding test "amcheck/004_verify_nbtree_unique"
Adding test "amcheck/005_pitr"
Adding test "auto_explain/001_auto_explain"
Adding test "basic_archive/regress"
Adding test "bloom/regress"
Adding test "bloom-running/regress"
Adding test "bloom/001_wal"
Adding test "basebackup_to_shell/001_basic"
Adding test "btree_gin/regress"
Adding test "btree_gin-running/regress"
Adding test "btree_gist/regress"
Adding test "btree_gist-running/regress"
Adding test "citext/regress"
Adding test "citext-running/regress"
Adding test "cube/regress"
Adding test "cube-running/regress"
Adding test "dblink/regress"
Adding test "dblink-running/regress"
Adding test "dict_int/regress"
Adding test "dict_int-running/regress"
Adding test "dict_xsyn/regress"
Adding test "dict_xsyn-running/regress"
Adding test "earthdistance/regress"
Adding test "earthdistance-running/regress"
Adding test "file_fdw/regress"
Adding test "file_fdw-running/regress"
Adding test "fuzzystrmatch/regress"
Adding test "fuzzystrmatch-running/regress"
Adding test "hstore/regress"
Adding test "hstore-running/regress"
Adding test "intarray/regress"
Adding test "intarray-running/regress"
Adding test "isn/regress"
Adding test "isn-running/regress"
Adding test "lo/regress"
Adding test "lo-running/regress"
Adding test "ltree/regress"
Adding test "ltree-running/regress"
Adding test "oid2name/001_basic"
Adding test "pageinspect/regress"
Adding test "pageinspect-running/regress"
Adding test "passwordcheck/regress"
Adding test "passwordcheck-running/regress"
Adding test "pg_buffercache/regress"
Adding test "pg_buffercache-running/regress"
Adding test "pgcrypto/regress"
Adding test "pgcrypto-running/regress"
Adding test "pg_freespacemap/regress"
Adding test "pg_prewarm/001_basic"
Adding test "pgrowlocks/isolation"
Adding test "pgrowlocks-running/isolation"
Adding test "pg_stat_statements/regress"
Adding test "pg_stat_statements/010_restart"
Adding test "pgstattuple/regress"
Adding test "pgstattuple-running/regress"
Adding test "pg_surgery/regress"
Adding test "pg_surgery-running/regress"
Adding test "pg_trgm/regress"
Adding test "pg_trgm-running/regress"
Adding test "pg_visibility/regress"
Adding test "pg_visibility-running/regress"
Adding test "pg_visibility/001_concurrent_transaction"
Adding test "pg_walinspect/regress"
Adding test "postgres_fdw/regress"
Adding test "postgres_fdw-running/regress"
Adding test "seg/regress"
Adding test "seg-running/regress"
Adding test "tablefunc/regress"
Adding test "tablefunc-running/regress"
Adding test "tcn/isolation"
Adding test "tcn-running/isolation"
Adding test "test_decoding/regress"
Adding test "test_decoding/isolation"
Adding test "test_decoding/001_repl_stats"
Adding test "tsm_system_rows/regress"
Adding test "tsm_system_rows-running/regress"
Adding test "tsm_system_time/regress"
Adding test "tsm_system_time-running/regress"
Adding test "unaccent/regress"
Adding test "unaccent-running/regress"
Adding test "vacuumlo/001_basic"
Adding test "regress/regress"
Adding test "regress-running/regress"
Adding test "isolation/isolation"
Adding test "isolation-running/isolation"
Adding test "authentication/001_password"
Adding test "authentication/002_saslprep"
Adding test "authentication/003_peer"
Adding test "authentication/004_file_inclusion"
Adding test "authentication/005_sspi"
Adding test "authentication/006_login_trigger"
Adding test "recovery/001_stream_rep"
Adding test "recovery/002_archiving"
Adding test "recovery/003_recovery_targets"
Adding test "recovery/004_timeline_switch"
Adding test "recovery/005_replay_delay"
Adding test "recovery/006_logical_decoding"
Adding test "recovery/007_sync_rep"
Adding test "recovery/008_fsm_truncation"
Adding test "recovery/009_twophase"
Adding test "recovery/010_logical_decoding_timelines"
Adding test "recovery/012_subtransactions"
Adding test "recovery/013_crash_restart"
Adding test "recovery/014_unlogged_reinit"
Adding test "recovery/015_promotion_pages"
Adding test "recovery/016_min_consistency"
Adding test "recovery/017_shm"
Adding test "recovery/018_wal_optimize"
Adding test "recovery/019_replslot_limit"
Adding test "recovery/020_archive_status"
Adding test "recovery/021_row_visibility"
Adding test "recovery/022_crash_temp_files"
Adding test "recovery/023_pitr_prepared_xact"
Adding test "recovery/024_archive_recovery"
Adding test "recovery/025_stuck_on_old_timeline"
Adding test "recovery/026_overwrite_contrecord"
Adding test "recovery/027_stream_regress"
Adding test "recovery/028_pitr_timelines"
Adding test "recovery/029_stats_restart"
Adding test "recovery/030_stats_cleanup_replica"
Adding test "recovery/031_recovery_conflict"
Adding test "recovery/032_relfilenode_reuse"
Adding test "recovery/033_replay_tsp_drops"
Adding test "recovery/034_create_database"
Adding test "recovery/035_standby_logical_decoding"
Adding test "recovery/036_truncated_dropped"
Adding test "recovery/037_invalid_database"
Adding test "recovery/038_save_logical_slots_shutdown"
Adding test "recovery/039_end_of_wal"
Adding test "recovery/040_standby_failover_slots_sync"
Adding test "recovery/041_checkpoint_at_promote"
Adding test "recovery/042_low_level_backup"
Adding test "subscription/001_rep_changes"
Adding test "subscription/002_types"
Adding test "subscription/003_constraints"
Adding test "subscription/004_sync"
Adding test "subscription/005_encoding"
Adding test "subscription/006_rewrite"
Adding test "subscription/007_ddl"
Adding test "subscription/008_diff_schema"
Adding test "subscription/009_matviews"
Adding test "subscription/010_truncate"
Adding test "subscription/011_generated"
Adding test "subscription/012_collation"
Adding test "subscription/013_partition"
Adding test "subscription/014_binary"
Adding test "subscription/015_stream"
Adding test "subscription/016_stream_subxact"
Adding test "subscription/017_stream_ddl"
Adding test "subscription/018_stream_subxact_abort"
Adding test "subscription/019_stream_subxact_ddl_abort"
Adding test "subscription/020_messages"
Adding test "subscription/021_twophase"
Adding test "subscription/022_twophase_cascade"
Adding test "subscription/023_twophase_stream"
Adding test "subscription/024_add_drop_pub"
Adding test "subscription/025_rep_changes_for_schema"
Adding test "subscription/026_stats"
Adding test "subscription/027_nosuperuser"
Adding test "subscription/028_row_filter"
Adding test "subscription/029_on_error"
Adding test "subscription/030_origin"
Adding test "subscription/031_column_list"
Adding test "subscription/032_subscribe_use_index"
Adding test "subscription/033_run_as_table_owner"
Adding test "subscription/100_bugs"
Adding test "brin/isolation"
Adding test "brin-running/isolation"
Adding test "brin/01_workitems"
Adding test "brin/02_wal_consistency"
Adding test "commit_ts/regress"
Adding test "commit_ts/001_base"
Adding test "commit_ts/002_standby"
Adding test "commit_ts/003_standby_2"
Adding test "commit_ts/004_restart"
Adding test "delay_execution/isolation"
Adding test "delay_execution-running/isolation"
Adding test "dummy_index_am/regress"
Adding test "dummy_index_am-running/regress"
Adding test "dummy_seclabel/regress"
Adding test "dummy_seclabel-running/regress"
Adding test "libpq_pipeline/001_libpq_pipeline"
Adding test "plsample/regress"
Adding test "plsample-running/regress"
Adding test "spgist_name_ops/regress"
Adding test "spgist_name_ops-running/regress"
Adding test "ssl_passphrase_callback/001_testfunc"
Adding test "test_bloomfilter/regress"
Adding test "test_bloomfilter-running/regress"
Adding test "test_copy_callbacks/regress"
Adding test "test_copy_callbacks-running/regress"
Adding test "test_custom_rmgrs/001_basic"
Adding test "test_ddl_deparse/regress"
Adding test "test_ddl_deparse-running/regress"
Adding test "test_dsa/regress"
Adding test "test_dsa-running/regress"
Adding test "test_dsm_registry/regress"
Adding test "test_dsm_registry-running/regress"
Adding test "test_extensions/regress"
Adding test "test_extensions-running/regress"
Adding test "test_ginpostinglist/regress"
Adding test "test_ginpostinglist-running/regress"
Adding test "test_integerset/regress"
Adding test "test_integerset-running/regress"
Adding test "test_json_parser/001_test_json_parser_incremental"
Adding test "test_json_parser/002_inline"
Adding test "test_json_parser/003_test_semantic"
Adding test "test_json_parser/004_test_parser_perf"
Adding test "test_lfind/regress"
Adding test "test_lfind-running/regress"
Adding test "test_misc/001_constraint_validation"
Adding test "test_misc/002_tablespace"
Adding test "test_misc/003_check_guc"
Adding test "test_misc/004_io_direct"
Adding test "test_misc/005_timeouts"
Adding test "test_oat_hooks/regress"
Adding test "test_parser/regress"
Adding test "test_parser-running/regress"
Adding test "test_pg_dump/regress"
Adding test "test_pg_dump-running/regress"
Adding test "test_pg_dump/001_base"
Adding test "test_predtest/regress"
Adding test "test_predtest-running/regress"
Adding test "test_radixtree/regress"
Adding test "test_radixtree-running/regress"
Adding test "test_rbtree/regress"
Adding test "test_rbtree-running/regress"
Adding test "test_regex/regress"
Adding test "test_regex-running/regress"
Adding test "test_resowner/regress"
Adding test "test_resowner-running/regress"
Adding test "test_rls_hooks/regress"
Adding test "test_rls_hooks-running/regress"
Adding test "test_shm_mq/regress"
Adding test "test_shm_mq-running/regress"
Adding test "test_slru/regress"
Adding test "test_tidstore/regress"
Adding test "test_tidstore-running/regress"
Adding test "unsafe_tests/regress"
Adding test "worker_spi/001_worker_spi"
Adding test "xid_wraparound/001_emergency_vacuum"
Adding test "xid_wraparound/002_limits"
Adding test "xid_wraparound/003_wraparounds"
Adding test "ssl/001_ssltests"
Adding test "ssl/002_scram"
Adding test "ssl/003_sslinfo"
Adding test "icu/010_database"
Adding test "ecpg/ecpg"
Adding test "ecpg-running/ecpg"
[Errno 13] Permission denied: 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\BuildTools\\Common7\\IDE\\CommonExtensions\\Microsoft\\TeamFoundation\\Team Explorer\\git'
Unusable script 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\BuildTools\\Common7\\IDE\\CommonExtensions\\Microsoft\\TeamFoundation\\Team Explorer\\git'
[Errno 13] Permission denied: 'C:\\Program Files\\git'
Unusable script 'C:\\Program Files\\git'
Program git found: NO
Program bzip2 found: NO
Build targets in project: 397
NOTICE: Future-deprecated features used:
 * 0.55.0: {'ExternalProgram.path'}
 * 0.56.0: {'meson.build_root', 'meson.source_root'}

postgresql 17.0

  Data layout
    data block size        : 8 kB
    WAL block size         : 8 kB
    segment size           : 1 GB

  System
    host system            : windows x86_64
    build system           : windows x86_64

  Compiler
    linker                 : link
    C compiler             : msvc 19.29.30154

  Compiler Flags
    CPP FLAGS              : /DWIN32 /DWINDOWS /D__WINDOWS__ /D__WIN32__ /D_CRT_SECURE_NO_DEPRECATE /D_CRT_NONSTDC_NO_DEPRECATE
    C FLAGS, functional    : 
    C FLAGS, warnings      : /wd4018 /wd4244 /wd4273 /wd4101 /wd4102 /wd4090 /wd4267
    C FLAGS, modules       : 
    C FLAGS, user specified: 
    LD FLAGS               : /INCREMENTAL:NO /STACK:4194304 /NOEXP

  Programs
    bison                  : C:\GnuWin32\bin\bison.EXE 2.4.1
    dtrace                 : NO
    flex                   : C:\GnuWin32\bin\flex.EXE 2.5.35

  External libraries
    bonjour                : NO
    bsd_auth               : NO
    docs                   : NO
    docs_pdf               : NO
    gss                    : NO

    icu                    :bxml                 : NO
    libxslt                : NO
    llvm                   : NO
    lz4                    : NO
    nls                    : NO
    openssl                : YES
    pam                    : NO
    plperl                 : NO
    plpython               : NO
    pltcl                  : NO
    readline               : NO
    selinux                : NO
    systemd                : NO
    uuid                   : NO
er defined options
    bonjour                : disabled
    bsd_auth               : disabled
    buildtype              : release
    extra_include_dirs     : D:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\include,D:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6,D:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\include
    extra_lib_dirs         : D:\Jenkins\workspace\workspace\Postgres-9.4\OpenSSL\OpenSSL-Install\OpenSSL-3.1.6-wx6\lib,D:\Jenkins\workspace\workspace\Postgres-9.4\zlib\zlib-1.3.1-wx6,D:\Jenkins\workspace\workspace\Postgres-9.4\icu\icu4c-72.1-wx6\lib64
    gssapi                 : disabled
    icu                    : enabled
    ldap                   : disabled
    libxml                 : disabled
    libxslt                : disabled
    llvm                   : disabled
    lz4                    : disabled
    nls                    : disabled
    pam                    : disabled
    plperl                 : disabled
    plpython               : disabled
    pltcl                  : disabled
    prefix                 : D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6
    selinux                : disabled
    ssl                    : openssl
    systemd                : disabled
    uuid                   : none
    zlib                   : enabled
    zstd                   : disabled

Found ninja-1.10.2 at "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\CMake\Ninja\ninja.EXE"
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\postgres.bki
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\system_constraints.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezone
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\snowball_create.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\config\install-sh
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\config\missing
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\pg_service.conf.sample
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Africa.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\America.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Antarctica.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Asia.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Atlantic.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Australia.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Etc.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Europe.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Indian.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Pacific.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Default
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Australia
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\India
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\information_schema.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\sql_features.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\system_functions.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\system_views.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\pg_hba.conf.sample
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\pg_ident.conf.sample
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\errcodes.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\postgresql.conf.sample
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\psqlrc.sample
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\plpgsql.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\plpgsql--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\Makefile.global
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\Makefile.port
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\Makefile.shlib
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\nls-global.mk
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\makefiles\pgxs.mk
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\amcheck.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\amcheck--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\amcheck--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\amcheck--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\amcheck--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\amcheck--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\bloom.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\bloom--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gin.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gin--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gin--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gin--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gin--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist--1.5--1.6.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist--1.6--1.7.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\citext.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\citext--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\citext--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\citext--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\citext--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\citext--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\citext--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\citext--1.5--1.6.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\cube.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\cube--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\cube--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\cube--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\cube--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\cube--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\cube--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\dblink.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\dblink--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\dblink--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\dblink--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\dict_int.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\dict_int--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\dict_xsyn.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\dict_xsyn--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\tsearch_data\xsyn_sample.rules
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\earthdistance.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\earthdistance--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\earthdistance--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\file_fdw.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\file_fdw--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\fuzzystrmatch.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\fuzzystrmatch--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\fuzzystrmatch--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\fuzzystrmatch--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore--1.5--1.6.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore--1.6--1.7.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore--1.7--1.8.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intagg.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intagg--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intagg--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intarray.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intarray--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intarray--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intarray--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intarray--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intarray--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intarray--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\isn.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\isn--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\isn--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\isn--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\lo.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\lo--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\lo--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\ltree.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\ltree--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\ltree--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\ltree--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\ltree--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.5--1.6.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.6--1.7.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.7--1.8.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.8--1.9.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.9--1.10.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.10--1.11.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.11--1.12.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_buffercache--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_buffercache--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_buffercache--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_buffercache--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_buffercache--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_buffercache--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_buffercache.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgcrypto--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgcrypto--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgcrypto--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgcrypto--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgcrypto.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_freespacemap--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_freespacemap--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_freespacemap--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_freespacemap.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_prewarm--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_prewarm--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_prewarm--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_prewarm.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgrowlocks--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgrowlocks--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgrowlocks--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgrowlocks.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.10--1.11.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.9--1.10.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.8--1.9.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.7--1.8.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.6--1.7.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.5--1.6.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgstattuple--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgstattuple--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgstattuple--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgstattuple--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgstattuple--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgstattuple--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgstattuple.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_surgery--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_surgery.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_trgm--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_trgm--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_trgm--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_trgm--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_trgm--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_trgm--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_trgm--1.5--1.6.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_trgm.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_visibility--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_visibility--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_visibility--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_visibility.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_walinspect.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_walinspect--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_walinspect--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\postgres_fdw.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\postgres_fdw--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\postgres_fdw--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\seg.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\seg--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\seg--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\seg--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\seg--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\seg--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\autoinc.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\autoinc--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\doc\extension\autoinc.example
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\insert_username.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\insert_username--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\doc\extension\insert_username.example
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\moddatetime.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\moddatetime--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\doc\extension\moddatetime.example
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\refint.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\refint--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\doc\extension\refint.example
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\sslinfo--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\sslinfo--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\sslinfo--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\sslinfo.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\tablefunc--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\tablefunc.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\tcn--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\tcn.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\tsm_system_rows--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\tsm_system_rows.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\tsm_system_time--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\tsm_system_time.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\unaccent--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\unaccent--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\unaccent.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\tsearch_data\unaccent.rules
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\test\perl\PostgreSQL\Version.pm
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\test\perl\PostgreSQL\Test\Utils.pm
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\test\perl\PostgreSQL\Test\SimpleTee.pm
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\test\perl\PostgreSQL\Test\RecursiveCopy.pm
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\test\perl\PostgreSQL\Test\Cluster.pm
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\test\perl\PostgreSQL\Test\BackgroundPsql.pm
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\tsearch_data\dummy
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\tsearch_data\dummy
Command line for building ['src\\backend\\postgres_lib.a'] is long, using a response file
Command line for building ['src\\backend\\postgres.exe'] is long, using a response file
Command line for building ['src\\backend\\snowball\\dict_snowball.dll'] is long, using a response file
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\postgres.bki
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\system_constraints.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezone
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\snowball_create.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\config\install-sh
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\config\missing
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\pg_service.conf.sample
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Africa.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\America.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Antarctica.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Asia.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Atlantic.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Australia.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Etc.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Europe.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Indian.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Pacific.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Default
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\Australia
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\timezonesets\India
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\information_schema.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\sql_features.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\system_functions.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\system_views.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\pg_hba.conf.sample
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\pg_ident.conf.sample
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\errcodes.txt
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\postgresql.conf.sample
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\psqlrc.sample
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\plpgsql.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\plpgsql--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\Makefile.global
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\Makefile.port
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\Makefile.shlib
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\nls-global.mk
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\makefiles\pgxs.mk
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\amcheck.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\amcheck--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\amcheck--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\amcheck--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\amcheck--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\amcheck--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\bloom.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\bloom--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gin.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gin--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gin--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gin--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gin--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist--1.5--1.6.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\btree_gist--1.6--1.7.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\citext.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\citext--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\citext--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\citext--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\citext--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\citext--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\citext--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\citext--1.5--1.6.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\cube.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\cube--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\cube--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\cube--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\cube--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\cube--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\cube--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\dblink.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\dblink--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\dblink--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\dblink--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\dict_int.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\dict_int--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\dict_xsyn.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\dict_xsyn--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\tsearch_data\xsyn_sample.rules
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\earthdistance.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\earthdistance--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\earthdistance--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\file_fdw.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\file_fdw--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\fuzzystrmatch.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\fuzzystrmatch--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\fuzzystrmatch--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\fuzzystrmatch--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore--1.5--1.6.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore--1.6--1.7.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\hstore--1.7--1.8.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intagg.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intagg--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intagg--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intarray.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intarray--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intarray--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intarray--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intarray--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intarray--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\intarray--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\isn.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\isn--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\isn--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\isn--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\lo.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\lo--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\lo--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\ltree.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\ltree--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\ltree--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\ltree--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\ltree--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.5--1.6.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.6--1.7.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.7--1.8.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.8--1.9.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.9--1.10.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.10--1.11.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect--1.11--1.12.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pageinspect.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_buffercache--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_buffercache--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_buffercache--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_buffercache--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_buffercache--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_buffercache--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_buffercache.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgcrypto--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgcrypto--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgcrypto--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgcrypto--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgcrypto.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_freespacemap--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_freespacemap--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_freespacemap--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_freespacemap.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_prewarm--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_prewarm--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_prewarm--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_prewarm.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgrowlocks--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgrowlocks--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgrowlocks--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgrowlocks.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.10--1.11.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.9--1.10.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.8--1.9.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.7--1.8.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.6--1.7.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.5--1.6.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_stat_statements--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgstattuple--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgstattuple--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgstattuple--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgstattuple--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgstattuple--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgstattuple--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pgstattuple.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_surgery--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_surgery.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_trgm--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_trgm--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_trgm--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_trgm--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_trgm--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_trgm--1.4--1.5.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_trgm--1.5--1.6.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_trgm.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_visibility--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_visibility--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_visibility--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_visibility.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_walinspect.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_walinspect--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\pg_walinspect--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\postgres_fdw.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\postgres_fdw--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\postgres_fdw--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\seg.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\seg--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\seg--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\seg--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\seg--1.2--1.3.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\seg--1.3--1.4.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\autoinc.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\autoinc--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\doc\extension\autoinc.example
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\insert_username.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\insert_username--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\doc\extension\insert_username.example
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\moddatetime.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\moddatetime--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\doc\extension\moddatetime.example
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\refint.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\refint--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\doc\extension\refint.example
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\sslinfo--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\sslinfo--1.1--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\sslinfo--1.2.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\sslinfo.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\tablefunc--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\tablefunc.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\tcn--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\tcn.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\tsm_system_rows--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\tsm_system_rows.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\tsm_system_time--1.0.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\tsm_system_time.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\unaccent--1.0--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\unaccent--1.1.sql
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\extension\unaccent.control
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\tsearch_data\unaccent.rules
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\test\perl\PostgreSQL\Version.pm
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\test\perl\PostgreSQL\Test\Utils.pm
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\test\perl\PostgreSQL\Test\SimpleTee.pm
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\test\perl\PostgreSQL\Test\RecursiveCopy.pm
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\test\perl\PostgreSQL\Test\Cluster.pm
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\lib\pgxs\src\test\perl\PostgreSQL\Test\BackgroundPsql.pm
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\tsearch_data\dummy
Failed to guess install tag for D:\Jenkins\workspace\workspace\Postgres-9.4\PostgreSQL\postgres-Install\pg_17.0_wx6\share\tsearch_data\dummy



Attachments:

  [text/plain] meson-log.txt (505.6K, ../../BL0PR05MB5076C8E5893CD53E57AE2A70EE242@BL0PR05MB5076.namprd05.prod.outlook.com/2-meson-log.txt)
  download

^ permalink  raw  reply  [nested|flat] 6+ messages in thread


end of thread, other threads:[~2024-11-15 13:01 UTC | newest]

Thread overview: 6+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2020-08-19 12:34 [PATCH v2 1/5] pg_rewind: Move syncTargetDirectory() to file_ops.c Heikki Linnakangas <[email protected]>
2024-11-06 21:21 Re: FW: Building Postgres 17.0 with meson Robert Haas <[email protected]>
2024-11-13 15:17 ` RE: FW: Building Postgres 17.0 with meson Mark Hill <[email protected]>
2024-11-13 15:51   ` Re: FW: Building Postgres 17.0 with meson Nazir Bilal Yavuz <[email protected]>
2024-11-14 19:55     ` RE: FW: Building Postgres 17.0 with meson Mark Hill <[email protected]>
2024-11-15 13:01       ` RE: FW: Building Postgres 17.0 with meson Mark Hill <[email protected]>

This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox