Skip to content

Instantly share code, notes, and snippets.

@jeroen
Last active March 7, 2019 11:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeroen/f25718905bef640ce2c7410e82750377 to your computer and use it in GitHub Desktop.
Save jeroen/f25718905bef640ce2c7410e82750377 to your computer and use it in GitHub Desktop.
Build poppler on Xenial x64
Determining if the pthread_create exist failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_aa88c/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_aa88c.dir/build.make CMakeFiles/cmTC_aa88c.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_aa88c.dir/CheckSymbolExists.c.o
/usr/bin/cc -std=c99 -D_DEFAULT_SOURCE -o CMakeFiles/cmTC_aa88c.dir/CheckSymbolExists.c.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_aa88c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_aa88c.dir/link.txt --verbose=1
/usr/bin/cc -std=c99 -D_DEFAULT_SOURCE -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_aa88c.dir/CheckSymbolExists.c.o -o cmTC_aa88c
/usr/bin/ld: CMakeFiles/cmTC_aa88c.dir/CheckSymbolExists.c.o: relocation R_X86_64_32S against `pthread_create' can not be used when making a shared object; recompile with -fPIC
CMakeFiles/cmTC_aa88c.dir/CheckSymbolExists.c.o: error adding symbols: Bad value
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_aa88c.dir/build.make:97: recipe for target 'cmTC_aa88c' failed
make[3]: *** [cmTC_aa88c] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_aa88c/fast' failed
make[2]: *** [cmTC_aa88c/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
File /root/poppler-0.74.0/obj-x86_64-linux-gnu/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
}
Determining if compiler accepts -pthread failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_4435c/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_4435c.dir/build.make CMakeFiles/cmTC_4435c.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_4435c.dir/CheckForPthreads.c.o
/usr/bin/cc -std=c99 -D_DEFAULT_SOURCE -o CMakeFiles/cmTC_4435c.dir/CheckForPthreads.c.o -c /usr/share/cmake-3.10/Modules/CheckForPthreads.c
Linking C executable cmTC_4435c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4435c.dir/link.txt --verbose=1
/usr/bin/cc -std=c99 -D_DEFAULT_SOURCE -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_4435c.dir/CheckForPthreads.c.o -o cmTC_4435c -pthread
/usr/bin/ld: CMakeFiles/cmTC_4435c.dir/CheckForPthreads.c.o: relocation R_X86_64_32 against `start_routine' can not be used when making a shared object; recompile with -fPIC
CMakeFiles/cmTC_4435c.dir/CheckForPthreads.c.o: error adding symbols: Bad value
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_4435c.dir/build.make:97: recipe for target 'cmTC_4435c' failed
make[3]: *** [cmTC_4435c] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_4435c/fast' failed
make[2]: *** [cmTC_4435c/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_d2688/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_d2688.dir/build.make CMakeFiles/cmTC_d2688.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d2688.dir/CheckFunctionExists.c.o
/usr/bin/cc -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_d2688.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_d2688
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d2688.dir/link.txt --verbose=1
/usr/bin/cc -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=pthread_create -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_d2688.dir/CheckFunctionExists.c.o -o cmTC_d2688 -lpthreads
/usr/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_d2688.dir/build.make:97: recipe for target 'cmTC_d2688' failed
make[3]: *** [cmTC_d2688] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_d2688/fast' failed
make[2]: *** [cmTC_d2688/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if the function pthread_create exists in the pthread failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_e3643/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_e3643.dir/build.make CMakeFiles/cmTC_e3643.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e3643.dir/CheckFunctionExists.c.o
/usr/bin/cc -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_e3643.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_e3643
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e3643.dir/link.txt --verbose=1
/usr/bin/cc -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=pthread_create -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_e3643.dir/CheckFunctionExists.c.o -o cmTC_e3643 -lpthread
/usr/bin/ld: CMakeFiles/cmTC_e3643.dir/CheckFunctionExists.c.o: relocation R_X86_64_PC32 against undefined symbol `pthread_create@@GLIBC_2.2.5' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_e3643.dir/build.make:97: recipe for target 'cmTC_e3643' failed
make[3]: *** [cmTC_e3643] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_e3643/fast' failed
make[2]: *** [cmTC_e3643/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Performing C++ SOURCE FILE Test ICONV_SECOND_ARGUMENT_IS_CONST failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_6825f/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_6825f.dir/build.make CMakeFiles/cmTC_6825f.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_6825f.dir/src.cxx.o
/usr/bin/c++ -fno-exceptions -fno-check-new -fno-common -D_DEFAULT_SOURCE -DICONV_SECOND_ARGUMENT_IS_CONST -o CMakeFiles/cmTC_6825f.dir/src.cxx.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/src.cxx
/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/src.cxx: In function 'int main()':
/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/src.cxx:9:40: error: invalid conversion from 'const char**' to 'char**' [-fpermissive]
iconv(conv, &in, &ilen, &out, &olen);
^
In file included from /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/src.cxx:2:0:
/usr/include/iconv.h:42:15: note: initializing argument 2 of 'size_t iconv(iconv_t, char**, size_t*, char**, size_t*)'
extern size_t iconv (iconv_t __cd, char **__restrict __inbuf,
^
CMakeFiles/cmTC_6825f.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_6825f.dir/src.cxx.o' failed
make[3]: *** [CMakeFiles/cmTC_6825f.dir/src.cxx.o] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_6825f/fast' failed
make[2]: *** [cmTC_6825f/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Source file was:
#include <iconv.h>
int main(){
iconv_t conv = 0;
const char* in = 0;
size_t ilen = 0;
char* out = 0;
size_t olen = 0;
iconv(conv, &in, &ilen, &out, &olen);
return 0;
}
Determining if the include file codecvt exists failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_578c0/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_578c0.dir/build.make CMakeFiles/cmTC_578c0.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_578c0.dir/CheckIncludeFile.cxx.o
/usr/bin/c++ -Wall -Wextra -Wpedantic -Wno-unused-parameter -Wcast-align -Wformat-security -Wframe-larger-than=65536 -Wlogical-op -Wmissing-format-attribute -Wnon-virtual-dtor -Woverloaded-virtual -Wmissing-declarations -Wundef -Wzero-as-null-pointer-constant -Wsuggest-override -fno-exceptions -fno-check-new -fno-common -D_DEFAULT_SOURCE -o CMakeFiles/cmTC_578c0.dir/CheckIncludeFile.cxx.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
In file included from /usr/include/c++/5/codecvt:37:0,
from /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx:1:
/usr/include/c++/5/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
#error This file requires compiler and library support \
^
CMakeFiles/cmTC_578c0.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_578c0.dir/CheckIncludeFile.cxx.o' failed
make[3]: *** [CMakeFiles/cmTC_578c0.dir/CheckIncludeFile.cxx.o] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_578c0/fast' failed
make[2]: *** [cmTC_578c0/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if the function fseek64 exists failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_e3bb4/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_e3bb4.dir/build.make CMakeFiles/cmTC_e3bb4.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e3bb4.dir/CheckFunctionExists.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=fseek64 -o CMakeFiles/cmTC_e3bb4.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_e3bb4
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e3bb4.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=fseek64 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_e3bb4.dir/CheckFunctionExists.c.o -o cmTC_e3bb4
CMakeFiles/cmTC_e3bb4.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `fseek64'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_e3bb4.dir/build.make:97: recipe for target 'cmTC_e3bb4' failed
make[3]: *** [cmTC_e3bb4] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_e3bb4/fast' failed
make[2]: *** [cmTC_e3bb4/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if the fseeko exist failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_153fb/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_153fb.dir/build.make CMakeFiles/cmTC_153fb.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_153fb.dir/CheckSymbolExists.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -o CMakeFiles/cmTC_153fb.dir/CheckSymbolExists.c.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_153fb
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_153fb.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_153fb.dir/CheckSymbolExists.c.o -o cmTC_153fb
/usr/bin/ld: CMakeFiles/cmTC_153fb.dir/CheckSymbolExists.c.o: relocation R_X86_64_32S against `fseeko' can not be used when making a shared object; recompile with -fPIC
CMakeFiles/cmTC_153fb.dir/CheckSymbolExists.c.o: error adding symbols: Bad value
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_153fb.dir/build.make:97: recipe for target 'cmTC_153fb' failed
make[3]: *** [cmTC_153fb] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_153fb/fast' failed
make[2]: *** [cmTC_153fb/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
File /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <stdio.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef fseeko
return ((int*)(&fseeko))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the function ftell64 exists failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_5b272/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_5b272.dir/build.make CMakeFiles/cmTC_5b272.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_5b272.dir/CheckFunctionExists.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=ftell64 -o CMakeFiles/cmTC_5b272.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_5b272
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5b272.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=ftell64 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_5b272.dir/CheckFunctionExists.c.o -o cmTC_5b272
CMakeFiles/cmTC_5b272.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `ftell64'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_5b272.dir/build.make:97: recipe for target 'cmTC_5b272' failed
make[3]: *** [cmTC_5b272] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_5b272/fast' failed
make[2]: *** [cmTC_5b272/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if the function pread64 exists failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_05528/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_05528.dir/build.make CMakeFiles/cmTC_05528.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_05528.dir/CheckFunctionExists.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=pread64 -o CMakeFiles/cmTC_05528.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_05528
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_05528.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=pread64 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_05528.dir/CheckFunctionExists.c.o -o cmTC_05528
/usr/bin/ld: CMakeFiles/cmTC_05528.dir/CheckFunctionExists.c.o: relocation R_X86_64_PC32 against undefined symbol `pread64@@GLIBC_2.2.5' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_05528.dir/build.make:97: recipe for target 'cmTC_05528' failed
make[3]: *** [cmTC_05528] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_05528/fast' failed
make[2]: *** [cmTC_05528/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if the function lseek64 exists failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_9d18d/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_9d18d.dir/build.make CMakeFiles/cmTC_9d18d.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_9d18d.dir/CheckFunctionExists.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=lseek64 -o CMakeFiles/cmTC_9d18d.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_9d18d
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9d18d.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=lseek64 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_9d18d.dir/CheckFunctionExists.c.o -o cmTC_9d18d
/usr/bin/ld: CMakeFiles/cmTC_9d18d.dir/CheckFunctionExists.c.o: relocation R_X86_64_PC32 against undefined symbol `lseek64@@GLIBC_2.2.5' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_9d18d.dir/build.make:97: recipe for target 'cmTC_9d18d' failed
make[3]: *** [cmTC_9d18d] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_9d18d/fast' failed
make[2]: *** [cmTC_9d18d/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if the function gmtime_r exists failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_a5ee2/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_a5ee2.dir/build.make CMakeFiles/cmTC_a5ee2.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a5ee2.dir/CheckFunctionExists.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=gmtime_r -o CMakeFiles/cmTC_a5ee2.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_a5ee2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a5ee2.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=gmtime_r -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_a5ee2.dir/CheckFunctionExists.c.o -o cmTC_a5ee2
/usr/bin/ld: CMakeFiles/cmTC_a5ee2.dir/CheckFunctionExists.c.o: relocation R_X86_64_PC32 against undefined symbol `gmtime_r@@GLIBC_2.2.5' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_a5ee2.dir/build.make:97: recipe for target 'cmTC_a5ee2' failed
make[3]: *** [cmTC_a5ee2] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_a5ee2/fast' failed
make[2]: *** [cmTC_a5ee2/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if the function timegm exists failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_32c1f/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_32c1f.dir/build.make CMakeFiles/cmTC_32c1f.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_32c1f.dir/CheckFunctionExists.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=timegm -o CMakeFiles/cmTC_32c1f.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_32c1f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_32c1f.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=timegm -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_32c1f.dir/CheckFunctionExists.c.o -o cmTC_32c1f
/usr/bin/ld: CMakeFiles/cmTC_32c1f.dir/CheckFunctionExists.c.o: relocation R_X86_64_PC32 against undefined symbol `timegm@@GLIBC_2.2.5' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_32c1f.dir/build.make:97: recipe for target 'cmTC_32c1f' failed
make[3]: *** [cmTC_32c1f] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_32c1f/fast' failed
make[2]: *** [cmTC_32c1f/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if the function gettimeofday exists failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_6d438/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_6d438.dir/build.make CMakeFiles/cmTC_6d438.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_6d438.dir/CheckFunctionExists.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=gettimeofday -o CMakeFiles/cmTC_6d438.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_6d438
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6d438.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=gettimeofday -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_6d438.dir/CheckFunctionExists.c.o -o cmTC_6d438
/usr/bin/ld: CMakeFiles/cmTC_6d438.dir/CheckFunctionExists.c.o: relocation R_X86_64_PC32 against undefined symbol `gettimeofday@@GLIBC_2.2.5' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_6d438.dir/build.make:97: recipe for target 'cmTC_6d438' failed
make[3]: *** [cmTC_6d438] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_6d438/fast' failed
make[2]: *** [cmTC_6d438/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if the function localtime_r exists failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_4c177/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_4c177.dir/build.make CMakeFiles/cmTC_4c177.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_4c177.dir/CheckFunctionExists.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=localtime_r -o CMakeFiles/cmTC_4c177.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_4c177
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4c177.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=localtime_r -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_4c177.dir/CheckFunctionExists.c.o -o cmTC_4c177
/usr/bin/ld: CMakeFiles/cmTC_4c177.dir/CheckFunctionExists.c.o: relocation R_X86_64_PC32 against undefined symbol `localtime_r@@GLIBC_2.2.5' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_4c177.dir/build.make:97: recipe for target 'cmTC_4c177' failed
make[3]: *** [cmTC_4c177] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_4c177/fast' failed
make[2]: *** [cmTC_4c177/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if the function popen exists failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_41f98/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_41f98.dir/build.make CMakeFiles/cmTC_41f98.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_41f98.dir/CheckFunctionExists.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=popen -o CMakeFiles/cmTC_41f98.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_41f98
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_41f98.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=popen -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_41f98.dir/CheckFunctionExists.c.o -o cmTC_41f98
/usr/bin/ld: CMakeFiles/cmTC_41f98.dir/CheckFunctionExists.c.o: relocation R_X86_64_PC32 against undefined symbol `popen@@GLIBC_2.2.5' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_41f98.dir/build.make:97: recipe for target 'cmTC_41f98' failed
make[3]: *** [cmTC_41f98] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_41f98/fast' failed
make[2]: *** [cmTC_41f98/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if the function mkstemp exists failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_b8fcf/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_b8fcf.dir/build.make CMakeFiles/cmTC_b8fcf.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b8fcf.dir/CheckFunctionExists.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=mkstemp -o CMakeFiles/cmTC_b8fcf.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_b8fcf
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b8fcf.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=mkstemp -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_b8fcf.dir/CheckFunctionExists.c.o -o cmTC_b8fcf
/usr/bin/ld: CMakeFiles/cmTC_b8fcf.dir/CheckFunctionExists.c.o: relocation R_X86_64_PC32 against undefined symbol `mkstemp@@GLIBC_2.2.5' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_b8fcf.dir/build.make:97: recipe for target 'cmTC_b8fcf' failed
make[3]: *** [cmTC_b8fcf] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_b8fcf/fast' failed
make[2]: *** [cmTC_b8fcf/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if the function strcpy_s exists failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_78ab6/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_78ab6.dir/build.make CMakeFiles/cmTC_78ab6.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_78ab6.dir/CheckFunctionExists.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=strcpy_s -o CMakeFiles/cmTC_78ab6.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_78ab6
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_78ab6.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=strcpy_s -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_78ab6.dir/CheckFunctionExists.c.o -o cmTC_78ab6
CMakeFiles/cmTC_78ab6.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `strcpy_s'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_78ab6.dir/build.make:97: recipe for target 'cmTC_78ab6' failed
make[3]: *** [cmTC_78ab6] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_78ab6/fast' failed
make[2]: *** [cmTC_78ab6/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if the function strcat_s exists failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_3411e/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_3411e.dir/build.make CMakeFiles/cmTC_3411e.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_3411e.dir/CheckFunctionExists.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=strcat_s -o CMakeFiles/cmTC_3411e.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_3411e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3411e.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=strcat_s -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_3411e.dir/CheckFunctionExists.c.o -o cmTC_3411e
CMakeFiles/cmTC_3411e.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `strcat_s'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_3411e.dir/build.make:97: recipe for target 'cmTC_3411e' failed
make[3]: *** [cmTC_3411e] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_3411e/fast' failed
make[2]: *** [cmTC_3411e/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if the function strtok_r exists failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_baa9b/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_baa9b.dir/build.make CMakeFiles/cmTC_baa9b.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_baa9b.dir/CheckFunctionExists.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=strtok_r -o CMakeFiles/cmTC_baa9b.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_baa9b
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_baa9b.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=strtok_r -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_baa9b.dir/CheckFunctionExists.c.o -o cmTC_baa9b
/usr/bin/ld: CMakeFiles/cmTC_baa9b.dir/CheckFunctionExists.c.o: relocation R_X86_64_PC32 against undefined symbol `strtok_r@@GLIBC_2.2.5' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_baa9b.dir/build.make:97: recipe for target 'cmTC_baa9b' failed
make[3]: *** [cmTC_baa9b] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_baa9b/fast' failed
make[2]: *** [cmTC_baa9b/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Performing C SOURCE FILE Test HAVE_NDIR_H failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_2683f/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_2683f.dir/build.make CMakeFiles/cmTC_2683f.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2683f.dir/src.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DHAVE_NDIR_H -o CMakeFiles/cmTC_2683f.dir/src.c.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/src.c
/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/src.c:1:18: fatal error: ndir.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_2683f.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_2683f.dir/src.c.o' failed
make[3]: *** [CMakeFiles/cmTC_2683f.dir/src.c.o] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_2683f/fast' failed
make[2]: *** [cmTC_2683f/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Source file was:
#include <ndir.h>
int main(int argc, char *argv[])
{
DIR* d = 0;
return 0;
}
Performing C SOURCE FILE Test HAVE_SYS_NDIR_H failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_a81ff/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_a81ff.dir/build.make CMakeFiles/cmTC_a81ff.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a81ff.dir/src.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DHAVE_SYS_NDIR_H -o CMakeFiles/cmTC_a81ff.dir/src.c.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/src.c
/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/src.c:1:22: fatal error: sys/ndir.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_a81ff.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_a81ff.dir/src.c.o' failed
make[3]: *** [CMakeFiles/cmTC_a81ff.dir/src.c.o] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_a81ff/fast' failed
make[2]: *** [cmTC_a81ff/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Source file was:
#include <sys/ndir.h>
int main(int argc, char *argv[])
{
DIR* d = 0;
return 0;
}
Determining if the function nanosleep exists failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_8f4be/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_8f4be.dir/build.make CMakeFiles/cmTC_8f4be.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8f4be.dir/CheckFunctionExists.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=nanosleep -o CMakeFiles/cmTC_8f4be.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_8f4be
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8f4be.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=nanosleep -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_8f4be.dir/CheckFunctionExists.c.o -o cmTC_8f4be
/usr/bin/ld: CMakeFiles/cmTC_8f4be.dir/CheckFunctionExists.c.o: relocation R_X86_64_PC32 against undefined symbol `nanosleep@@GLIBC_2.2.5' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_8f4be.dir/build.make:97: recipe for target 'cmTC_8f4be' failed
make[3]: *** [cmTC_8f4be] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_8f4be/fast' failed
make[2]: *** [cmTC_8f4be/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if the function nanosleep exists in the rt failed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_94f7e/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_94f7e.dir/build.make CMakeFiles/cmTC_94f7e.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_94f7e.dir/CheckFunctionExists.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=nanosleep -o CMakeFiles/cmTC_94f7e.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_94f7e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_94f7e.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DCHECK_FUNCTION_EXISTS=nanosleep -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_94f7e.dir/CheckFunctionExists.c.o -o cmTC_94f7e -lrt
/usr/bin/ld: CMakeFiles/cmTC_94f7e.dir/CheckFunctionExists.c.o: relocation R_X86_64_PC32 against undefined symbol `nanosleep@@GLIBC_2.2.5' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_94f7e.dir/build.make:97: recipe for target 'cmTC_94f7e' failed
make[3]: *** [cmTC_94f7e] Error 1
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_94f7e/fast' failed
make[2]: *** [cmTC_94f7e/fast] Error 2
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
The system is: Linux - 4.9.125-linuxkit - x86_64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /usr/bin/cc
Build flags: -g;-O2;-fPIE;-fstack-protector-strong;-Wformat;-Werror=format-security;-Wdate-time;-D_FORTIFY_SOURCE=2
Id flags:
The output was:
0
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
The C compiler identification is GNU, found in "/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/3.10.2/CompilerIdC/a.out"
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /usr/bin/c++
Build flags: -g;-O2;-fPIE;-fstack-protector-strong;-Wformat;-Werror=format-security;-Wdate-time;-D_FORTIFY_SOURCE=2
Id flags:
The output was:
0
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
The CXX compiler identification is GNU, found in "/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/3.10.2/CompilerIdCXX/a.out"
Determining if the C compiler works passed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_3387e/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_3387e.dir/build.make CMakeFiles/cmTC_3387e.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_3387e.dir/testCCompiler.c.o
/usr/bin/cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -o CMakeFiles/cmTC_3387e.dir/testCCompiler.c.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_3387e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3387e.dir/link.txt --verbose=1
/usr/bin/cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_3387e.dir/testCCompiler.c.o -o cmTC_3387e
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Detecting C compiler ABI info compiled with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_8529a/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_8529a.dir/build.make CMakeFiles/cmTC_8529a.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8529a.dir/CMakeCCompilerABI.c.o
/usr/bin/cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -o CMakeFiles/cmTC_8529a.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c
Linking C executable cmTC_8529a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8529a.dir/link.txt --verbose=1
/usr/bin/cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -v -rdynamic CMakeFiles/cmTC_8529a.dir/CMakeCCompilerABI.c.o -o cmTC_8529a
Using built-in specs.
COLLECT_GCC=/usr/bin/cc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.11' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.11)
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-g' '-O2' '-fstack-protector-strong' '-Wformat=1' '-Werror=format-security' '-Wdate-time' '-D' '_FORTIFY_SOURCE=2' '-fPIE' '-pie' '-v' '-rdynamic' '-o' 'cmTC_8529a' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccq9izoo.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z relro -o cmTC_8529a /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. -Bsymbolic-functions -z relro -z now --as-needed CMakeFiles/cmTC_8529a.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/5/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_8529a/fast"]
ignore line: [make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp']
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_8529a.dir/build.make CMakeFiles/cmTC_8529a.dir/build]
ignore line: [make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp']
ignore line: [Building C object CMakeFiles/cmTC_8529a.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -o CMakeFiles/cmTC_8529a.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c]
ignore line: [Linking C executable cmTC_8529a]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8529a.dir/link.txt --verbose=1]
ignore line: [/usr/bin/cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -v -rdynamic CMakeFiles/cmTC_8529a.dir/CMakeCCompilerABI.c.o -o cmTC_8529a ]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/cc]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.11' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
ignore line: [Thread model: posix]
ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.11) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-g' '-O2' '-fstack-protector-strong' '-Wformat=1' '-Werror=format-security' '-Wdate-time' '-D' '_FORTIFY_SOURCE=2' '-fPIE' '-pie' '-v' '-rdynamic' '-o' 'cmTC_8529a' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccq9izoo.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z relro -o cmTC_8529a /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. -Bsymbolic-functions -z relro -z now --as-needed CMakeFiles/cmTC_8529a.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/5/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o]
arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccq9izoo.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [--sysroot=/] ==> ignore
arg [--build-id] ==> ignore
arg [--eh-frame-hdr] ==> ignore
arg [-m] ==> ignore
arg [elf_x86_64] ==> ignore
arg [--hash-style=gnu] ==> ignore
arg [--as-needed] ==> ignore
arg [-export-dynamic] ==> ignore
arg [-dynamic-linker] ==> ignore
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-pie] ==> ignore
arg [-zrelro] ==> ignore
arg [-o] ==> ignore
arg [cmTC_8529a] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbeginS.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-linux-gnu/5] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib]
arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
arg [-L/lib/../lib] ==> dir [/lib/../lib]
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..]
arg [-Bsymbolic-functions] ==> ignore
arg [-zrelro] ==> ignore
arg [-znow] ==> ignore
arg [--as-needed] ==> ignore
arg [CMakeFiles/cmTC_8529a.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [--as-needed] ==> ignore
arg [-lgcc_s] ==> lib [gcc_s]
arg [--no-as-needed] ==> ignore
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [--as-needed] ==> ignore
arg [-lgcc_s] ==> lib [gcc_s]
arg [--no-as-needed] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtendS.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] ==> ignore
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5] ==> [/usr/lib/gcc/x86_64-linux-gnu/5]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> [/usr/lib]
collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
collapse library dir [/lib/../lib] ==> [/lib]
collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> [/usr/lib]
implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
implicit fwks: []
Detecting C [-std=c11] compiler features compiled with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_8aa1f/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_8aa1f.dir/build.make CMakeFiles/cmTC_8aa1f.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8aa1f.dir/feature_tests.c.o
/usr/bin/cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -std=c11 -o CMakeFiles/cmTC_8aa1f.dir/feature_tests.c.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/feature_tests.c
Linking C executable cmTC_8aa1f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8aa1f.dir/link.txt --verbose=1
/usr/bin/cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_8aa1f.dir/feature_tests.c.o -o cmTC_8aa1f
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/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: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_a76fb/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_a76fb.dir/build.make CMakeFiles/cmTC_a76fb.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a76fb.dir/feature_tests.c.o
/usr/bin/cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -std=c99 -o CMakeFiles/cmTC_a76fb.dir/feature_tests.c.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/feature_tests.c
Linking C executable cmTC_a76fb
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a76fb.dir/link.txt --verbose=1
/usr/bin/cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_a76fb.dir/feature_tests.c.o -o cmTC_a76fb
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/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: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_42aa2/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_42aa2.dir/build.make CMakeFiles/cmTC_42aa2.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_42aa2.dir/feature_tests.c.o
/usr/bin/cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -std=c90 -o CMakeFiles/cmTC_42aa2.dir/feature_tests.c.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/feature_tests.c
Linking C executable cmTC_42aa2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_42aa2.dir/link.txt --verbose=1
/usr/bin/cc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_42aa2.dir/feature_tests.c.o -o cmTC_42aa2
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/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: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_f1e4f/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_f1e4f.dir/build.make CMakeFiles/cmTC_f1e4f.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_f1e4f.dir/testCXXCompiler.cxx.o
/usr/bin/c++ -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -o CMakeFiles/cmTC_f1e4f.dir/testCXXCompiler.cxx.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_f1e4f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f1e4f.dir/link.txt --verbose=1
/usr/bin/c++ -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_f1e4f.dir/testCXXCompiler.cxx.o -o cmTC_f1e4f
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_2af0f/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_2af0f.dir/build.make CMakeFiles/cmTC_2af0f.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_2af0f.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/c++ -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -o CMakeFiles/cmTC_2af0f.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTC_2af0f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2af0f.dir/link.txt --verbose=1
/usr/bin/c++ -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -v -rdynamic CMakeFiles/cmTC_2af0f.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_2af0f
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.11' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.11)
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-g' '-O2' '-fstack-protector-strong' '-Wformat=1' '-Werror=format-security' '-Wdate-time' '-D' '_FORTIFY_SOURCE=2' '-fPIE' '-pie' '-v' '-rdynamic' '-o' 'cmTC_2af0f' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccbJ3SpO.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z relro -o cmTC_2af0f /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. -Bsymbolic-functions -z relro -z now --as-needed CMakeFiles/cmTC_2af0f.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_2af0f/fast"]
ignore line: [make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp']
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_2af0f.dir/build.make CMakeFiles/cmTC_2af0f.dir/build]
ignore line: [make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp']
ignore line: [Building CXX object CMakeFiles/cmTC_2af0f.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/c++ -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -o CMakeFiles/cmTC_2af0f.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Linking CXX executable cmTC_2af0f]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2af0f.dir/link.txt --verbose=1]
ignore line: [/usr/bin/c++ -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -v -rdynamic CMakeFiles/cmTC_2af0f.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_2af0f ]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/c++]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.11' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
ignore line: [Thread model: posix]
ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.11) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-g' '-O2' '-fstack-protector-strong' '-Wformat=1' '-Werror=format-security' '-Wdate-time' '-D' '_FORTIFY_SOURCE=2' '-fPIE' '-pie' '-v' '-rdynamic' '-o' 'cmTC_2af0f' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccbJ3SpO.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z relro -o cmTC_2af0f /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. -Bsymbolic-functions -z relro -z now --as-needed CMakeFiles/cmTC_2af0f.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o]
arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccbJ3SpO.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [--sysroot=/] ==> ignore
arg [--build-id] ==> ignore
arg [--eh-frame-hdr] ==> ignore
arg [-m] ==> ignore
arg [elf_x86_64] ==> ignore
arg [--hash-style=gnu] ==> ignore
arg [--as-needed] ==> ignore
arg [-export-dynamic] ==> ignore
arg [-dynamic-linker] ==> ignore
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-pie] ==> ignore
arg [-zrelro] ==> ignore
arg [-o] ==> ignore
arg [cmTC_2af0f] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbeginS.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-linux-gnu/5] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib]
arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
arg [-L/lib/../lib] ==> dir [/lib/../lib]
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..]
arg [-Bsymbolic-functions] ==> ignore
arg [-zrelro] ==> ignore
arg [-znow] ==> ignore
arg [--as-needed] ==> ignore
arg [CMakeFiles/cmTC_2af0f.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [-lgcc_s] ==> lib [gcc_s]
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lgcc_s] ==> lib [gcc_s]
arg [-lgcc] ==> lib [gcc]
arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtendS.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] ==> ignore
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5] ==> [/usr/lib/gcc/x86_64-linux-gnu/5]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> [/usr/lib]
collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
collapse library dir [/lib/../lib] ==> [/lib]
collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> [/usr/lib]
implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
implicit fwks: []
Detecting CXX [-std=c++1z] compiler features compiled with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_25c2f/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_25c2f.dir/build.make CMakeFiles/cmTC_25c2f.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_25c2f.dir/feature_tests.cxx.o
/usr/bin/c++ -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -std=c++1z -o CMakeFiles/cmTC_25c2f.dir/feature_tests.cxx.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_25c2f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_25c2f.dir/link.txt --verbose=1
/usr/bin/c++ -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_25c2f.dir/feature_tests.cxx.o -o cmTC_25c2f
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/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: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_f4f1c/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_f4f1c.dir/build.make CMakeFiles/cmTC_f4f1c.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_f4f1c.dir/feature_tests.cxx.o
/usr/bin/c++ -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -std=c++14 -o CMakeFiles/cmTC_f4f1c.dir/feature_tests.cxx.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_f4f1c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f4f1c.dir/link.txt --verbose=1
/usr/bin/c++ -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_f4f1c.dir/feature_tests.cxx.o -o cmTC_f4f1c
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/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: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_588bf/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_588bf.dir/build.make CMakeFiles/cmTC_588bf.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_588bf.dir/feature_tests.cxx.o
/usr/bin/c++ -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -std=c++11 -o CMakeFiles/cmTC_588bf.dir/feature_tests.cxx.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_588bf
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_588bf.dir/link.txt --verbose=1
/usr/bin/c++ -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_588bf.dir/feature_tests.cxx.o -o cmTC_588bf
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/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: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_62e58/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_62e58.dir/build.make CMakeFiles/cmTC_62e58.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_62e58.dir/feature_tests.cxx.o
/usr/bin/c++ -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -std=c++98 -o CMakeFiles/cmTC_62e58.dir/feature_tests.cxx.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_62e58
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_62e58.dir/link.txt --verbose=1
/usr/bin/c++ -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_62e58.dir/feature_tests.cxx.o -o cmTC_62e58
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/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
Performing C++ SOURCE FILE Test GCC_HAS_AS_NEEDED succeeded with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_ae191/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_ae191.dir/build.make CMakeFiles/cmTC_ae191.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_ae191.dir/src.cxx.o
/usr/bin/c++ -fno-exceptions -fno-check-new -fno-common -D_DEFAULT_SOURCE -DGCC_HAS_AS_NEEDED -o CMakeFiles/cmTC_ae191.dir/src.cxx.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_ae191
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ae191.dir/link.txt --verbose=1
/usr/bin/c++ -fno-exceptions -fno-check-new -fno-common -D_DEFAULT_SOURCE -DGCC_HAS_AS_NEEDED -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_ae191.dir/src.cxx.o -o cmTC_ae191 -Wl,--as-needed
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Source file was:
int main() { return 0; }
Determining if the include file pthread.h exists passed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_b2223/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_b2223.dir/build.make CMakeFiles/cmTC_b2223.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b2223.dir/CheckIncludeFile.c.o
/usr/bin/cc -std=c99 -D_DEFAULT_SOURCE -o CMakeFiles/cmTC_b2223.dir/CheckIncludeFile.c.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_b2223
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b2223.dir/link.txt --verbose=1
/usr/bin/cc -std=c99 -D_DEFAULT_SOURCE -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_b2223.dir/CheckIncludeFile.c.o -o cmTC_b2223
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if files dlfcn.h exist passed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_1ccdd/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_1ccdd.dir/build.make CMakeFiles/cmTC_1ccdd.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_1ccdd.dir/CheckIncludeFiles.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -o CMakeFiles/cmTC_1ccdd.dir/CheckIncludeFiles.c.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_1ccdd
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1ccdd.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_1ccdd.dir/CheckIncludeFiles.c.o -o cmTC_1ccdd
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if files fcntl.h exist passed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_c5eff/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_c5eff.dir/build.make CMakeFiles/cmTC_c5eff.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c5eff.dir/CheckIncludeFiles.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -o CMakeFiles/cmTC_c5eff.dir/CheckIncludeFiles.c.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_c5eff
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c5eff.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_c5eff.dir/CheckIncludeFiles.c.o -o cmTC_c5eff
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if files stdlib.h exist passed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_57911/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_57911.dir/build.make CMakeFiles/cmTC_57911.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_57911.dir/CheckIncludeFiles.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -o CMakeFiles/cmTC_57911.dir/CheckIncludeFiles.c.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_57911
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_57911.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_57911.dir/CheckIncludeFiles.c.o -o cmTC_57911
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if files sys/mman.h exist passed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_ea6d6/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_ea6d6.dir/build.make CMakeFiles/cmTC_ea6d6.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_ea6d6.dir/CheckIncludeFiles.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -o CMakeFiles/cmTC_ea6d6.dir/CheckIncludeFiles.c.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_ea6d6
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ea6d6.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_ea6d6.dir/CheckIncludeFiles.c.o -o cmTC_ea6d6
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if files sys/stat.h exist passed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_e20ab/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_e20ab.dir/build.make CMakeFiles/cmTC_e20ab.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e20ab.dir/CheckIncludeFiles.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -o CMakeFiles/cmTC_e20ab.dir/CheckIncludeFiles.c.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_e20ab
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e20ab.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_e20ab.dir/CheckIncludeFiles.c.o -o cmTC_e20ab
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Determining if files unistd.h exist passed with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_43709/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_43709.dir/build.make CMakeFiles/cmTC_43709.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_43709.dir/CheckIncludeFiles.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -o CMakeFiles/cmTC_43709.dir/CheckIncludeFiles.c.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_43709
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_43709.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_43709.dir/CheckIncludeFiles.c.o -o cmTC_43709
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Performing C SOURCE FILE Test HAVE_DIRENT_H succeeded with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_66c81/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_66c81.dir/build.make CMakeFiles/cmTC_66c81.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_66c81.dir/src.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DHAVE_DIRENT_H -o CMakeFiles/cmTC_66c81.dir/src.c.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/src.c
/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/src.c: In function 'main':
/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/src.c:5:8: warning: unused variable 'd' [-Wunused-variable]
DIR* d = 0;
^
Linking C executable cmTC_66c81
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_66c81.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DHAVE_DIRENT_H -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_66c81.dir/src.c.o -o cmTC_66c81
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Source file was:
#include <dirent.h>
int main(int argc, char *argv[])
{
DIR* d = 0;
return 0;
}
Performing C SOURCE FILE Test HAVE_SYS_DIR_H succeeded with the following output:
Change Dir: /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_7ee04/fast"
make[2]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
/usr/bin/make -f CMakeFiles/cmTC_7ee04.dir/build.make CMakeFiles/cmTC_7ee04.dir/build
make[3]: Entering directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_7ee04.dir/src.c.o
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DHAVE_SYS_DIR_H -o CMakeFiles/cmTC_7ee04.dir/src.c.o -c /root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/src.c
/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/src.c: In function 'main':
/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/src.c:5:8: warning: unused variable 'd' [-Wunused-variable]
DIR* d = 0;
^
Linking C executable cmTC_7ee04
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7ee04.dir/link.txt --verbose=1
/usr/bin/cc -Wall -std=c99 -D_DEFAULT_SOURCE -DHAVE_SYS_DIR_H -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -rdynamic CMakeFiles/cmTC_7ee04.dir/src.c.o -o cmTC_7ee04
make[3]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
make[2]: Leaving directory '/root/poppler-0.74.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'
Source file was:
#include <sys/dir.h>
int main(int argc, char *argv[])
{
DIR* d = 0;
return 0;
}
dpkg-buildpackage -rfakeroot -D -us -uc
dpkg-buildpackage: warning: using a gain-root-command while being root
dpkg-buildpackage: source package poppler
dpkg-buildpackage: source version 0.74.0-0xenial0
dpkg-buildpackage: source distribution xenial
dpkg-buildpackage: source changed by Jeroen Ooms <jeroen@opencpu.org>
dpkg-source --before-build poppler-0.74.0
dpkg-buildpackage: host architecture amd64
dpkg-source: warning: relation > is deprecated: use >> or >=
dpkg-checkbuilddeps: warning: relation > is deprecated: use >> or >=
fakeroot debian/rules clean
dh clean --with gir
dh_testdir
debian/rules override_dh_auto_clean
make[1]: Entering directory '/root/poppler-0.74.0'
dh_auto_clean
rm -f glib/reference/html/*
rm -f debian/libpoppler-qt5-1.symbols debian/libpoppler-glib8.symbols
make[1]: Leaving directory '/root/poppler-0.74.0'
dh_autoreconf_clean
dh_clean
dpkg-source -b poppler-0.74.0
dpkg-source: warning: relation > is deprecated: use >> or >=
dpkg-source: info: using source format '3.0 (quilt)'
dpkg-source: info: building poppler using existing ./poppler_0.74.0.orig.tar.xz
dpkg-source: warning: ignoring deletion of file glib/reference/html/ch01.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-14.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/home.png, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/poppler-Poppler-Movie.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/right-insensitive.png, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/poppler-Poppler-Color.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-33.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-16.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/left.png, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/right.png, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/PopplerAttachment.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/poppler-Poppler-Layer.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/poppler-Poppler-Annotation.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-70.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-54.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/poppler-Poppler-Page.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/poppler-Poppler-Media.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/poppler-PDF-Utility-functions.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-12.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/PopplerAction.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-73.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/annotation-glossary.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/poppler.devhelp2, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-72.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/PopplerStructureElement.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/up.png, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/left-insensitive.png, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/PopplerDocument.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-18.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/poppler-Error-handling.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/PopplerFormField.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/style.css, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/up-insensitive.png, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/poppler-Poppler-Features.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-22.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-26.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-46.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-0-20.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/index.html, use --include-removal to override
dpkg-source: warning: ignoring deletion of file glib/reference/html/api-index-full.html, use --include-removal to override
dpkg-source: info: building poppler in poppler_0.74.0-0xenial0.debian.tar.xz
dpkg-source: info: building poppler in poppler_0.74.0-0xenial0.dsc
debian/rules build
dh build --with gir
dh_testdir
dh_update_autotools_config
debian/rules override_dh_autoreconf
make[1]: Entering directory '/root/poppler-0.74.0'
dh_autoreconf --as-needed
make[1]: Leaving directory '/root/poppler-0.74.0'
debian/rules override_dh_auto_configure
make[1]: Entering directory '/root/poppler-0.74.0'
dh_auto_configure -- -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_FLAGS_RELEASE="-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security" -DCMAKE_CXX_FLAGS_RELEASE="-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security" -DCMAKE_INSTALL_LIBDIR="lib/x86_64-linux-gnu" -DENABLE_GLIB=ON -DENABLE_QT5=ON -DENABLE_CPP=ON -DENABLE_GTK_DOC=ON -DENABLE_UNSTABLE_API_ABI_HEADERS=ON -DENABLE_CMS=lcms2 -DENABLE_LIBOPENJPEG=unmaintained -DBUILD_GTK_TESTS=OFF
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var -DCMAKE_BUILD_TYPE=Release "-DCMAKE_C_FLAGS_RELEASE=-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security" "-DCMAKE_CXX_FLAGS_RELEASE=-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security" -DCMAKE_INSTALL_LIBDIR=lib/x86_64-linux-gnu -DENABLE_GLIB=ON -DENABLE_QT5=ON -DENABLE_CPP=ON -DENABLE_GTK_DOC=ON -DENABLE_UNSTABLE_API_ABI_HEADERS=ON -DENABLE_CMS=lcms2 -DENABLE_LIBOPENJPEG=unmaintained -DBUILD_GTK_TESTS=OFF
-- The C compiler identification is GNU 5.4.0
-- The CXX compiler identification is GNU 5.4.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- 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: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Performing Test GCC_HAS_AS_NEEDED
-- Performing Test GCC_HAS_AS_NEEDED - Success
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.29.1")
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - no
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - not found
-- Could NOT find Threads (missing: Threads_FOUND)
-- Checking _FILE_OFFSET_BITS for large files
-- Checking _FILE_OFFSET_BITS for large files - not needed
CMake Warning at CMakeLists.txt:79 (message):
No test data found in $testdatadir.
You will not be able to run 'make test' successfully.
The test data is not included in the source packages
and is also not part of the main git repository. Instead,
you can checkout the test data from its own git
repository with:
git clone git://git.freedesktop.org/git/poppler/test
You should checkout the test data as a sibling of your
poppler source folder or specify the location of your
checkout with -DTESTDATADIR=/path/to/checkoutdir/test.
-- Found Freetype: /usr/lib/x86_64-linux-gnu/libfreetype.so
-- Checking for module 'fontconfig'
-- Found fontconfig, version 2.11.94
-- Found Fontconfig: /usr/lib/x86_64-linux-gnu/libfontconfig.so
-- Found JPEG: /usr/lib/x86_64-linux-gnu/libjpeg.so
-- Found ZLIB: /usr/lib/x86_64-linux-gnu/libz.so (found version "1.2.8")
-- Found PNG: /usr/lib/x86_64-linux-gnu/libpng.so (found version "1.2.54")
-- Found TIFF: /usr/lib/x86_64-linux-gnu/libtiff.so (found version "4.0.6")
-- Checking for module 'nss>=3.19'
-- Found nss, version 3.28.4
-- Found NSS3: nss3;nssutil3;smime3;ssl3;plds4;plc4;nspr4
-- Checking for module 'cairo>=1.10.0'
-- Found cairo, version 1.14.6
-- Found Cairo: /usr/lib/x86_64-linux-gnu/libcairo.so (Required is at least version "1.10.0")
-- Checking for modules 'glib-2.0>=2.41;gobject-2.0>=2.41;gio-2.0>=2.41'
-- Found glib-2.0, version 2.48.2
-- Found gobject-2.0, version 2.48.2
-- Found gio-2.0, version 2.48.2
-- Found GLib: gio-2.0;gobject-2.0;glib-2.0
-- Checking for module 'gobject-introspection-1.0'
-- Found gobject-introspection-1.0, version 1.46.0
-- Checking for modules 'gtk+-3.0>=3.8;gdk-pixbuf-2.0>=2.8'
-- No package 'gtk+-3.0' found
-- No package 'gdk-pixbuf-2.0' found
-- Could NOT find GTK (missing: GTK3_LIBRARIES GTK3_CFLAGS)
-- Performing Test ICONV_SECOND_ARGUMENT_IS_CONST
-- Performing Test ICONV_SECOND_ARGUMENT_IS_CONST - Failed
-- Found Iconv: /usr/lib/x86_64-linux-gnu/libc.so
-- Checking for module 'lcms2'
-- Found lcms2, version 2.6
-- Found lcms version 2.06, /usr/lib/x86_64-linux-gnu/liblcms2.so
-- Could NOT find CURL (missing: CURL_LIBRARY CURL_INCLUDE_DIR)
-- Checking for module 'poppler-data'
-- No package 'poppler-data' found
-- Looking for include file dlfcn.h
-- Looking for include file dlfcn.h - found
-- Looking for include file fcntl.h
-- Looking for include file fcntl.h - found
-- Looking for include file stdlib.h
-- Looking for include file stdlib.h - found
-- Looking for include file sys/mman.h
-- Looking for include file sys/mman.h - found
-- Looking for include file sys/stat.h
-- Looking for include file sys/stat.h - found
-- Looking for include file unistd.h
-- Looking for include file unistd.h - found
-- Looking for C++ include codecvt
-- Looking for C++ include codecvt - not found
-- Looking for fseek64
-- Looking for fseek64 - not found
-- Looking for fseeko
-- Looking for fseeko - not found
-- Looking for ftell64
-- Looking for ftell64 - not found
-- Looking for pread64
-- Looking for pread64 - not found
-- Looking for lseek64
-- Looking for lseek64 - not found
-- Looking for gmtime_r
-- Looking for gmtime_r - not found
-- Looking for timegm
-- Looking for timegm - not found
-- Looking for gettimeofday
-- Looking for gettimeofday - not found
-- Looking for localtime_r
-- Looking for localtime_r - not found
-- Looking for popen
-- Looking for popen - not found
-- Looking for mkstemp
-- Looking for mkstemp - not found
-- Looking for strcpy_s
-- Looking for strcpy_s - not found
-- Looking for strcat_s
-- Looking for strcat_s - not found
-- Looking for strtok_r
-- Looking for strtok_r - not found
-- Performing Test HAVE_DIRENT_H
-- Performing Test HAVE_DIRENT_H - Success
-- Performing Test HAVE_NDIR_H
-- Performing Test HAVE_NDIR_H - Failed
-- Performing Test HAVE_SYS_DIR_H
-- Performing Test HAVE_SYS_DIR_H - Success
-- Performing Test HAVE_SYS_NDIR_H
-- Performing Test HAVE_SYS_NDIR_H - Failed
-- Looking for nanosleep
-- Looking for nanosleep - not found
-- Looking for nanosleep in rt
-- Looking for nanosleep in rt - not found
Building Poppler with support for:
font configuration: fontconfig
splash output: yes
cairo output: yes
qt5 wrapper: yes
glib wrapper: yes
introspection: yes
gtk-doc: yes
cpp wrapper: yes
use libjpeg: yes
use libpng: yes
use libtiff: yes
use zlib compress: yes
use zlib uncompress: no
use nss3: yes
use curl: no
use libopenjpeg2: no
use lcms2: yes
command line utils: yes
fuzz target: no
test data dir: /root/poppler-0.74.0/../test
.......
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment