libzmq: Failure to build MinGW version of the library because of missing PkgConfig

Please use this template for reporting suspected bugs or requests for help.

Issue description

When I attempt to build a MinGW version using CMake I get a missing symbols error.

Environment

  • libzmq version (commit hash if unreleased): 49f4c1898b9ec4e2f55817b1368f8338071024b0
  • OS: Windows 10
  • CMake version: 3.14.0-rc4
  • MinGW Version: MinGW-W64 GCC-7.3.0 (Installed by the Qt installer)

Minimal test code / Steps to reproduce the issue

  1. open cmd
  2. cd to zmq directory: cd C:\Users\Hasan\Documents\GitHub\libzmq
  3. From said directory call the build command to another directory: cmake -G "MinGW Makefiles" -S ./ -B ../LibZMQ-MingW

What’s the actual result? (include assertion message & call stack if applicable)

cmd output

-- The C compiler identification is GNU 7.3.0
-- The CXX compiler identification is GNU 7.3.0
-- Check for working C compiler: C:/Qt/Tools/mingw730_64/bin/gcc.exe
-- Check for working C compiler: C:/Qt/Tools/mingw730_64/bin/gcc.exe -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: C:/Qt/Tools/mingw730_64/bin/g++.exe
-- Check for working CXX compiler: C:/Qt/Tools/mingw730_64/bin/g++.exe -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - found
-- Found Threads: TRUE
-- Detected ZMQ Version - 4.3.3
-- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
-- Performing Test COMPILER_SUPPORTS_CXX11
-- Performing Test COMPILER_SUPPORTS_CXX11 - Success
-- Performing Test COMPILER_SUPPORTS_C11
-- Performing Test COMPILER_SUPPORTS_C11 - Success
-- Performing Test CXX_HAS_TAUT_WARNING
-- Performing Test CXX_HAS_TAUT_WARNING - Success
-- Performing Test CC_HAS_TAUT_WARNING
-- Performing Test CC_HAS_TAUT_WARNING - Success
-- Build and install draft classes and methods
-- Using radix tree implementation to manage subscriptions
-- Enable WebSocket transport
-- Could NOT find GnuTLS (missing: GNUTLS_LIBRARY GNUTLS_INCLUDE_DIR) (Required is at least version "3.6.7")
CMake Warning at CMakeLists.txt:212 (message):
  No WSS support, you may want to install GnuTLS and run cmake again


-- Using builtin sha1
-- Looking for strlcpy
-- Looking for strlcpy - not found
CMake Error at C:/Program Files/CMake/share/cmake-3.14/Modules/FindPackageHandleStandardArgs.cmake:137 (message):
  Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
Call Stack (most recent call first):
  C:/Program Files/CMake/share/cmake-3.14/Modules/FindPackageHandleStandardArgs.cmake:378 (_FPHSA_FAILURE_MESSAGE)
  C:/Program Files/CMake/share/cmake-3.14/Modules/FindPkgConfig.cmake:41 (find_package_handle_standard_args)
  builds/cmake/Modules/FindSodium.cmake:7 (find_package)
  CMakeLists.txt:267 (find_package)


-- Configuring incomplete, errors occurred!
See also "C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeOutput.log".
See also "C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeError.log".

CMakeOutput.log

The system is: Windows - 10.0.18363 - AMD64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: C:/Qt/Tools/mingw730_64/bin/gcc.exe 
Build flags: 
Id flags:  

The output was:
0


Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.exe"

The C compiler identification is GNU, found in "C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/3.14.0-rc4/CompilerIdC/a.exe"

Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: C:/Qt/Tools/mingw730_64/bin/g++.exe 
Build flags: 
Id flags:  

The output was:
0


Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.exe"

The CXX compiler identification is GNU, found in "C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/3.14.0-rc4/CompilerIdCXX/a.exe"

Determining if the C compiler works passed with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_c4e17/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_c4e17.dir\build.make CMakeFiles/cmTC_c4e17.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building C object CMakeFiles/cmTC_c4e17.dir/testCCompiler.c.obj

C:\Qt\Tools\mingw730_64\bin\gcc.exe    -o CMakeFiles\cmTC_c4e17.dir\testCCompiler.c.obj   -c C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\CMakeTmp\testCCompiler.c

Linking C executable cmTC_c4e17.exe

"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_c4e17.dir\link.txt --verbose=1

"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_c4e17.dir/objects.a
C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_c4e17.dir/objects.a @CMakeFiles\cmTC_c4e17.dir\objects1.rsp
C:\Qt\Tools\mingw730_64\bin\gcc.exe      -Wl,--whole-archive CMakeFiles\cmTC_c4e17.dir/objects.a -Wl,--no-whole-archive  -o cmTC_c4e17.exe -Wl,--out-implib,libcmTC_c4e17.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_c4e17.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'



Detecting C compiler ABI info compiled with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_5b16e/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_5b16e.dir\build.make CMakeFiles/cmTC_5b16e.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building C object CMakeFiles/cmTC_5b16e.dir/CMakeCCompilerABI.c.obj

C:\Qt\Tools\mingw730_64\bin\gcc.exe   -v -o CMakeFiles\cmTC_5b16e.dir\CMakeCCompilerABI.c.obj   -c "C:\Program Files\CMake\share\cmake-3.14\Modules\CMakeCCompilerABI.c"

Using built-in specs.

COLLECT_GCC=C:\Qt\Tools\mingw730_64\bin\gcc.exe

Target: x86_64-w64-mingw32

Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib '

Thread model: posix

gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) 

COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_5b16e.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona'

 C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/cc1.exe -quiet -v -iprefix C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/ -D_REENTRANT C:\Program Files\CMake\share\cmake-3.14\Modules\CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=core2 -march=nocona -auxbase-strip CMakeFiles\cmTC_5b16e.dir\CMakeCCompilerABI.c.obj -version -o C:\Users\Hasan\AppData\Local\Temp\ccNyJCHZ.s

GNU C11 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)

	compiled by GNU C version 7.3.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP



GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072

ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include"

ignoring nonexistent directory "C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64C:/msys64-2/mingw64/lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../include"

ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed"

ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include"

ignoring nonexistent directory "C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/mingw/include"

#include "..." search starts here:

#include <...> search starts here:

 C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include

 C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed

 C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include

End of search list.

GNU C11 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)

	compiled by GNU C version 7.3.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP



GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072

Compiler executable checksum: afb3948cd5c0c8f535365414e7310436

COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_5b16e.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona'

 C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_5b16e.dir\CMakeCCompilerABI.c.obj C:\Users\Hasan\AppData\Local\Temp\ccNyJCHZ.s

GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30

COMPILER_PATH=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/

LIBRARY_PATH=C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../

COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_5b16e.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona'

Linking C executable cmTC_5b16e.exe

"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_5b16e.dir\link.txt --verbose=1

"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_5b16e.dir/objects.a
C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_5b16e.dir/objects.a @CMakeFiles\cmTC_5b16e.dir\objects1.rsp
C:\Qt\Tools\mingw730_64\bin\gcc.exe     -v -Wl,--whole-archive CMakeFiles\cmTC_5b16e.dir/objects.a -Wl,--no-whole-archive  -o cmTC_5b16e.exe -Wl,--out-implib,libcmTC_5b16e.dll.a -Wl,--major-image-version,0,--minor-image-version,0 
Using built-in specs.

COLLECT_GCC=C:\Qt\Tools\mingw730_64\bin\gcc.exe

COLLECT_LTO_WRAPPER=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe

Target: x86_64-w64-mingw32

Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib '

Thread model: posix

gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) 

COMPILER_PATH=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/

LIBRARY_PATH=C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../

COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_5b16e.exe' '-mtune=core2' '-march=nocona'

 C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe -plugin C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll -plugin-opt=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\Hasan\AppData\Local\Temp\ccpirZud.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_5b16e.exe C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0 -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../.. --whole-archive CMakeFiles\cmTC_5b16e.dir/objects.a --no-whole-archive --out-implib libcmTC_5b16e.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o

COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_5b16e.exe' '-mtune=core2' '-march=nocona'

mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'



Parsed C implicit include dir info from above output: rv=done
  found start of include info
  found start of implicit include info
    add: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include]
    add: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed]
    add: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include]
  end of search list found
  implicit include dirs: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include]


Parsed C implicit link information from above output:
  link line regex: [^( *|.*[/\])(ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
  ignore line: [Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp]
  ignore line: []
  ignore line: [Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_5b16e/fast ]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_5b16e.dir\build.make CMakeFiles/cmTC_5b16e.dir/build]
  ignore line: [mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp']
  ignore line: [Building C object CMakeFiles/cmTC_5b16e.dir/CMakeCCompilerABI.c.obj]
  ignore line: [C:\Qt\Tools\mingw730_64\bin\gcc.exe   -v -o CMakeFiles\cmTC_5b16e.dir\CMakeCCompilerABI.c.obj   -c "C:\Program Files\CMake\share\cmake-3.14\Modules\CMakeCCompilerABI.c"]
  ignore line: [Using built-in specs.]
  ignore line: [COLLECT_GCC=C:\Qt\Tools\mingw730_64\bin\gcc.exe]
  ignore line: [Target: x86_64-w64-mingw32]
  ignore line: [Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib ']
  ignore line: [Thread model: posix]
  ignore line: [gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) ]
  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_5b16e.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona']
  ignore line: [ C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/cc1.exe -quiet -v -iprefix C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/ -D_REENTRANT C:\Program Files\CMake\share\cmake-3.14\Modules\CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=core2 -march=nocona -auxbase-strip CMakeFiles\cmTC_5b16e.dir\CMakeCCompilerABI.c.obj -version -o C:\Users\Hasan\AppData\Local\Temp\ccNyJCHZ.s]
  ignore line: [GNU C11 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)]
  ignore line: [	compiled by GNU C version 7.3.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP]
  ignore line: []
  ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
  ignore line: [ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include"]
  ignore line: [ignoring nonexistent directory "C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64C:/msys64-2/mingw64/lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../include"]
  ignore line: [ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed"]
  ignore line: [ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include"]
  ignore line: [ignoring nonexistent directory "C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/mingw/include"]
  ignore line: [#include "..." search starts here:]
  ignore line: [#include <...> search starts here:]
  ignore line: [ C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include]
  ignore line: [ C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed]
  ignore line: [ C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include]
  ignore line: [End of search list.]
  ignore line: [GNU C11 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)]
  ignore line: [	compiled by GNU C version 7.3.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP]
  ignore line: []
  ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
  ignore line: [Compiler executable checksum: afb3948cd5c0c8f535365414e7310436]
  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_5b16e.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona']
  ignore line: [ C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_5b16e.dir\CMakeCCompilerABI.c.obj C:\Users\Hasan\AppData\Local\Temp\ccNyJCHZ.s]
  ignore line: [GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30]
  ignore line: [COMPILER_PATH=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/]
  ignore line: [LIBRARY_PATH=C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../]
  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_5b16e.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona']
  ignore line: [Linking C executable cmTC_5b16e.exe]
  ignore line: ["C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_5b16e.dir\link.txt --verbose=1]
  ignore line: ["C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_5b16e.dir/objects.a]
  ignore line: [C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_5b16e.dir/objects.a @CMakeFiles\cmTC_5b16e.dir\objects1.rsp]
  ignore line: [C:\Qt\Tools\mingw730_64\bin\gcc.exe     -v -Wl,--whole-archive CMakeFiles\cmTC_5b16e.dir/objects.a -Wl,--no-whole-archive  -o cmTC_5b16e.exe -Wl,--out-implib,libcmTC_5b16e.dll.a -Wl,--major-image-version,0,--minor-image-version,0 ]
  ignore line: [Using built-in specs.]
  ignore line: [COLLECT_GCC=C:\Qt\Tools\mingw730_64\bin\gcc.exe]
  ignore line: [COLLECT_LTO_WRAPPER=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe]
  ignore line: [Target: x86_64-w64-mingw32]
  ignore line: [Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib ']
  ignore line: [Thread model: posix]
  ignore line: [gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) ]
  ignore line: [COMPILER_PATH=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/]
  ignore line: [LIBRARY_PATH=C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../]
  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_5b16e.exe' '-mtune=core2' '-march=nocona']
  link line: [ C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe -plugin C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll -plugin-opt=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\Hasan\AppData\Local\Temp\ccpirZud.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_5b16e.exe C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0 -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../.. --whole-archive CMakeFiles\cmTC_5b16e.dir/objects.a --no-whole-archive --out-implib libcmTC_5b16e.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o]
    arg [C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe] ==> ignore
    arg [-plugin] ==> ignore
    arg [C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll] ==> ignore
    arg [-plugin-opt=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe] ==> ignore
    arg [-plugin-opt=-fresolution=C:\Users\Hasan\AppData\Local\Temp\ccpirZud.res] ==> ignore
    arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc_eh] ==> ignore
    arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore
    arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore
    arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore
    arg [-plugin-opt=-pass-through=-lpthread] ==> ignore
    arg [-plugin-opt=-pass-through=-ladvapi32] ==> ignore
    arg [-plugin-opt=-pass-through=-lshell32] ==> ignore
    arg [-plugin-opt=-pass-through=-luser32] ==> ignore
    arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore
    arg [-plugin-opt=-pass-through=-liconv] ==> ignore
    arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc_eh] ==> ignore
    arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore
    arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore
    arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore
    arg [--sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64] ==> ignore
    arg [-m] ==> ignore
    arg [i386pep] ==> ignore
    arg [-Bdynamic] ==> ignore
    arg [-o] ==> ignore
    arg [cmTC_5b16e.exe] ==> ignore
    arg [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> ignore
    arg [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o] ==> ignore
    arg [-LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0] ==> dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0]
    arg [-LC:/Qt/Tools/mingw730_64/bin/../lib/gcc] ==> dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc]
    arg [-LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib]
    arg [-LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib] ==> dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib]
    arg [-LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib] ==> dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib]
    arg [-LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..] ==> dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..]
    arg [--whole-archive] ==> ignore
    arg [CMakeFiles\cmTC_5b16e.dir/objects.a] ==> ignore
    arg [--no-whole-archive] ==> ignore
    arg [--out-implib] ==> ignore
    arg [libcmTC_5b16e.dll.a] ==> ignore
    arg [--major-image-version] ==> ignore
    arg [0] ==> ignore
    arg [--minor-image-version] ==> ignore
    arg [0] ==> ignore
    arg [-lmingw32] ==> lib [mingw32]
    arg [-lgcc] ==> lib [gcc]
    arg [-lgcc_eh] ==> lib [gcc_eh]
    arg [-lmoldname] ==> lib [moldname]
    arg [-lmingwex] ==> lib [mingwex]
    arg [-lmsvcrt] ==> lib [msvcrt]
    arg [-lpthread] ==> lib [pthread]
    arg [-ladvapi32] ==> lib [advapi32]
    arg [-lshell32] ==> lib [shell32]
    arg [-luser32] ==> lib [user32]
    arg [-lkernel32] ==> lib [kernel32]
    arg [-liconv] ==> lib [iconv]
    arg [-lmingw32] ==> lib [mingw32]
    arg [-lgcc] ==> lib [gcc]
    arg [-lgcc_eh] ==> lib [gcc_eh]
    arg [-lmoldname] ==> lib [moldname]
    arg [-lmingwex] ==> lib [mingwex]
    arg [-lmsvcrt] ==> lib [msvcrt]
    arg [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o] ==> ignore
  remove lib [gcc_eh]
  remove lib [msvcrt]
  remove lib [gcc_eh]
  remove lib [msvcrt]
  collapse library dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0] ==> [C:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0]
  collapse library dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc] ==> [C:/Qt/Tools/mingw730_64/lib/gcc]
  collapse library dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> [C:/Qt/Tools/mingw730_64/x86_64-w64-mingw32/lib]
  collapse library dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib] ==> [C:/Qt/Tools/mingw730_64/lib]
  collapse library dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib] ==> [C:/Qt/Tools/mingw730_64/x86_64-w64-mingw32/lib]
  collapse library dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..] ==> [C:/Qt/Tools/mingw730_64/lib]
  implicit libs: [mingw32;gcc;moldname;mingwex;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc;moldname;mingwex]
  implicit dirs: [C:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0;C:/Qt/Tools/mingw730_64/lib/gcc;C:/Qt/Tools/mingw730_64/x86_64-w64-mingw32/lib;C:/Qt/Tools/mingw730_64/lib]
  implicit fwks: []




Detecting C [-std=c11] compiler features compiled with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_1ab87/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_1ab87.dir\build.make CMakeFiles/cmTC_1ab87.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building C object CMakeFiles/cmTC_1ab87.dir/feature_tests.c.obj

C:\Qt\Tools\mingw730_64\bin\gcc.exe   -std=c11 -o CMakeFiles\cmTC_1ab87.dir\feature_tests.c.obj   -c C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\feature_tests.c

Linking C executable cmTC_1ab87.exe

"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_1ab87.dir\link.txt --verbose=1

"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_1ab87.dir/objects.a
C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_1ab87.dir/objects.a @CMakeFiles\cmTC_1ab87.dir\objects1.rsp
C:\Qt\Tools\mingw730_64\bin\gcc.exe      -Wl,--whole-archive CMakeFiles\cmTC_1ab87.dir/objects.a -Wl,--no-whole-archive  -o cmTC_1ab87.exe -Wl,--out-implib,libcmTC_1ab87.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_1ab87.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'



    Feature record: C_FEATURE:1c_function_prototypes
    Feature record: C_FEATURE:1c_restrict
    Feature record: C_FEATURE:1c_static_assert
    Feature record: C_FEATURE:1c_variadic_macros


Detecting C [-std=c99] compiler features compiled with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_31c4e/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_31c4e.dir\build.make CMakeFiles/cmTC_31c4e.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building C object CMakeFiles/cmTC_31c4e.dir/feature_tests.c.obj

C:\Qt\Tools\mingw730_64\bin\gcc.exe   -std=c99 -o CMakeFiles\cmTC_31c4e.dir\feature_tests.c.obj   -c C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\feature_tests.c

Linking C executable cmTC_31c4e.exe

"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_31c4e.dir\link.txt --verbose=1

"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_31c4e.dir/objects.a
C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_31c4e.dir/objects.a @CMakeFiles\cmTC_31c4e.dir\objects1.rsp
C:\Qt\Tools\mingw730_64\bin\gcc.exe      -Wl,--whole-archive CMakeFiles\cmTC_31c4e.dir/objects.a -Wl,--no-whole-archive  -o cmTC_31c4e.exe -Wl,--out-implib,libcmTC_31c4e.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_31c4e.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'



    Feature record: C_FEATURE:1c_function_prototypes
    Feature record: C_FEATURE:1c_restrict
    Feature record: C_FEATURE:0c_static_assert
    Feature record: C_FEATURE:1c_variadic_macros


Detecting C [-std=c90] compiler features compiled with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_19c1a/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_19c1a.dir\build.make CMakeFiles/cmTC_19c1a.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building C object CMakeFiles/cmTC_19c1a.dir/feature_tests.c.obj

C:\Qt\Tools\mingw730_64\bin\gcc.exe   -std=c90 -o CMakeFiles\cmTC_19c1a.dir\feature_tests.c.obj   -c C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\feature_tests.c

Linking C executable cmTC_19c1a.exe

"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_19c1a.dir\link.txt --verbose=1

"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_19c1a.dir/objects.a
C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_19c1a.dir/objects.a @CMakeFiles\cmTC_19c1a.dir\objects1.rsp
C:\Qt\Tools\mingw730_64\bin\gcc.exe      -Wl,--whole-archive CMakeFiles\cmTC_19c1a.dir/objects.a -Wl,--no-whole-archive  -o cmTC_19c1a.exe -Wl,--out-implib,libcmTC_19c1a.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_19c1a.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'



    Feature record: C_FEATURE:1c_function_prototypes
    Feature record: C_FEATURE:0c_restrict
    Feature record: C_FEATURE:0c_static_assert
    Feature record: C_FEATURE:0c_variadic_macros
Determining if the CXX compiler works passed with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_34291/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_34291.dir\build.make CMakeFiles/cmTC_34291.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building CXX object CMakeFiles/cmTC_34291.dir/testCXXCompiler.cxx.obj

C:\Qt\Tools\mingw730_64\bin\g++.exe     -o CMakeFiles\cmTC_34291.dir\testCXXCompiler.cxx.obj -c C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\CMakeTmp\testCXXCompiler.cxx

Linking CXX executable cmTC_34291.exe

"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_34291.dir\link.txt --verbose=1

"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_34291.dir/objects.a
C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_34291.dir/objects.a @CMakeFiles\cmTC_34291.dir\objects1.rsp
C:\Qt\Tools\mingw730_64\bin\g++.exe      -Wl,--whole-archive CMakeFiles\cmTC_34291.dir/objects.a -Wl,--no-whole-archive  -o cmTC_34291.exe -Wl,--out-implib,libcmTC_34291.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_34291.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'



Detecting CXX compiler ABI info compiled with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_083f6/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_083f6.dir\build.make CMakeFiles/cmTC_083f6.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building CXX object CMakeFiles/cmTC_083f6.dir/CMakeCXXCompilerABI.cpp.obj

C:\Qt\Tools\mingw730_64\bin\g++.exe    -v -o CMakeFiles\cmTC_083f6.dir\CMakeCXXCompilerABI.cpp.obj -c "C:\Program Files\CMake\share\cmake-3.14\Modules\CMakeCXXCompilerABI.cpp"

Using built-in specs.

COLLECT_GCC=C:\Qt\Tools\mingw730_64\bin\g++.exe

Target: x86_64-w64-mingw32

Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib '

Thread model: posix

gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) 

COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_083f6.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona'

 C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/cc1plus.exe -quiet -v -iprefix C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/ -D_REENTRANT C:\Program Files\CMake\share\cmake-3.14\Modules\CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=core2 -march=nocona -auxbase-strip CMakeFiles\cmTC_083f6.dir\CMakeCXXCompilerABI.cpp.obj -version -o C:\Users\Hasan\AppData\Local\Temp\cc2Azmrw.s

GNU C++14 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)

	compiled by GNU C version 7.3.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP



GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072

ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++"

ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32"

ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward"

ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include"

ignoring nonexistent directory "C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64C:/msys64-2/mingw64/lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../include"

ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed"

ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include"

ignoring nonexistent directory "C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/mingw/include"

#include "..." search starts here:

#include <...> search starts here:

 C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++

 C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32

 C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward

 C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include

 C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed

 C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include

End of search list.

GNU C++14 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)

	compiled by GNU C version 7.3.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP



GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072

Compiler executable checksum: 86cf749bb84a0f12f1d61bff4e68fffd

COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_083f6.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona'

 C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_083f6.dir\CMakeCXXCompilerABI.cpp.obj C:\Users\Hasan\AppData\Local\Temp\cc2Azmrw.s

GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30

COMPILER_PATH=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/

LIBRARY_PATH=C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../

COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_083f6.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona'

Linking CXX executable cmTC_083f6.exe

"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_083f6.dir\link.txt --verbose=1

"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_083f6.dir/objects.a
C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_083f6.dir/objects.a @CMakeFiles\cmTC_083f6.dir\objects1.rsp
C:\Qt\Tools\mingw730_64\bin\g++.exe     -v -Wl,--whole-archive CMakeFiles\cmTC_083f6.dir/objects.a -Wl,--no-whole-archive  -o cmTC_083f6.exe -Wl,--out-implib,libcmTC_083f6.dll.a -Wl,--major-image-version,0,--minor-image-version,0 
Using built-in specs.

COLLECT_GCC=C:\Qt\Tools\mingw730_64\bin\g++.exe

COLLECT_LTO_WRAPPER=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe

Target: x86_64-w64-mingw32

Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib '

Thread model: posix

gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) 

COMPILER_PATH=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/

LIBRARY_PATH=C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../

COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_083f6.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona'

 C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe -plugin C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll -plugin-opt=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\Hasan\AppData\Local\Temp\ccgSPoPH.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_083f6.exe C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0 -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../.. --whole-archive CMakeFiles\cmTC_083f6.dir/objects.a --no-whole-archive --out-implib libcmTC_083f6.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o

COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_083f6.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona'

mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'



Parsed CXX implicit include dir info from above output: rv=done
  found start of include info
  found start of implicit include info
    add: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++]
    add: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32]
    add: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward]
    add: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include]
    add: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed]
    add: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include]
  end of search list found
  implicit include dirs: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed;C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include]


Parsed CXX implicit link information from above output:
  link line regex: [^( *|.*[/\])(ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
  ignore line: [Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp]
  ignore line: []
  ignore line: [Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_083f6/fast ]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_083f6.dir\build.make CMakeFiles/cmTC_083f6.dir/build]
  ignore line: [mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp']
  ignore line: [Building CXX object CMakeFiles/cmTC_083f6.dir/CMakeCXXCompilerABI.cpp.obj]
  ignore line: [C:\Qt\Tools\mingw730_64\bin\g++.exe    -v -o CMakeFiles\cmTC_083f6.dir\CMakeCXXCompilerABI.cpp.obj -c "C:\Program Files\CMake\share\cmake-3.14\Modules\CMakeCXXCompilerABI.cpp"]
  ignore line: [Using built-in specs.]
  ignore line: [COLLECT_GCC=C:\Qt\Tools\mingw730_64\bin\g++.exe]
  ignore line: [Target: x86_64-w64-mingw32]
  ignore line: [Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib ']
  ignore line: [Thread model: posix]
  ignore line: [gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) ]
  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_083f6.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona']
  ignore line: [ C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/cc1plus.exe -quiet -v -iprefix C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/ -D_REENTRANT C:\Program Files\CMake\share\cmake-3.14\Modules\CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=core2 -march=nocona -auxbase-strip CMakeFiles\cmTC_083f6.dir\CMakeCXXCompilerABI.cpp.obj -version -o C:\Users\Hasan\AppData\Local\Temp\cc2Azmrw.s]
  ignore line: [GNU C++14 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)]
  ignore line: [	compiled by GNU C version 7.3.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP]
  ignore line: []
  ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
  ignore line: [ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++"]
  ignore line: [ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32"]
  ignore line: [ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward"]
  ignore line: [ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include"]
  ignore line: [ignoring nonexistent directory "C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64C:/msys64-2/mingw64/lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../include"]
  ignore line: [ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed"]
  ignore line: [ignoring duplicate directory "C:/Qt/Tools/mingw730_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include"]
  ignore line: [ignoring nonexistent directory "C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/mingw/include"]
  ignore line: [#include "..." search starts here:]
  ignore line: [#include <...> search starts here:]
  ignore line: [ C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++]
  ignore line: [ C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32]
  ignore line: [ C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward]
  ignore line: [ C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include]
  ignore line: [ C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed]
  ignore line: [ C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/include]
  ignore line: [End of search list.]
  ignore line: [GNU C++14 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 7.3.0 (x86_64-w64-mingw32)]
  ignore line: [	compiled by GNU C version 7.3.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP]
  ignore line: []
  ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
  ignore line: [Compiler executable checksum: 86cf749bb84a0f12f1d61bff4e68fffd]
  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_083f6.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona']
  ignore line: [ C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_083f6.dir\CMakeCXXCompilerABI.cpp.obj C:\Users\Hasan\AppData\Local\Temp\cc2Azmrw.s]
  ignore line: [GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30]
  ignore line: [COMPILER_PATH=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/]
  ignore line: [LIBRARY_PATH=C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../]
  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_083f6.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona']
  ignore line: [Linking CXX executable cmTC_083f6.exe]
  ignore line: ["C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_083f6.dir\link.txt --verbose=1]
  ignore line: ["C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_083f6.dir/objects.a]
  ignore line: [C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_083f6.dir/objects.a @CMakeFiles\cmTC_083f6.dir\objects1.rsp]
  ignore line: [C:\Qt\Tools\mingw730_64\bin\g++.exe     -v -Wl,--whole-archive CMakeFiles\cmTC_083f6.dir/objects.a -Wl,--no-whole-archive  -o cmTC_083f6.exe -Wl,--out-implib,libcmTC_083f6.dll.a -Wl,--major-image-version,0,--minor-image-version,0 ]
  ignore line: [Using built-in specs.]
  ignore line: [COLLECT_GCC=C:\Qt\Tools\mingw730_64\bin\g++.exe]
  ignore line: [COLLECT_LTO_WRAPPER=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe]
  ignore line: [Target: x86_64-w64-mingw32]
  ignore line: [Configured with: ../../../src/gcc-7.3.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw730/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/include -I/c/mingw730/prerequisites/x86_64-zlib-static/include -I/c/mingw730/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64/opt/lib -L/c/mingw730/prerequisites/x86_64-zlib-static/lib -L/c/mingw730/prerequisites/x86_64-w64-mingw32-static/lib ']
  ignore line: [Thread model: posix]
  ignore line: [gcc version 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) ]
  ignore line: [COMPILER_PATH=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/bin/]
  ignore line: [LIBRARY_PATH=C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/]
  ignore line: [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../]
  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_083f6.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona']
  link line: [ C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe -plugin C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll -plugin-opt=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\Hasan\AppData\Local\Temp\ccgSPoPH.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_083f6.exe C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0 -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib -LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../.. --whole-archive CMakeFiles\cmTC_083f6.dir/objects.a --no-whole-archive --out-implib libcmTC_083f6.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o]
    arg [C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/collect2.exe] ==> ignore
    arg [-plugin] ==> ignore
    arg [C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/liblto_plugin-0.dll] ==> ignore
    arg [-plugin-opt=C:/Qt/Tools/mingw730_64/bin/../libexec/gcc/x86_64-w64-mingw32/7.3.0/lto-wrapper.exe] ==> ignore
    arg [-plugin-opt=-fresolution=C:\Users\Hasan\AppData\Local\Temp\ccgSPoPH.res] ==> ignore
    arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
    arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore
    arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore
    arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore
    arg [-plugin-opt=-pass-through=-lpthread] ==> ignore
    arg [-plugin-opt=-pass-through=-ladvapi32] ==> ignore
    arg [-plugin-opt=-pass-through=-lshell32] ==> ignore
    arg [-plugin-opt=-pass-through=-luser32] ==> ignore
    arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore
    arg [-plugin-opt=-pass-through=-liconv] ==> ignore
    arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
    arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore
    arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore
    arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore
    arg [--sysroot=C:/mingw730/x86_64-730-posix-seh-rt_v5-rev0/mingw64] ==> ignore
    arg [-m] ==> ignore
    arg [i386pep] ==> ignore
    arg [-Bdynamic] ==> ignore
    arg [-o] ==> ignore
    arg [cmTC_083f6.exe] ==> ignore
    arg [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> ignore
    arg [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtbegin.o] ==> ignore
    arg [-LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0] ==> dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0]
    arg [-LC:/Qt/Tools/mingw730_64/bin/../lib/gcc] ==> dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc]
    arg [-LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib]
    arg [-LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib] ==> dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib]
    arg [-LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib] ==> dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib]
    arg [-LC:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..] ==> dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..]
    arg [--whole-archive] ==> ignore
    arg [CMakeFiles\cmTC_083f6.dir/objects.a] ==> ignore
    arg [--no-whole-archive] ==> ignore
    arg [--out-implib] ==> ignore
    arg [libcmTC_083f6.dll.a] ==> ignore
    arg [--major-image-version] ==> ignore
    arg [0] ==> ignore
    arg [--minor-image-version] ==> ignore
    arg [0] ==> ignore
    arg [-lstdc++] ==> lib [stdc++]
    arg [-lmingw32] ==> lib [mingw32]
    arg [-lgcc_s] ==> lib [gcc_s]
    arg [-lgcc] ==> lib [gcc]
    arg [-lmoldname] ==> lib [moldname]
    arg [-lmingwex] ==> lib [mingwex]
    arg [-lmsvcrt] ==> lib [msvcrt]
    arg [-lpthread] ==> lib [pthread]
    arg [-ladvapi32] ==> lib [advapi32]
    arg [-lshell32] ==> lib [shell32]
    arg [-luser32] ==> lib [user32]
    arg [-lkernel32] ==> lib [kernel32]
    arg [-liconv] ==> lib [iconv]
    arg [-lmingw32] ==> lib [mingw32]
    arg [-lgcc_s] ==> lib [gcc_s]
    arg [-lgcc] ==> lib [gcc]
    arg [-lmoldname] ==> lib [moldname]
    arg [-lmingwex] ==> lib [mingwex]
    arg [-lmsvcrt] ==> lib [msvcrt]
    arg [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/crtend.o] ==> ignore
  remove lib [msvcrt]
  remove lib [msvcrt]
  collapse library dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0] ==> [C:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0]
  collapse library dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc] ==> [C:/Qt/Tools/mingw730_64/lib/gcc]
  collapse library dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> [C:/Qt/Tools/mingw730_64/x86_64-w64-mingw32/lib]
  collapse library dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../lib] ==> [C:/Qt/Tools/mingw730_64/lib]
  collapse library dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../../../x86_64-w64-mingw32/lib] ==> [C:/Qt/Tools/mingw730_64/x86_64-w64-mingw32/lib]
  collapse library dir [C:/Qt/Tools/mingw730_64/bin/../lib/gcc/x86_64-w64-mingw32/7.3.0/../../..] ==> [C:/Qt/Tools/mingw730_64/lib]
  implicit libs: [stdc++;mingw32;gcc_s;gcc;moldname;mingwex;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc_s;gcc;moldname;mingwex]
  implicit dirs: [C:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0;C:/Qt/Tools/mingw730_64/lib/gcc;C:/Qt/Tools/mingw730_64/x86_64-w64-mingw32/lib;C:/Qt/Tools/mingw730_64/lib]
  implicit fwks: []




Detecting CXX [-std=c++1z] compiler features compiled with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_79cb4/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_79cb4.dir\build.make CMakeFiles/cmTC_79cb4.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building CXX object CMakeFiles/cmTC_79cb4.dir/feature_tests.cxx.obj

C:\Qt\Tools\mingw730_64\bin\g++.exe    -std=c++1z -o CMakeFiles\cmTC_79cb4.dir\feature_tests.cxx.obj -c C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\feature_tests.cxx

Linking CXX executable cmTC_79cb4.exe

"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_79cb4.dir\link.txt --verbose=1

"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_79cb4.dir/objects.a
C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_79cb4.dir/objects.a @CMakeFiles\cmTC_79cb4.dir\objects1.rsp
C:\Qt\Tools\mingw730_64\bin\g++.exe      -Wl,--whole-archive CMakeFiles\cmTC_79cb4.dir/objects.a -Wl,--no-whole-archive  -o cmTC_79cb4.exe -Wl,--out-implib,libcmTC_79cb4.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_79cb4.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'



    Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
    Feature record: CXX_FEATURE:1cxx_alias_templates
    Feature record: CXX_FEATURE:1cxx_alignas
    Feature record: CXX_FEATURE:1cxx_alignof
    Feature record: CXX_FEATURE:1cxx_attributes
    Feature record: CXX_FEATURE:1cxx_attribute_deprecated
    Feature record: CXX_FEATURE:1cxx_auto_type
    Feature record: CXX_FEATURE:1cxx_binary_literals
    Feature record: CXX_FEATURE:1cxx_constexpr
    Feature record: CXX_FEATURE:1cxx_contextual_conversions
    Feature record: CXX_FEATURE:1cxx_decltype
    Feature record: CXX_FEATURE:1cxx_decltype_auto
    Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
    Feature record: CXX_FEATURE:1cxx_default_function_template_args
    Feature record: CXX_FEATURE:1cxx_defaulted_functions
    Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
    Feature record: CXX_FEATURE:1cxx_delegating_constructors
    Feature record: CXX_FEATURE:1cxx_deleted_functions
    Feature record: CXX_FEATURE:1cxx_digit_separators
    Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
    Feature record: CXX_FEATURE:1cxx_explicit_conversions
    Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
    Feature record: CXX_FEATURE:1cxx_extern_templates
    Feature record: CXX_FEATURE:1cxx_final
    Feature record: CXX_FEATURE:1cxx_func_identifier
    Feature record: CXX_FEATURE:1cxx_generalized_initializers
    Feature record: CXX_FEATURE:1cxx_generic_lambdas
    Feature record: CXX_FEATURE:1cxx_inheriting_constructors
    Feature record: CXX_FEATURE:1cxx_inline_namespaces
    Feature record: CXX_FEATURE:1cxx_lambdas
    Feature record: CXX_FEATURE:1cxx_lambda_init_captures
    Feature record: CXX_FEATURE:1cxx_local_type_template_args
    Feature record: CXX_FEATURE:1cxx_long_long_type
    Feature record: CXX_FEATURE:1cxx_noexcept
    Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
    Feature record: CXX_FEATURE:1cxx_nullptr
    Feature record: CXX_FEATURE:1cxx_override
    Feature record: CXX_FEATURE:1cxx_range_for
    Feature record: CXX_FEATURE:1cxx_raw_string_literals
    Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
    Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
    Feature record: CXX_FEATURE:1cxx_return_type_deduction
    Feature record: CXX_FEATURE:1cxx_right_angle_brackets
    Feature record: CXX_FEATURE:1cxx_rvalue_references
    Feature record: CXX_FEATURE:1cxx_sizeof_member
    Feature record: CXX_FEATURE:1cxx_static_assert
    Feature record: CXX_FEATURE:1cxx_strong_enums
    Feature record: CXX_FEATURE:1cxx_template_template_parameters
    Feature record: CXX_FEATURE:1cxx_thread_local
    Feature record: CXX_FEATURE:1cxx_trailing_return_types
    Feature record: CXX_FEATURE:1cxx_unicode_literals
    Feature record: CXX_FEATURE:1cxx_uniform_initialization
    Feature record: CXX_FEATURE:1cxx_unrestricted_unions
    Feature record: CXX_FEATURE:1cxx_user_literals
    Feature record: CXX_FEATURE:1cxx_variable_templates
    Feature record: CXX_FEATURE:1cxx_variadic_macros
    Feature record: CXX_FEATURE:1cxx_variadic_templates


Detecting CXX [-std=c++14] compiler features compiled with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_3df5d/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_3df5d.dir\build.make CMakeFiles/cmTC_3df5d.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building CXX object CMakeFiles/cmTC_3df5d.dir/feature_tests.cxx.obj

C:\Qt\Tools\mingw730_64\bin\g++.exe    -std=c++14 -o CMakeFiles\cmTC_3df5d.dir\feature_tests.cxx.obj -c C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\feature_tests.cxx

Linking CXX executable cmTC_3df5d.exe

"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_3df5d.dir\link.txt --verbose=1

"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_3df5d.dir/objects.a
C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_3df5d.dir/objects.a @CMakeFiles\cmTC_3df5d.dir\objects1.rsp
C:\Qt\Tools\mingw730_64\bin\g++.exe      -Wl,--whole-archive CMakeFiles\cmTC_3df5d.dir/objects.a -Wl,--no-whole-archive  -o cmTC_3df5d.exe -Wl,--out-implib,libcmTC_3df5d.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_3df5d.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'



    Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
    Feature record: CXX_FEATURE:1cxx_alias_templates
    Feature record: CXX_FEATURE:1cxx_alignas
    Feature record: CXX_FEATURE:1cxx_alignof
    Feature record: CXX_FEATURE:1cxx_attributes
    Feature record: CXX_FEATURE:1cxx_attribute_deprecated
    Feature record: CXX_FEATURE:1cxx_auto_type
    Feature record: CXX_FEATURE:1cxx_binary_literals
    Feature record: CXX_FEATURE:1cxx_constexpr
    Feature record: CXX_FEATURE:1cxx_contextual_conversions
    Feature record: CXX_FEATURE:1cxx_decltype
    Feature record: CXX_FEATURE:1cxx_decltype_auto
    Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
    Feature record: CXX_FEATURE:1cxx_default_function_template_args
    Feature record: CXX_FEATURE:1cxx_defaulted_functions
    Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
    Feature record: CXX_FEATURE:1cxx_delegating_constructors
    Feature record: CXX_FEATURE:1cxx_deleted_functions
    Feature record: CXX_FEATURE:1cxx_digit_separators
    Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
    Feature record: CXX_FEATURE:1cxx_explicit_conversions
    Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
    Feature record: CXX_FEATURE:1cxx_extern_templates
    Feature record: CXX_FEATURE:1cxx_final
    Feature record: CXX_FEATURE:1cxx_func_identifier
    Feature record: CXX_FEATURE:1cxx_generalized_initializers
    Feature record: CXX_FEATURE:1cxx_generic_lambdas
    Feature record: CXX_FEATURE:1cxx_inheriting_constructors
    Feature record: CXX_FEATURE:1cxx_inline_namespaces
    Feature record: CXX_FEATURE:1cxx_lambdas
    Feature record: CXX_FEATURE:1cxx_lambda_init_captures
    Feature record: CXX_FEATURE:1cxx_local_type_template_args
    Feature record: CXX_FEATURE:1cxx_long_long_type
    Feature record: CXX_FEATURE:1cxx_noexcept
    Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
    Feature record: CXX_FEATURE:1cxx_nullptr
    Feature record: CXX_FEATURE:1cxx_override
    Feature record: CXX_FEATURE:1cxx_range_for
    Feature record: CXX_FEATURE:1cxx_raw_string_literals
    Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
    Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
    Feature record: CXX_FEATURE:1cxx_return_type_deduction
    Feature record: CXX_FEATURE:1cxx_right_angle_brackets
    Feature record: CXX_FEATURE:1cxx_rvalue_references
    Feature record: CXX_FEATURE:1cxx_sizeof_member
    Feature record: CXX_FEATURE:1cxx_static_assert
    Feature record: CXX_FEATURE:1cxx_strong_enums
    Feature record: CXX_FEATURE:1cxx_template_template_parameters
    Feature record: CXX_FEATURE:1cxx_thread_local
    Feature record: CXX_FEATURE:1cxx_trailing_return_types
    Feature record: CXX_FEATURE:1cxx_unicode_literals
    Feature record: CXX_FEATURE:1cxx_uniform_initialization
    Feature record: CXX_FEATURE:1cxx_unrestricted_unions
    Feature record: CXX_FEATURE:1cxx_user_literals
    Feature record: CXX_FEATURE:1cxx_variable_templates
    Feature record: CXX_FEATURE:1cxx_variadic_macros
    Feature record: CXX_FEATURE:1cxx_variadic_templates


Detecting CXX [-std=c++11] compiler features compiled with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_801a1/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_801a1.dir\build.make CMakeFiles/cmTC_801a1.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building CXX object CMakeFiles/cmTC_801a1.dir/feature_tests.cxx.obj

C:\Qt\Tools\mingw730_64\bin\g++.exe    -std=c++11 -o CMakeFiles\cmTC_801a1.dir\feature_tests.cxx.obj -c C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\feature_tests.cxx

Linking CXX executable cmTC_801a1.exe

"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_801a1.dir\link.txt --verbose=1

"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_801a1.dir/objects.a
C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_801a1.dir/objects.a @CMakeFiles\cmTC_801a1.dir\objects1.rsp
C:\Qt\Tools\mingw730_64\bin\g++.exe      -Wl,--whole-archive CMakeFiles\cmTC_801a1.dir/objects.a -Wl,--no-whole-archive  -o cmTC_801a1.exe -Wl,--out-implib,libcmTC_801a1.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_801a1.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'



    Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
    Feature record: CXX_FEATURE:1cxx_alias_templates
    Feature record: CXX_FEATURE:1cxx_alignas
    Feature record: CXX_FEATURE:1cxx_alignof
    Feature record: CXX_FEATURE:1cxx_attributes
    Feature record: CXX_FEATURE:0cxx_attribute_deprecated
    Feature record: CXX_FEATURE:1cxx_auto_type
    Feature record: CXX_FEATURE:0cxx_binary_literals
    Feature record: CXX_FEATURE:1cxx_constexpr
    Feature record: CXX_FEATURE:0cxx_contextual_conversions
    Feature record: CXX_FEATURE:1cxx_decltype
    Feature record: CXX_FEATURE:0cxx_decltype_auto
    Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
    Feature record: CXX_FEATURE:1cxx_default_function_template_args
    Feature record: CXX_FEATURE:1cxx_defaulted_functions
    Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
    Feature record: CXX_FEATURE:1cxx_delegating_constructors
    Feature record: CXX_FEATURE:1cxx_deleted_functions
    Feature record: CXX_FEATURE:0cxx_digit_separators
    Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
    Feature record: CXX_FEATURE:1cxx_explicit_conversions
    Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
    Feature record: CXX_FEATURE:1cxx_extern_templates
    Feature record: CXX_FEATURE:1cxx_final
    Feature record: CXX_FEATURE:1cxx_func_identifier
    Feature record: CXX_FEATURE:1cxx_generalized_initializers
    Feature record: CXX_FEATURE:0cxx_generic_lambdas
    Feature record: CXX_FEATURE:1cxx_inheriting_constructors
    Feature record: CXX_FEATURE:1cxx_inline_namespaces
    Feature record: CXX_FEATURE:1cxx_lambdas
    Feature record: CXX_FEATURE:0cxx_lambda_init_captures
    Feature record: CXX_FEATURE:1cxx_local_type_template_args
    Feature record: CXX_FEATURE:1cxx_long_long_type
    Feature record: CXX_FEATURE:1cxx_noexcept
    Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
    Feature record: CXX_FEATURE:1cxx_nullptr
    Feature record: CXX_FEATURE:1cxx_override
    Feature record: CXX_FEATURE:1cxx_range_for
    Feature record: CXX_FEATURE:1cxx_raw_string_literals
    Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
    Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
    Feature record: CXX_FEATURE:0cxx_return_type_deduction
    Feature record: CXX_FEATURE:1cxx_right_angle_brackets
    Feature record: CXX_FEATURE:1cxx_rvalue_references
    Feature record: CXX_FEATURE:1cxx_sizeof_member
    Feature record: CXX_FEATURE:1cxx_static_assert
    Feature record: CXX_FEATURE:1cxx_strong_enums
    Feature record: CXX_FEATURE:1cxx_template_template_parameters
    Feature record: CXX_FEATURE:1cxx_thread_local
    Feature record: CXX_FEATURE:1cxx_trailing_return_types
    Feature record: CXX_FEATURE:1cxx_unicode_literals
    Feature record: CXX_FEATURE:1cxx_uniform_initialization
    Feature record: CXX_FEATURE:1cxx_unrestricted_unions
    Feature record: CXX_FEATURE:1cxx_user_literals
    Feature record: CXX_FEATURE:0cxx_variable_templates
    Feature record: CXX_FEATURE:1cxx_variadic_macros
    Feature record: CXX_FEATURE:1cxx_variadic_templates


Detecting CXX [-std=c++98] compiler features compiled with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_89a8a/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_89a8a.dir\build.make CMakeFiles/cmTC_89a8a.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building CXX object CMakeFiles/cmTC_89a8a.dir/feature_tests.cxx.obj

C:\Qt\Tools\mingw730_64\bin\g++.exe    -std=c++98 -o CMakeFiles\cmTC_89a8a.dir\feature_tests.cxx.obj -c C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\feature_tests.cxx

Linking CXX executable cmTC_89a8a.exe

"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_89a8a.dir\link.txt --verbose=1

"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_89a8a.dir/objects.a
C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_89a8a.dir/objects.a @CMakeFiles\cmTC_89a8a.dir\objects1.rsp
C:\Qt\Tools\mingw730_64\bin\g++.exe      -Wl,--whole-archive CMakeFiles\cmTC_89a8a.dir/objects.a -Wl,--no-whole-archive  -o cmTC_89a8a.exe -Wl,--out-implib,libcmTC_89a8a.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_89a8a.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'



    Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
    Feature record: CXX_FEATURE:0cxx_alias_templates
    Feature record: CXX_FEATURE:0cxx_alignas
    Feature record: CXX_FEATURE:0cxx_alignof
    Feature record: CXX_FEATURE:0cxx_attributes
    Feature record: CXX_FEATURE:0cxx_attribute_deprecated
    Feature record: CXX_FEATURE:0cxx_auto_type
    Feature record: CXX_FEATURE:0cxx_binary_literals
    Feature record: CXX_FEATURE:0cxx_constexpr
    Feature record: CXX_FEATURE:0cxx_contextual_conversions
    Feature record: CXX_FEATURE:0cxx_decltype
    Feature record: CXX_FEATURE:0cxx_decltype_auto
    Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types
    Feature record: CXX_FEATURE:0cxx_default_function_template_args
    Feature record: CXX_FEATURE:0cxx_defaulted_functions
    Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers
    Feature record: CXX_FEATURE:0cxx_delegating_constructors
    Feature record: CXX_FEATURE:0cxx_deleted_functions
    Feature record: CXX_FEATURE:0cxx_digit_separators
    Feature record: CXX_FEATURE:0cxx_enum_forward_declarations
    Feature record: CXX_FEATURE:0cxx_explicit_conversions
    Feature record: CXX_FEATURE:0cxx_extended_friend_declarations
    Feature record: CXX_FEATURE:0cxx_extern_templates
    Feature record: CXX_FEATURE:0cxx_final
    Feature record: CXX_FEATURE:0cxx_func_identifier
    Feature record: CXX_FEATURE:0cxx_generalized_initializers
    Feature record: CXX_FEATURE:0cxx_generic_lambdas
    Feature record: CXX_FEATURE:0cxx_inheriting_constructors
    Feature record: CXX_FEATURE:0cxx_inline_namespaces
    Feature record: CXX_FEATURE:0cxx_lambdas
    Feature record: CXX_FEATURE:0cxx_lambda_init_captures
    Feature record: CXX_FEATURE:0cxx_local_type_template_args
    Feature record: CXX_FEATURE:0cxx_long_long_type
    Feature record: CXX_FEATURE:0cxx_noexcept
    Feature record: CXX_FEATURE:0cxx_nonstatic_member_init
    Feature record: CXX_FEATURE:0cxx_nullptr
    Feature record: CXX_FEATURE:0cxx_override
    Feature record: CXX_FEATURE:0cxx_range_for
    Feature record: CXX_FEATURE:0cxx_raw_string_literals
    Feature record: CXX_FEATURE:0cxx_reference_qualified_functions
    Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
    Feature record: CXX_FEATURE:0cxx_return_type_deduction
    Feature record: CXX_FEATURE:0cxx_right_angle_brackets
    Feature record: CXX_FEATURE:0cxx_rvalue_references
    Feature record: CXX_FEATURE:0cxx_sizeof_member
    Feature record: CXX_FEATURE:0cxx_static_assert
    Feature record: CXX_FEATURE:0cxx_strong_enums
    Feature record: CXX_FEATURE:1cxx_template_template_parameters
    Feature record: CXX_FEATURE:0cxx_thread_local
    Feature record: CXX_FEATURE:0cxx_trailing_return_types
    Feature record: CXX_FEATURE:0cxx_unicode_literals
    Feature record: CXX_FEATURE:0cxx_uniform_initialization
    Feature record: CXX_FEATURE:0cxx_unrestricted_unions
    Feature record: CXX_FEATURE:0cxx_user_literals
    Feature record: CXX_FEATURE:0cxx_variable_templates
    Feature record: CXX_FEATURE:0cxx_variadic_macros
    Feature record: CXX_FEATURE:0cxx_variadic_templates
Determining if the include file pthread.h exists passed with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_ea610/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_ea610.dir\build.make CMakeFiles/cmTC_ea610.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building C object CMakeFiles/cmTC_ea610.dir/CheckIncludeFile.c.obj

C:\Qt\Tools\mingw730_64\bin\gcc.exe    -o CMakeFiles\cmTC_ea610.dir\CheckIncludeFile.c.obj   -c C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\CMakeTmp\CheckIncludeFile.c

Linking C executable cmTC_ea610.exe

"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_ea610.dir\link.txt --verbose=1

"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_ea610.dir/objects.a
C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_ea610.dir/objects.a @CMakeFiles\cmTC_ea610.dir\objects1.rsp
C:\Qt\Tools\mingw730_64\bin\gcc.exe      -Wl,--whole-archive CMakeFiles\cmTC_ea610.dir/objects.a -Wl,--no-whole-archive  -o cmTC_ea610.exe -Wl,--out-implib,libcmTC_ea610.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_ea610.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'



Determining if the pthread_create exist passed with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_6a639/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_6a639.dir\build.make CMakeFiles/cmTC_6a639.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building C object CMakeFiles/cmTC_6a639.dir/CheckSymbolExists.c.obj

C:\Qt\Tools\mingw730_64\bin\gcc.exe    -o CMakeFiles\cmTC_6a639.dir\CheckSymbolExists.c.obj   -c C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\CMakeTmp\CheckSymbolExists.c

Linking C executable cmTC_6a639.exe

"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_6a639.dir\link.txt --verbose=1

"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_6a639.dir/objects.a
C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_6a639.dir/objects.a @CMakeFiles\cmTC_6a639.dir\objects1.rsp
C:\Qt\Tools\mingw730_64\bin\gcc.exe      -Wl,--whole-archive CMakeFiles\cmTC_6a639.dir/objects.a -Wl,--no-whole-archive  -o cmTC_6a639.exe -Wl,--out-implib,libcmTC_6a639.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_6a639.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'


File C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <pthread.h>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef pthread_create
  return ((int*)(&pthread_create))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Performing C++ SOURCE FILE Test COMPILER_SUPPORTS_CXX11 succeeded with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_34cca/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_34cca.dir\build.make CMakeFiles/cmTC_34cca.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building CXX object CMakeFiles/cmTC_34cca.dir/src.cxx.obj

C:\Qt\Tools\mingw730_64\bin\g++.exe    -DCOMPILER_SUPPORTS_CXX11   -std=gnu++11 -o CMakeFiles\cmTC_34cca.dir\src.cxx.obj -c C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\CMakeTmp\src.cxx

Linking CXX executable cmTC_34cca.exe

"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_34cca.dir\link.txt --verbose=1

"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_34cca.dir/objects.a
C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_34cca.dir/objects.a @CMakeFiles\cmTC_34cca.dir\objects1.rsp
C:\Qt\Tools\mingw730_64\bin\g++.exe  -DCOMPILER_SUPPORTS_CXX11    -Wl,--whole-archive CMakeFiles\cmTC_34cca.dir/objects.a -Wl,--no-whole-archive  -o cmTC_34cca.exe -Wl,--out-implib,libcmTC_34cca.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_34cca.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'


Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test COMPILER_SUPPORTS_C11 succeeded with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_4b592/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_4b592.dir\build.make CMakeFiles/cmTC_4b592.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building C object CMakeFiles/cmTC_4b592.dir/src.c.obj

C:\Qt\Tools\mingw730_64\bin\gcc.exe   -DCOMPILER_SUPPORTS_C11   -std=gnu11 -o CMakeFiles\cmTC_4b592.dir\src.c.obj   -c C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\CMakeTmp\src.c

Linking C executable cmTC_4b592.exe

"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_4b592.dir\link.txt --verbose=1

"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_4b592.dir/objects.a
C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_4b592.dir/objects.a @CMakeFiles\cmTC_4b592.dir\objects1.rsp
C:\Qt\Tools\mingw730_64\bin\gcc.exe  -DCOMPILER_SUPPORTS_C11    -Wl,--whole-archive CMakeFiles\cmTC_4b592.dir/objects.a -Wl,--no-whole-archive  -o cmTC_4b592.exe -Wl,--out-implib,libcmTC_4b592.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_4b592.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'


Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test CXX_HAS_TAUT_WARNING succeeded with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_17a67/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_17a67.dir\build.make CMakeFiles/cmTC_17a67.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building CXX object CMakeFiles/cmTC_17a67.dir/src.cxx.obj

C:\Qt\Tools\mingw730_64\bin\g++.exe    -std=gnu++11 -DCXX_HAS_TAUT_WARNING   -Wno-tautological-constant-compare -o CMakeFiles\cmTC_17a67.dir\src.cxx.obj -c C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\CMakeTmp\src.cxx

Linking CXX executable cmTC_17a67.exe

"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_17a67.dir\link.txt --verbose=1

"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_17a67.dir/objects.a
C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_17a67.dir/objects.a @CMakeFiles\cmTC_17a67.dir\objects1.rsp
C:\Qt\Tools\mingw730_64\bin\g++.exe  -std=gnu++11 -DCXX_HAS_TAUT_WARNING    -Wl,--whole-archive CMakeFiles\cmTC_17a67.dir/objects.a -Wl,--no-whole-archive  -o cmTC_17a67.exe -Wl,--out-implib,libcmTC_17a67.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_17a67.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'


Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test CC_HAS_TAUT_WARNING succeeded with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_1f989/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_1f989.dir\build.make CMakeFiles/cmTC_1f989.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building C object CMakeFiles/cmTC_1f989.dir/src.c.obj

C:\Qt\Tools\mingw730_64\bin\gcc.exe   -std=gnu11 -DCC_HAS_TAUT_WARNING   -Wno-tautological-constant-compare -o CMakeFiles\cmTC_1f989.dir\src.c.obj   -c C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\CMakeTmp\src.c

Linking C executable cmTC_1f989.exe

"C:\Program Files\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_1f989.dir\link.txt --verbose=1

"C:\Program Files\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_1f989.dir/objects.a
C:\Qt\Tools\mingw730_64\bin\ar.exe cr CMakeFiles\cmTC_1f989.dir/objects.a @CMakeFiles\cmTC_1f989.dir\objects1.rsp
C:\Qt\Tools\mingw730_64\bin\gcc.exe  -std=gnu11 -DCC_HAS_TAUT_WARNING    -Wl,--whole-archive CMakeFiles\cmTC_1f989.dir/objects.a -Wl,--no-whole-archive  -o cmTC_1f989.exe -Wl,--out-implib,libcmTC_1f989.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_1f989.dir\linklibs.rsp
mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'


Source file was:
int main(void) { return 0; }

CMakeError.log

Determining if the strlcpy exist failed with the following output:
Change Dir: C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp

Run Build Command(s):C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe cmTC_486b4/fast 
C:/Qt/Tools/mingw730_64/bin/mingw32-make.exe -f CMakeFiles\cmTC_486b4.dir\build.make CMakeFiles/cmTC_486b4.dir/build

mingw32-make.exe[1]: Entering directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

Building CXX object CMakeFiles/cmTC_486b4.dir/CheckSymbolExists.cxx.obj

C:\Qt\Tools\mingw730_64\bin\g++.exe    -std=gnu++11 -Wno-tautological-constant-compare    -o CMakeFiles\cmTC_486b4.dir\CheckSymbolExists.cxx.obj -c C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\CMakeTmp\CheckSymbolExists.cxx

C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\CMakeTmp\CheckSymbolExists.cxx: In function 'int main(int, char**)':
C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\CMakeTmp\CheckSymbolExists.cxx:8:19: error: 'strlcpy' was not declared in this scope
   return ((int*)(&strlcpy))[argc];
                   ^~~~~~~
C:\Users\Hasan\Documents\GitHub\LibZMQ-MingW\CMakeFiles\CMakeTmp\CheckSymbolExists.cxx:8:19: note: suggested alternative: 'strncpy'
   return ((int*)(&strlcpy))[argc];
                   ^~~~~~~
                   strncpy
At global scope:
cc1plus.exe: warning: unrecognized command line option '-Wno-tautological-constant-compare'
mingw32-make.exe[1]: *** [CMakeFiles\cmTC_486b4.dir\build.make:65: CMakeFiles/cmTC_486b4.dir/CheckSymbolExists.cxx.obj] Error 1

mingw32-make.exe[1]: Leaving directory 'C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp'

mingw32-make.exe: *** [Makefile:120: cmTC_486b4/fast] Error 2


File C:/Users/Hasan/Documents/GitHub/LibZMQ-MingW/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <string.h>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef strlcpy
  return ((int*)(&strlcpy))[argc];
#else
  (void)argc;
  return 0;
#endif
}

What’s the expected result?

MingW make files to be built succesfully

About this issue

  • Original URL
  • State: open
  • Created 4 years ago
  • Reactions: 1
  • Comments: 17 (1 by maintainers)

Most upvoted comments

Hi, I apologise for not responding earlier, I just ended up transferring to czmq.

I’ll try testing replacing strlcpy with strncpy and then looking at trying to build this again incase I need to use this library in a future project.

Also @sigiesec by PkgConfig, is this a reference to this software, a file that should be in this repository but is missing or a file that should come with Cmake.

I apologise for my confusion since I am by no means well versed in C-make.

FWIW, I don’t think the failure is because strlcpy is not found. This is just an information. The check is done to set the appropriate defines. The error is that PkgConfig cannot be found:

CMake Error at C:/Program Files/CMake/share/cmake-3.14/Modules/FindPackageHandleStandardArgs.cmake:137 (message):
  Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)

Did anyone find a fix for this issue, i have the same exact issue