-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmake_link_error_against_openssl.log
1521 lines (1517 loc) · 99.5 KB
/
cmake_link_error_against_openssl.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Exporting package recipe
qt5Example/0.0.1 exports_sources: Copied 1 '.txt' file: CMakeLists.txt
qt5Example/0.0.1 exports_sources: Copied 1 '.cpp' file: qt5Example.cpp
qt5Example/0.0.1 exports_sources: Copied 1 '.h' file: qt5Example.h
qt5Example/0.0.1: The stored package has not changed
qt5Example/0.0.1: Using the exported files summary hash as the recipe revision: 7150eef5dfe465152a8e1f4d38d37359
qt5Example/0.0.1: Exported revision: 7150eef5dfe465152a8e1f4d38d37359
Configuration (profile_host):
[settings]
arch=x86_64
build_type=RelWithDebInfo
compiler=gcc
compiler.libcxx=libstdc++11
compiler.version=8
os=Linux
[options]
[build_requires]
[env]
[conf]
tools.system.package_manager:mode=install
tools.system.package_manager:sudo=True
Configuration (profile_build):
[settings]
arch=x86_64
build_type=RelWithDebInfo
compiler=gcc
compiler.libcxx=libstdc++11
compiler.version=8
os=Linux
[options]
[build_requires]
[env]
Installing package: qt5Example/0.0.1
Requirements
boost/1.69.0 from 'conancenter' - Cache
bzip2/1.0.8 from 'conancenter' - Cache
double-conversion/3.2.1 from 'conancenter' - Cache
icu/71.1 from 'conancenter' - Cache
libbacktrace/cci.20210118 from 'conancenter' - Cache
openssl/1.1.1s from 'conancenter' - Cache
pcre2/10.40 from 'conancenter' - Cache
qt/5.15.8 from 'conancenter' - Cache
qt5Example/0.0.1 from local cache - Cache
zlib/1.2.12 from 'conancenter' - Cache
zstd/1.5.2 from 'conancenter' - Cache
Packages
boost/1.69.0:ee966265d6e4fe8d1f34fab841f92113b19217d4 - Cache
bzip2/1.0.8:958b011845d8998ef3cc45a6238d89fc6cb91e6b - Cache
double-conversion/3.2.1:5c1963f6d66f4f5bd8178a39b6b31db7bb1731a1 - Cache
icu/71.1:412da2c46b38876ceb13ad00f5003e7093f3a3fd - Cache
libbacktrace/cci.20210118:85d958111e9ae25b990062d9726ea88cea5a01d1 - Cache
openssl/1.1.1s:85d958111e9ae25b990062d9726ea88cea5a01d1 - Cache
pcre2/10.40:d5577bae02b6a22839872c5042127115f2433c3a - Build
qt/5.15.8:9f59e237d0fc23dcce0964a6cdc4c83a5eed8d59 - Build
qt5Example/0.0.1:81219f3ec46d34246f4dd61b18d3a8a0eb1f50b0 - Build
zlib/1.2.12:85d958111e9ae25b990062d9726ea88cea5a01d1 - Cache
zstd/1.5.2:76e72918956944d1bcb952bb21ed2ce6b6b0c606 - Cache
Build requirements
cmake/3.25.1 from 'conancenter' - Cache
ninja/1.11.1 from 'conancenter' - Cache
openssl/1.1.1s from 'conancenter' - Cache
Build requirements packages
cmake/3.25.1:a959aa5d0f2c723fec52ed7c1424ad28487e8d7e - Build
ninja/1.11.1:252f7e09f641bef29a75fc98d05ac217b842cde4 - Cache
openssl/1.1.1s:85d958111e9ae25b990062d9726ea88cea5a01d1 - Cache
Installing (downloading, building) binaries...
bzip2/1.0.8: Already installed!
double-conversion/3.2.1: Already installed!
icu/71.1: Already installed!
libbacktrace/cci.20210118: Already installed!
ninja/1.11.1: Already installed!
openssl/1.1.1s: Already installed!
zlib/1.2.12: Already installed!
zstd/1.5.2: Already installed!
boost/1.69.0: Already installed!
cmake/3.25.1: Copying sources to build folder
cmake/3.25.1: Building your package in /home/conan/.conan/data/cmake/3.25.1/_/_/build/a959aa5d0f2c723fec52ed7c1424ad28487e8d7e
cmake/3.25.1: Generator txt created conanbuildinfo.txt
cmake/3.25.1: Calling generate()
cmake/3.25.1: Preset 'relwithdebinfo' added to CMakePresets.json. Invoke it manually using 'cmake --preset relwithdebinfo'
cmake/3.25.1: If your CMake version is not compatible with CMakePresets (<3.19) call cmake like: 'cmake <path> -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=/home/conan/.conan/data/cmake/3.25.1/_/_/build/a959aa5d0f2c723fec52ed7c1424ad28487e8d7e/build/generators/conan_toolchain.cmake -DCMAKE_POLICY_DEFAULT_CMP0091=NEW -DCMAKE_BUILD_TYPE=RelWithDebInfo'
cmake/3.25.1: Aggregating env generators
cmake/3.25.1: Calling build()
cmake/3.25.1: CMake command: cmake -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE="/home/conan/.conan/data/cmake/3.25.1/_/_/build/a959aa5d0f2c723fec52ed7c1424ad28487e8d7e/build/generators/conan_toolchain.cmake" -DCMAKE_INSTALL_PREFIX="/home/conan/.conan/data/cmake/3.25.1/_/_/package/a959aa5d0f2c723fec52ed7c1424ad28487e8d7e" -DCMAKE_POLICY_DEFAULT_CMP0091="NEW" -DCMAKE_BUILD_TYPE="RelWithDebInfo" "/home/conan/.conan/data/cmake/3.25.1/_/_/build/a959aa5d0f2c723fec52ed7c1424ad28487e8d7e/src"
-- Using Conan toolchain: /home/conan/.conan/data/cmake/3.25.1/_/_/build/a959aa5d0f2c723fec52ed7c1424ad28487e8d7e/build/generators/conan_toolchain.cmake
-- The C compiler identification is GNU 8.4.0
-- The CXX compiler identification is GNU 8.4.0
-- Check for working C compiler: /usr/local/bin/cc
-- Check for working C compiler: /usr/local/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/local/bin/c++
-- Check for working CXX compiler: /usr/local/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Checking if compiler supports C11 _Thread_local
-- Checking if compiler supports C11 _Thread_local - yes
-- Checking if compiler supports C++ make_unique
-- Checking if compiler supports C++ make_unique - no
-- Checking if compiler supports C++ unique_ptr
-- Checking if compiler supports C++ unique_ptr - yes
-- Looking for unsetenv
-- Looking for unsetenv - found
-- Looking for environ
-- Looking for environ - not found
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
-- 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 - found
-- Found Threads: TRUE
-- Checking whether wstring is available
-- Checking whether wstring is available - yes
-- Checking whether C compiler has ptrdiff_t in stddef.h
-- Checking whether C compiler has ptrdiff_t in stddef.h - yes
-- Checking whether C compiler has ssize_t in unistd.h
-- Checking whether C compiler has ssize_t in unistd.h - yes
-- Checking whether C compiler has clock_gettime
-- Checking whether C compiler has clock_gettime - yes
-- Checking whether CXX compiler has setenv
-- Checking whether CXX compiler has setenv - yes
-- Checking whether CXX compiler has unsetenv
-- Checking whether CXX compiler has unsetenv - yes
-- Checking whether CXX compiler has environ in stdlib.h
-- Checking whether CXX compiler has environ in stdlib.h - no
-- Checking whether CXX compiler has utimes
-- Checking whether CXX compiler has utimes - yes
-- Checking whether CXX compiler has utimensat
-- Checking whether CXX compiler has utimensat - yes
-- Checking whether CXX compiler struct stat has st_mtim member
-- Checking whether CXX compiler struct stat has st_mtim member - yes
-- Checking whether CXX compiler struct stat has st_mtimespec member
-- Checking whether CXX compiler struct stat has st_mtimespec member - no
-- Looking for include files sys/types.h, ifaddrs.h
-- Looking for include files sys/types.h, ifaddrs.h - found
-- Checking whether CXX compiler has rlimit64
-- Checking whether CXX compiler has rlimit64 - yes
-- Looking for C++ include execinfo.h
-- Looking for C++ include execinfo.h - found
-- Checking whether backtrace works with this C++ compiler
-- Checking whether backtrace works with this C++ compiler - yes
-- Looking for C++ include dlfcn.h
-- Looking for C++ include dlfcn.h - found
-- Checking whether dladdr works with this C++ compiler
-- Checking whether dladdr works with this C++ compiler - yes
-- Looking for C++ include cxxabi.h
-- Looking for C++ include cxxabi.h - found
-- Checking whether cxxabi works with this C++ compiler
-- Checking whether cxxabi works with this C++ compiler - yes
-- Checking whether CXX compiler has getloadavg
-- Checking whether CXX compiler has getloadavg - yes
-- Checking whether <ext/stdio_filebuf.h> is available
-- Checking whether <ext/stdio_filebuf.h> is available - yes
-- Performing Test HAVE_SOCKADDR_IN6_SIN6_ADDR
-- Performing Test HAVE_SOCKADDR_IN6_SIN6_ADDR - Success
-- Performing Test HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID
-- Performing Test HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID - Success
-- Looking for connect in socket;
-- Looking for connect in socket; - not found
-- Looking for gethostname
-- Looking for gethostname - found
-- Found OpenSSL: /home/conan/.conan/data/openssl/1.1.1s/_/_/package/85d958111e9ae25b990062d9726ea88cea5a01d1/lib/libcrypto.a (found version "1.1.1s")
-- Looking for RAND_egd
-- Looking for RAND_egd - not found
-- Found NGHTTP2: cmnghttp2
-- Looking for idn2_lookup_ul in idn2;/home/conan/.conan/data/openssl/1.1.1s/_/_/package/85d958111e9ae25b990062d9726ea88cea5a01d1/lib/libssl.a;/home/conan/.conan/data/openssl/1.1.1s/_/_/package/85d958111e9ae25b990062d9726ea88cea5a01d1/lib/libcrypto.a;cmnghttp2
-- Looking for idn2_lookup_ul in idn2;/home/conan/.conan/data/openssl/1.1.1s/_/_/package/85d958111e9ae25b990062d9726ea88cea5a01d1/lib/libssl.a;/home/conan/.conan/data/openssl/1.1.1s/_/_/package/85d958111e9ae25b990062d9726ea88cea5a01d1/lib/libcrypto.a;cmnghttp2 - not found
-- Found ZLIB: cmzlib
-- Looking for include file inttypes.h
-- Looking for include file inttypes.h - found
-- Looking for include files inttypes.h, sys/filio.h
-- Looking for include files inttypes.h, sys/filio.h - not found
-- Looking for include files inttypes.h, sys/ioctl.h
-- Looking for include files inttypes.h, sys/ioctl.h - found
-- Looking for 3 include files inttypes.h, ..., sys/param.h
-- Looking for 3 include files inttypes.h, ..., sys/param.h - found
-- Looking for 4 include files inttypes.h, ..., sys/poll.h
-- Looking for 4 include files inttypes.h, ..., sys/poll.h - found
-- Looking for 5 include files inttypes.h, ..., sys/resource.h
-- Looking for 5 include files inttypes.h, ..., sys/resource.h - found
-- Looking for 6 include files inttypes.h, ..., sys/select.h
-- Looking for 6 include files inttypes.h, ..., sys/select.h - found
-- Looking for 7 include files inttypes.h, ..., sys/socket.h
-- Looking for 7 include files inttypes.h, ..., sys/socket.h - found
-- Looking for 8 include files inttypes.h, ..., sys/sockio.h
-- Looking for 8 include files inttypes.h, ..., sys/sockio.h - not found
-- Looking for 8 include files inttypes.h, ..., sys/stat.h
-- Looking for 8 include files inttypes.h, ..., sys/stat.h - found
-- Looking for 9 include files inttypes.h, ..., sys/time.h
-- Looking for 9 include files inttypes.h, ..., sys/time.h - found
-- Looking for 10 include files inttypes.h, ..., sys/types.h
-- Looking for 10 include files inttypes.h, ..., sys/types.h - found
-- Looking for 11 include files inttypes.h, ..., sys/un.h
-- Looking for 11 include files inttypes.h, ..., sys/un.h - found
-- Looking for 12 include files inttypes.h, ..., sys/utime.h
-- Looking for 12 include files inttypes.h, ..., sys/utime.h - not found
-- Looking for 12 include files inttypes.h, ..., sys/xattr.h
-- Looking for 12 include files inttypes.h, ..., sys/xattr.h - found
-- Looking for 13 include files inttypes.h, ..., arpa/inet.h
-- Looking for 13 include files inttypes.h, ..., arpa/inet.h - found
-- Looking for 14 include files inttypes.h, ..., arpa/tftp.h
-- Looking for 14 include files inttypes.h, ..., arpa/tftp.h - found
-- Looking for 16 include files inttypes.h, ..., errno.h
-- Looking for 16 include files inttypes.h, ..., errno.h - found
-- Looking for 17 include files inttypes.h, ..., fcntl.h
-- Looking for 17 include files inttypes.h, ..., fcntl.h - found
-- Looking for 18 include files inttypes.h, ..., idn2.h
-- Looking for 18 include files inttypes.h, ..., idn2.h - not found
-- Looking for 18 include files inttypes.h, ..., ifaddrs.h
-- Looking for 18 include files inttypes.h, ..., ifaddrs.h - found
-- Looking for 19 include files inttypes.h, ..., io.h
-- Looking for 19 include files inttypes.h, ..., io.h - not found
-- Looking for 19 include files inttypes.h, ..., libgen.h
-- Looking for 19 include files inttypes.h, ..., libgen.h - found
-- Looking for 21 include files inttypes.h, ..., net/if.h
-- Looking for 21 include files inttypes.h, ..., net/if.h - found
-- Looking for 22 include files inttypes.h, ..., netdb.h
-- Looking for 22 include files inttypes.h, ..., netdb.h - found
-- Looking for 23 include files inttypes.h, ..., netinet/in.h
-- Looking for 23 include files inttypes.h, ..., netinet/in.h - found
-- Looking for 24 include files inttypes.h, ..., netinet/tcp.h
-- Looking for 24 include files inttypes.h, ..., netinet/tcp.h - found
-- Looking for linux/tcp.h
-- Looking for linux/tcp.h - found
-- Looking for 25 include files inttypes.h, ..., poll.h
-- Looking for 25 include files inttypes.h, ..., poll.h - found
-- Looking for 26 include files inttypes.h, ..., pwd.h
-- Looking for 26 include files inttypes.h, ..., pwd.h - found
-- Looking for 27 include files inttypes.h, ..., setjmp.h
-- Looking for 27 include files inttypes.h, ..., setjmp.h - found
-- Looking for 28 include files inttypes.h, ..., signal.h
-- Looking for 28 include files inttypes.h, ..., signal.h - found
-- Looking for 29 include files inttypes.h, ..., ssl.h
-- Looking for 29 include files inttypes.h, ..., ssl.h - not found
-- Looking for 29 include files inttypes.h, ..., stdbool.h
-- Looking for 29 include files inttypes.h, ..., stdbool.h - found
-- Looking for 30 include files inttypes.h, ..., stdint.h
-- Looking for 30 include files inttypes.h, ..., stdint.h - found
-- Looking for 33 include files inttypes.h, ..., strings.h
-- Looking for 33 include files inttypes.h, ..., strings.h - found
-- Looking for 34 include files inttypes.h, ..., stropts.h
-- Looking for 34 include files inttypes.h, ..., stropts.h - found
-- Looking for 35 include files inttypes.h, ..., termio.h
-- Looking for 35 include files inttypes.h, ..., termio.h - found
-- Looking for 36 include files inttypes.h, ..., termios.h
-- Looking for 36 include files inttypes.h, ..., termios.h - found
-- Looking for 37 include files inttypes.h, ..., time.h
-- Looking for 37 include files inttypes.h, ..., time.h - found
-- Looking for 38 include files inttypes.h, ..., unistd.h
-- Looking for 38 include files inttypes.h, ..., unistd.h - found
-- Looking for 39 include files inttypes.h, ..., utime.h
-- Looking for 39 include files inttypes.h, ..., utime.h - found
-- Looking for 40 include files inttypes.h, ..., process.h
-- Looking for 40 include files inttypes.h, ..., process.h - not found
-- Looking for 42 include files inttypes.h, ..., sys/utsname.h
-- Looking for 42 include files inttypes.h, ..., sys/utsname.h - found
-- Check size of size_t
-- Check size of size_t - done
-- Check size of ssize_t
-- Check size of ssize_t - done
-- Check size of time_t
-- Check size of time_t - done
-- Looking for fchmod
-- Looking for fchmod - found
-- Looking for basename
-- Looking for basename - found
-- Looking for socket
-- Looking for socket - found
-- Looking for socketpair
-- Looking for socketpair - found
-- Looking for select
-- Looking for select - found
-- Looking for strtok_r
-- Looking for strtok_r - found
-- Looking for stricmp
-- Looking for stricmp - not found
-- Looking for strcmpi
-- Looking for strcmpi - not found
-- Looking for alarm
-- Looking for alarm - found
-- Looking for getppid
-- Looking for getppid - found
-- Looking for utimes
-- Looking for utimes - found
-- Looking for gettimeofday
-- Looking for gettimeofday - found
-- Looking for closesocket
-- Looking for closesocket - not found
-- Looking for sigsetjmp
-- Looking for sigsetjmp - found
-- Looking for getpass_r
-- Looking for getpass_r - not found
-- Looking for getpwuid
-- Looking for getpwuid - found
-- Looking for getpwuid_r
-- Looking for getpwuid_r - found
-- Looking for geteuid
-- Looking for geteuid - found
-- Looking for utime
-- Looking for utime - found
-- Looking for gmtime_r
-- Looking for gmtime_r - found
-- Looking for gethostbyname_r
-- Looking for gethostbyname_r - found
-- Looking for signal
-- Looking for signal - found
-- Looking for strtoll
-- Looking for strtoll - found
-- Looking for _strtoi64
-- Looking for _strtoi64 - not found
-- Looking for strerror_r
-- Looking for strerror_r - found
-- Looking for siginterrupt
-- Looking for siginterrupt - found
-- Looking for getaddrinfo
-- Looking for getaddrinfo - found
-- Looking for freeaddrinfo
-- Looking for freeaddrinfo - found
-- Looking for pipe
-- Looking for pipe - found
-- Looking for ftruncate
-- Looking for ftruncate - found
-- Looking for getpeername
-- Looking for getpeername - found
-- Looking for getsockname
-- Looking for getsockname - found
-- Looking for if_nametoindex
-- Looking for if_nametoindex - found
-- Looking for getrlimit
-- Looking for getrlimit - found
-- Looking for setmode
-- Looking for setmode - not found
-- Looking for setrlimit
-- Looking for setrlimit - found
-- Looking for mach_absolute_time
-- Looking for mach_absolute_time - not found
-- Looking for inet_ntop
-- Looking for inet_ntop - found
-- Looking for inet_pton
-- Looking for inet_pton - found
-- Looking for fsetxattr
-- Looking for fsetxattr - found
-- Performing Curl Test HAVE_FSETXATTR_5
-- Performing Curl Test HAVE_FSETXATTR_5 - Success
-- Performing Curl Test HAVE_FSETXATTR_6
-- Performing Curl Test HAVE_FSETXATTR_6 - Failed
-- Check size of sa_family_t
-- Check size of sa_family_t - done
-- Check size of ADDRESS_FAMILY
-- Check size of ADDRESS_FAMILY - failed
-- Looking for sigaction
-- Looking for sigaction - found
-- Performing Curl Test HAVE_FCNTL_O_NONBLOCK
-- Performing Curl Test HAVE_FCNTL_O_NONBLOCK - Success
-- Performing Curl Test HAVE_IOCTLSOCKET
-- Performing Curl Test HAVE_IOCTLSOCKET - Failed
-- Performing Curl Test HAVE_IOCTLSOCKET_CAMEL
-- Performing Curl Test HAVE_IOCTLSOCKET_CAMEL - Failed
-- Performing Curl Test HAVE_IOCTLSOCKET_CAMEL_FIONBIO
-- Performing Curl Test HAVE_IOCTLSOCKET_CAMEL_FIONBIO - Failed
-- Performing Curl Test HAVE_IOCTLSOCKET_FIONBIO
-- Performing Curl Test HAVE_IOCTLSOCKET_FIONBIO - Failed
-- Performing Curl Test HAVE_IOCTL_FIONBIO
-- Performing Curl Test HAVE_IOCTL_FIONBIO - Success
-- Performing Curl Test HAVE_IOCTL_SIOCGIFADDR
-- Performing Curl Test HAVE_IOCTL_SIOCGIFADDR - Success
-- Performing Curl Test HAVE_SETSOCKOPT_SO_NONBLOCK
-- Performing Curl Test HAVE_SETSOCKOPT_SO_NONBLOCK - Failed
-- Performing Curl Test TIME_WITH_SYS_TIME
-- Performing Curl Test TIME_WITH_SYS_TIME - Success
-- Performing Curl Test HAVE_O_NONBLOCK
-- Performing Curl Test HAVE_O_NONBLOCK - Failed
-- Performing Curl Test HAVE_GETHOSTBYNAME_R_3
-- Performing Curl Test HAVE_GETHOSTBYNAME_R_3 - Failed
-- Performing Curl Test HAVE_GETHOSTBYNAME_R_5
-- Performing Curl Test HAVE_GETHOSTBYNAME_R_5 - Failed
-- Performing Curl Test HAVE_GETHOSTBYNAME_R_6
-- Performing Curl Test HAVE_GETHOSTBYNAME_R_6 - Success
-- Performing Curl Test HAVE_GETHOSTBYNAME_R_3_REENTRANT
-- Performing Curl Test HAVE_GETHOSTBYNAME_R_3_REENTRANT - Failed
-- Performing Curl Test HAVE_GETHOSTBYNAME_R_5_REENTRANT
-- Performing Curl Test HAVE_GETHOSTBYNAME_R_5_REENTRANT - Failed
-- Performing Curl Test HAVE_GETHOSTBYNAME_R_6_REENTRANT
-- Performing Curl Test HAVE_GETHOSTBYNAME_R_6_REENTRANT - Success
-- Performing Curl Test HAVE_IN_ADDR_T
-- Performing Curl Test HAVE_IN_ADDR_T - Success
-- Performing Curl Test HAVE_BOOL_T
-- Performing Curl Test HAVE_BOOL_T - Success
-- Performing Curl Test STDC_HEADERS
-- Performing Curl Test STDC_HEADERS - Success
-- Performing Curl Test HAVE_FILE_OFFSET_BITS
-- Performing Curl Test HAVE_FILE_OFFSET_BITS - Success
-- Performing Curl Test HAVE_VARIADIC_MACROS_C99
-- Performing Curl Test HAVE_VARIADIC_MACROS_C99 - Success
-- Performing Curl Test HAVE_VARIADIC_MACROS_GCC
-- Performing Curl Test HAVE_VARIADIC_MACROS_GCC - Success
-- Check size of off_t
-- Check size of off_t - done
-- Check size of curl_off_t
-- Check size of curl_off_t - done
-- Performing Curl Test HAVE_GLIBC_STRERROR_R
-- Performing Curl Test HAVE_GLIBC_STRERROR_R - Failed
-- Performing Curl Test HAVE_POSIX_STRERROR_R
-- Performing Curl Test HAVE_POSIX_STRERROR_R - Success
-- Performing Curl Test HAVE_CLOCK_GETTIME_MONOTONIC
-- Performing Curl Test HAVE_CLOCK_GETTIME_MONOTONIC - Success
-- Performing Curl Test HAVE_BUILTIN_AVAILABLE
-- Performing Curl Test HAVE_BUILTIN_AVAILABLE - Failed
-- Performing Test HAVE_MSG_NOSIGNAL
-- Performing Test HAVE_MSG_NOSIGNAL - Success
-- Performing Test HAVE_STRUCT_TIMEVAL
-- Performing Test HAVE_STRUCT_TIMEVAL - Success
-- Check size of struct sockaddr_storage
-- Check size of struct sockaddr_storage - done
-- Looking for dlfcn.h
-- Looking for dlfcn.h - found
-- Looking for memory.h
-- Looking for memory.h - found
-- Looking for getpagesize
-- Looking for getpagesize - found
-- Looking for mmap
-- Looking for mmap - found
-- Looking for getrandom
-- Looking for getrandom - found
-- Looking for arc4random_buf
-- Looking for arc4random_buf - not found
-- Looking for arc4random
-- Looking for arc4random - not found
-- Check if the system is big endian
-- Searching 16 bit integer
-- Using unsigned short
-- Check if the system is big endian - little endian
-- Performing Test HAVE_SYSCALL_GETRANDOM
-- Performing Test HAVE_SYSCALL_GETRANDOM - Success
-- Looking for byteswap.h
-- Looking for byteswap.h - found
-- Looking for limits.h
-- Looking for limits.h - found
-- Looking for sys/sysctl.h
-- Looking for sys/sysctl.h - found
-- Performing Test HAVE_BSWAP_16
-- Performing Test HAVE_BSWAP_16 - Success
-- Performing Test HAVE_BSWAP_32
-- Performing Test HAVE_BSWAP_32 - Success
-- Performing Test HAVE_BSWAP_64
-- Performing Test HAVE_BSWAP_64 - Success
-- Found BZip2: cmbzip2 (found version "1.0.8")
-- Found LibLZMA: cmliblzma (found version "5.2.5")
-- Performing Test HAVE_DIRENT_H
-- Performing Test HAVE_DIRENT_H - Success
-- Looking for 3 include files sys/types.h, ..., copyfile.h
-- Looking for 3 include files sys/types.h, ..., copyfile.h - not found
-- Looking for 3 include files sys/types.h, ..., direct.h
-- Looking for 3 include files sys/types.h, ..., direct.h - not found
-- Looking for 5 include files sys/types.h, ..., ext2fs/ext2_fs.h
-- Looking for 5 include files sys/types.h, ..., ext2fs/ext2_fs.h - not found
-- Performing Test HAVE_WORKING_EXT2_IOC_GETFLAGS
-- Performing Test HAVE_WORKING_EXT2_IOC_GETFLAGS - Failed
-- Looking for 6 include files sys/types.h, ..., grp.h
-- Looking for 6 include files sys/types.h, ..., grp.h - found
-- Looking for 7 include files sys/types.h, ..., langinfo.h
-- Looking for 7 include files sys/types.h, ..., langinfo.h - found
-- Looking for 9 include files sys/types.h, ..., linux/types.h
-- Looking for 9 include files sys/types.h, ..., linux/types.h - found
-- Looking for 10 include files sys/types.h, ..., linux/fiemap.h
-- Looking for 10 include files sys/types.h, ..., linux/fiemap.h - found
-- Looking for 11 include files sys/types.h, ..., linux/fs.h
-- Looking for 11 include files sys/types.h, ..., linux/fs.h - found
-- Performing Test HAVE_WORKING_FS_IOC_GETFLAGS
-- Performing Test HAVE_WORKING_FS_IOC_GETFLAGS - Success
-- Looking for 12 include files sys/types.h, ..., linux/magic.h
-- Looking for 12 include files sys/types.h, ..., linux/magic.h - found
-- Looking for 14 include files sys/types.h, ..., membership.h
-- Looking for 14 include files sys/types.h, ..., membership.h - not found
-- Looking for 15 include files sys/types.h, ..., paths.h
-- Looking for 15 include files sys/types.h, ..., paths.h - found
-- Looking for 17 include files sys/types.h, ..., pthread.h
-- Looking for 17 include files sys/types.h, ..., pthread.h - found
-- Looking for 19 include files sys/types.h, ..., readpassphrase.h
-- Looking for 19 include files sys/types.h, ..., readpassphrase.h - not found
-- Looking for 19 include files sys/types.h, ..., regex.h
-- Looking for 19 include files sys/types.h, ..., regex.h - found
-- Looking for 21 include files sys/types.h, ..., spawn.h
-- Looking for 21 include files sys/types.h, ..., spawn.h - found
-- Looking for 22 include files sys/types.h, ..., stdarg.h
-- Looking for 22 include files sys/types.h, ..., stdarg.h - found
-- Looking for 26 include files sys/types.h, ..., sys/acl.h
-- Looking for 26 include files sys/types.h, ..., sys/acl.h - not found
-- Looking for 26 include files sys/types.h, ..., sys/cdefs.h
-- Looking for 26 include files sys/types.h, ..., sys/cdefs.h - found
-- Looking for 27 include files sys/types.h, ..., sys/extattr.h
-- Looking for 27 include files sys/types.h, ..., sys/extattr.h - not found
-- Looking for 28 include files sys/types.h, ..., sys/mkdev.h
-- Looking for 28 include files sys/types.h, ..., sys/mkdev.h - not found
-- Looking for 28 include files sys/types.h, ..., sys/mount.h
-- Looking for 28 include files sys/types.h, ..., sys/mount.h - not found
-- Looking for 30 include files sys/types.h, ..., sys/richacl.h
-- Looking for 30 include files sys/types.h, ..., sys/richacl.h - not found
-- Looking for 32 include files sys/types.h, ..., sys/statfs.h
-- Looking for 32 include files sys/types.h, ..., sys/statfs.h - found
-- Looking for 33 include files sys/types.h, ..., sys/statvfs.h
-- Looking for 33 include files sys/types.h, ..., sys/statvfs.h - found
-- Looking for 34 include files sys/types.h, ..., sys/sysmacros.h
-- Looking for 34 include files sys/types.h, ..., sys/sysmacros.h - found
-- Looking for 37 include files sys/types.h, ..., sys/vfs.h
-- Looking for 37 include files sys/types.h, ..., sys/vfs.h - found
-- Looking for 38 include files sys/types.h, ..., sys/wait.h
-- Looking for 38 include files sys/types.h, ..., sys/wait.h - found
-- Looking for 44 include files sys/types.h, ..., wctype.h
-- Looking for 44 include files sys/types.h, ..., wctype.h - found
-- Looking for 45 include files sys/types.h, ..., windows.h
-- Looking for 45 include files sys/types.h, ..., windows.h - not found
-- Looking for 45 include files sys/types.h, ..., wincrypt.h
-- Looking for 45 include files sys/types.h, ..., wincrypt.h - not found
-- Looking for 45 include files sys/types.h, ..., winioctl.h
-- Looking for 45 include files sys/types.h, ..., winioctl.h - not found
-- Performing Test SAFE_TO_DEFINE_EXTENSIONS
-- Performing Test SAFE_TO_DEFINE_EXTENSIONS - Success
-- Looking for chown
-- Looking for chown - found
-- Looking for chroot
-- Looking for chroot - found
-- Looking for ctime_r
-- Looking for ctime_r - found
-- Looking for fchdir
-- Looking for fchdir - found
-- Looking for fchown
-- Looking for fchown - found
-- Looking for fcntl
-- Looking for fcntl - found
-- Looking for fdopendir
-- Looking for fdopendir - found
-- Looking for fork
-- Looking for fork - found
-- Looking for fstat
-- Looking for fstat - found
-- Looking for fstatat
-- Looking for fstatat - found
-- Looking for fstatfs
-- Looking for fstatfs - found
-- Looking for fstatvfs
-- Looking for fstatvfs - found
-- Looking for futimens
-- Looking for futimens - found
-- Looking for futimes
-- Looking for futimes - found
-- Looking for futimesat
-- Looking for futimesat - found
-- Looking for getgrgid_r
-- Looking for getgrgid_r - found
-- Looking for getgrnam_r
-- Looking for getgrnam_r - found
-- Looking for getpwnam_r
-- Looking for getpwnam_r - found
-- Looking for getpid
-- Looking for getpid - found
-- Looking for getvfsbyname
-- Looking for getvfsbyname - not found
-- Looking for lchflags
-- Looking for lchflags - not found
-- Looking for lchown
-- Looking for lchown - found
-- Looking for link
-- Looking for link - found
-- Looking for linkat
-- Looking for linkat - found
-- Looking for localtime_r
-- Looking for localtime_r - found
-- Looking for lstat
-- Looking for lstat - found
-- Looking for lutimes
-- Looking for lutimes - found
-- Looking for mbrtowc
-- Looking for mbrtowc - found
-- Looking for mkdir
-- Looking for mkdir - found
-- Looking for mkfifo
-- Looking for mkfifo - found
-- Looking for mknod
-- Looking for mknod - found
-- Looking for mkstemp
-- Looking for mkstemp - found
-- Looking for nl_langinfo
-- Looking for nl_langinfo - found
-- Looking for openat
-- Looking for openat - found
-- Looking for poll
-- Looking for poll - found
-- Looking for posix_spawnp
-- Looking for posix_spawnp - found
-- Looking for readlink
-- Looking for readlink - found
-- Looking for readpassphrase
-- Looking for readpassphrase - not found
-- Looking for setenv
-- Looking for setenv - found
-- Looking for statfs
-- Looking for statfs - found
-- Looking for statvfs
-- Looking for statvfs - found
-- Looking for strerror
-- Looking for strerror - found
-- Looking for strncpy_s
-- Looking for strncpy_s - not found
-- Looking for strnlen
-- Looking for strnlen - found
-- Looking for symlink
-- Looking for symlink - found
-- Looking for timegm
-- Looking for timegm - found
-- Looking for tzset
-- Looking for tzset - found
-- Looking for unlinkat
-- Looking for unlinkat - found
-- Looking for utimensat
-- Looking for utimensat - found
-- Looking for vfork
-- Looking for vfork - found
-- Looking for wcrtomb
-- Looking for wcrtomb - found
-- Looking for wcscmp
-- Looking for wcscmp - found
-- Looking for wcscpy
-- Looking for wcscpy - found
-- Looking for wcslen
-- Looking for wcslen - found
-- Looking for wctomb
-- Looking for wctomb - found
-- Looking for _ctime64_s
-- Looking for _ctime64_s - not found
-- Looking for _fseeki64
-- Looking for _fseeki64 - not found
-- Looking for _get_timezone
-- Looking for _get_timezone - not found
-- Looking for _gmtime64_s
-- Looking for _gmtime64_s - not found
-- Looking for _localtime64_s
-- Looking for _localtime64_s - not found
-- Looking for _mkgmtime64
-- Looking for _mkgmtime64 - not found
-- Looking for cygwin_conv_path
-- Looking for cygwin_conv_path - not found
-- Looking for fseeko
-- Looking for fseeko - found
-- Looking for vprintf
-- Looking for vprintf - found
-- Looking for wmemcmp
-- Looking for wmemcmp - found
-- Looking for wmemcpy
-- Looking for wmemcpy - found
-- Looking for wmemmove
-- Looking for wmemmove - found
-- Performing Test HAVE_STRUCT_VFSCONF
-- Performing Test HAVE_STRUCT_VFSCONF - Failed
-- Performing Test HAVE_STRUCT_XVFSCONF
-- Performing Test HAVE_STRUCT_XVFSCONF - Failed
-- Performing Test HAVE_STRUCT_STATFS
-- Performing Test HAVE_STRUCT_STATFS - Failed
-- Performing Test HAVE_READDIR_R
-- Performing Test HAVE_READDIR_R - Success
-- Performing Test HAVE_DIRFD
-- Performing Test HAVE_DIRFD - Success
-- Performing Test HAVE_READLINKAT
-- Performing Test HAVE_READLINKAT - Success
-- Performing Test MAJOR_IN_MKDEV
-- Performing Test MAJOR_IN_MKDEV - Failed
-- Performing Test MAJOR_IN_SYSMACROS
-- Performing Test MAJOR_IN_SYSMACROS - Success
-- Looking for EFTYPE
-- Looking for EFTYPE - not found
-- Looking for EILSEQ
-- Looking for EILSEQ - found
-- Looking for D_MD_ORDER
-- Looking for D_MD_ORDER - not found
-- Performing Test HAVE_STRUCT_TM_TM_GMTOFF
-- Performing Test HAVE_STRUCT_TM_TM_GMTOFF - Success
-- Performing Test HAVE_STRUCT_TM___TM_GMTOFF
-- Performing Test HAVE_STRUCT_TM___TM_GMTOFF - Failed
-- Performing Test HAVE_STRUCT_STAT_ST_BIRTHTIME
-- Performing Test HAVE_STRUCT_STAT_ST_BIRTHTIME - Failed
-- Performing Test HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC
-- Performing Test HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC - Failed
-- Performing Test HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC
-- Performing Test HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC - Failed
-- Performing Test HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
-- Performing Test HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC - Success
-- Performing Test HAVE_STRUCT_STAT_ST_MTIME_N
-- Performing Test HAVE_STRUCT_STAT_ST_MTIME_N - Failed
-- Performing Test HAVE_STRUCT_STAT_ST_UMTIME
-- Performing Test HAVE_STRUCT_STAT_ST_UMTIME - Failed
-- Performing Test HAVE_STRUCT_STAT_ST_MTIME_USEC
-- Performing Test HAVE_STRUCT_STAT_ST_MTIME_USEC - Failed
-- Performing Test HAVE_STRUCT_STAT_ST_BLKSIZE
-- Performing Test HAVE_STRUCT_STAT_ST_BLKSIZE - Success
-- Performing Test HAVE_STRUCT_STAT_ST_FLAGS
-- Performing Test HAVE_STRUCT_STAT_ST_FLAGS - Failed
-- Performing Test HAVE_STRUCT_STATVFS_F_IOSIZE
-- Performing Test HAVE_STRUCT_STATVFS_F_IOSIZE - Failed
-- Check size of dev_t
-- Check size of dev_t - done
-- Check size of gid_t
-- Check size of gid_t - done
-- Check size of id_t
-- Check size of id_t - done
-- Check size of mode_t
-- Check size of mode_t - done
-- Check size of off_t
-- Check size of off_t - done
-- Check size of size_t
-- Check size of size_t - done
-- Check size of ssize_t
-- Check size of ssize_t - done
-- Check size of uid_t
-- Check size of uid_t - done
-- Check size of pid_t
-- Check size of pid_t - done
-- Check size of wchar_t
-- Check size of wchar_t - done
-- Checking _FILE_OFFSET_BITS for large files
-- Checking _FILE_OFFSET_BITS for large files - not needed
-- Checking support for ARCHIVE_CRYPTO_MD5_LIBC
-- Checking support for ARCHIVE_CRYPTO_MD5_LIBC -- not found
-- Checking support for ARCHIVE_CRYPTO_RMD160_LIBC
-- Checking support for ARCHIVE_CRYPTO_RMD160_LIBC -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA1_LIBC
-- Checking support for ARCHIVE_CRYPTO_SHA1_LIBC -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC
-- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC
-- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC
-- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC2
-- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC2 -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC2
-- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC2 -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC2
-- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC2 -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC3
-- Checking support for ARCHIVE_CRYPTO_SHA256_LIBC3 -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC3
-- Checking support for ARCHIVE_CRYPTO_SHA384_LIBC3 -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC3
-- Checking support for ARCHIVE_CRYPTO_SHA512_LIBC3 -- not found
-- Checking support for ARCHIVE_CRYPTO_MD5_LIBSYSTEM
-- Checking support for ARCHIVE_CRYPTO_MD5_LIBSYSTEM -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA1_LIBSYSTEM
-- Checking support for ARCHIVE_CRYPTO_SHA1_LIBSYSTEM -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA256_LIBSYSTEM
-- Checking support for ARCHIVE_CRYPTO_SHA256_LIBSYSTEM -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA384_LIBSYSTEM
-- Checking support for ARCHIVE_CRYPTO_SHA384_LIBSYSTEM -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA512_LIBSYSTEM
-- Checking support for ARCHIVE_CRYPTO_SHA512_LIBSYSTEM -- not found
-- Checking support for ARCHIVE_CRYPTO_MD5_OPENSSL
-- Checking support for ARCHIVE_CRYPTO_MD5_OPENSSL -- not found
-- Checking support for ARCHIVE_CRYPTO_RMD160_OPENSSL
-- Checking support for ARCHIVE_CRYPTO_RMD160_OPENSSL -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA1_OPENSSL
-- Checking support for ARCHIVE_CRYPTO_SHA1_OPENSSL -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA256_OPENSSL
-- Checking support for ARCHIVE_CRYPTO_SHA256_OPENSSL -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA384_OPENSSL
-- Checking support for ARCHIVE_CRYPTO_SHA384_OPENSSL -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA512_OPENSSL
-- Checking support for ARCHIVE_CRYPTO_SHA512_OPENSSL -- not found
-- Checking support for ARCHIVE_CRYPTO_MD5_LIBMD
-- Checking support for ARCHIVE_CRYPTO_MD5_LIBMD -- not found
-- Checking support for ARCHIVE_CRYPTO_RMD160_LIBMD
-- Checking support for ARCHIVE_CRYPTO_RMD160_LIBMD -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA1_LIBMD
-- Checking support for ARCHIVE_CRYPTO_SHA1_LIBMD -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA256_LIBMD
-- Checking support for ARCHIVE_CRYPTO_SHA256_LIBMD -- not found
-- Checking support for ARCHIVE_CRYPTO_SHA512_LIBMD
-- Checking support for ARCHIVE_CRYPTO_SHA512_LIBMD -- not found
-- Checking for curses support
-- Checking for curses support - Failed
-- Looking for a Fortran compiler
-- Looking for a Fortran compiler - /usr/local/bin/gfortran
-- Performing Test run_pic_test
-- Performing Test run_pic_test - Success
-- Performing Test run_inlines_hidden_test
-- Performing Test run_inlines_hidden_test - Success
-- Configuring done
-- Generating done
-- Build files have been written to: /home/conan/.conan/data/cmake/3.25.1/_/_/build/a959aa5d0f2c723fec52ed7c1424ad28487e8d7e/build/RelWithDebInfo
cmake/3.25.1: CMake command: cmake --build "/home/conan/.conan/data/cmake/3.25.1/_/_/build/a959aa5d0f2c723fec52ed7c1424ad28487e8d7e/build/RelWithDebInfo" '--' '-j2'
Scanning dependencies of target cmsys_c
Scanning dependencies of target cmsys
[ 0%] Building C object Source/kwsys/CMakeFiles/cmsys_c.dir/ProcessUNIX.c.o
[ 0%] Building C object Source/kwsys/CMakeFiles/cmsys.dir/ProcessUNIX.c.o
[ 0%] Building C object Source/kwsys/CMakeFiles/cmsys_c.dir/Base64.c.o
[ 0%] Building C object Source/kwsys/CMakeFiles/cmsys.dir/Base64.c.o
[ 0%] Building C object Source/kwsys/CMakeFiles/cmsys_c.dir/EncodingC.c.o
[ 0%] Building C object Source/kwsys/CMakeFiles/cmsys.dir/EncodingC.c.o
[ 0%] Building C object Source/kwsys/CMakeFiles/cmsys_c.dir/MD5.c.o
[ 0%] Building C object Source/kwsys/CMakeFiles/cmsys.dir/MD5.c.o
[ 0%] Building C object Source/kwsys/CMakeFiles/cmsys_c.dir/Terminal.c.o
[ 0%] Building C object Source/kwsys/CMakeFiles/cmsys.dir/Terminal.c.o
[ 0%] Building C object Source/kwsys/CMakeFiles/cmsys_c.dir/System.c.o
[ 0%] Building C object Source/kwsys/CMakeFiles/cmsys.dir/System.c.o
[ 0%] Building C object Source/kwsys/CMakeFiles/cmsys_c.dir/String.c.o
[ 0%] Linking C static library libcmsys_c.a
[ 0%] Built target cmsys_c
[ 0%] Building C object Source/kwsys/CMakeFiles/cmsys.dir/String.c.o
Scanning dependencies of target cmstd
[ 0%] Building CXX object Utilities/std/CMakeFiles/cmstd.dir/cm/bits/fs_path.cxx.o
[ 0%] Building CXX object Source/kwsys/CMakeFiles/cmsys.dir/Directory.cxx.o
[ 1%] Building CXX object Source/kwsys/CMakeFiles/cmsys.dir/DynamicLoader.cxx.o
[ 1%] Building CXX object Source/kwsys/CMakeFiles/cmsys.dir/EncodingCXX.cxx.o
[ 1%] Building CXX object Source/kwsys/CMakeFiles/cmsys.dir/Glob.cxx.o
[ 2%] Building CXX object Utilities/std/CMakeFiles/cmstd.dir/cm/bits/string_view.cxx.o
[ 2%] Linking CXX static library libcmstd.a
[ 2%] Built target cmstd
Scanning dependencies of target kwiml_test
[ 3%] Building C object Utilities/KWIML/test/CMakeFiles/kwiml_test.dir/test.c.o
[ 3%] Building C object Utilities/KWIML/test/CMakeFiles/kwiml_test.dir/test_abi_C.c.o
[ 3%] Building C object Utilities/KWIML/test/CMakeFiles/kwiml_test.dir/test_int_C.c.o
[ 3%] Building C object Utilities/KWIML/test/CMakeFiles/kwiml_test.dir/test_include_C.c.o
[ 3%] Building CXX object Utilities/KWIML/test/CMakeFiles/kwiml_test.dir/test_abi_CXX.cxx.o
[ 3%] Building CXX object Utilities/KWIML/test/CMakeFiles/kwiml_test.dir/test_int_CXX.cxx.o
[ 3%] Building CXX object Source/kwsys/CMakeFiles/cmsys.dir/RegularExpression.cxx.o
[ 3%] Building CXX object Utilities/KWIML/test/CMakeFiles/kwiml_test.dir/test_include_CXX.cxx.o
[ 3%] Linking CXX executable kwiml_test
[ 3%] Built target kwiml_test
Scanning dependencies of target cmlibrhash
[ 3%] Building C object Utilities/cmlibrhash/CMakeFiles/cmlibrhash.dir/librhash/algorithms.c.o
[ 3%] Building CXX object Source/kwsys/CMakeFiles/cmsys.dir/SystemTools.cxx.o
[ 3%] Building C object Utilities/cmlibrhash/CMakeFiles/cmlibrhash.dir/librhash/byte_order.c.o
[ 3%] Building C object Utilities/cmlibrhash/CMakeFiles/cmlibrhash.dir/librhash/hex.c.o
[ 3%] Building C object Utilities/cmlibrhash/CMakeFiles/cmlibrhash.dir/librhash/md5.c.o
[ 3%] Building C object Utilities/cmlibrhash/CMakeFiles/cmlibrhash.dir/librhash/rhash.c.o
[ 3%] Building C object Utilities/cmlibrhash/CMakeFiles/cmlibrhash.dir/librhash/sha1.c.o
[ 3%] Building C object Utilities/cmlibrhash/CMakeFiles/cmlibrhash.dir/librhash/sha256.c.o
[ 4%] Building C object Utilities/cmlibrhash/CMakeFiles/cmlibrhash.dir/librhash/sha3.c.o
[ 4%] Building C object Utilities/cmlibrhash/CMakeFiles/cmlibrhash.dir/librhash/sha512.c.o
[ 4%] Linking C static library libcmlibrhash.a
[ 4%] Built target cmlibrhash
Scanning dependencies of target cmzlib
[ 4%] Building C object Utilities/cmzlib/CMakeFiles/cmzlib.dir/adler32.c.o
[ 5%] Building C object Utilities/cmzlib/CMakeFiles/cmzlib.dir/compress.c.o
[ 5%] Building C object Utilities/cmzlib/CMakeFiles/cmzlib.dir/crc32.c.o
[ 5%] Building C object Utilities/cmzlib/CMakeFiles/cmzlib.dir/deflate.c.o
[ 5%] Building C object Utilities/cmzlib/CMakeFiles/cmzlib.dir/gzclose.c.o
[ 5%] Building C object Utilities/cmzlib/CMakeFiles/cmzlib.dir/gzlib.c.o
[ 5%] Building C object Utilities/cmzlib/CMakeFiles/cmzlib.dir/gzread.c.o
[ 5%] Building C object Utilities/cmzlib/CMakeFiles/cmzlib.dir/gzwrite.c.o
[ 5%] Building C object Utilities/cmzlib/CMakeFiles/cmzlib.dir/inffast.c.o
[ 5%] Building C object Utilities/cmzlib/CMakeFiles/cmzlib.dir/inflate.c.o
[ 5%] Building C object Utilities/cmzlib/CMakeFiles/cmzlib.dir/inftrees.c.o
[ 6%] Building C object Utilities/cmzlib/CMakeFiles/cmzlib.dir/trees.c.o
[ 6%] Building C object Utilities/cmzlib/CMakeFiles/cmzlib.dir/uncompr.c.o
[ 6%] Building C object Utilities/cmzlib/CMakeFiles/cmzlib.dir/zutil.c.o
[ 6%] Building CXX object Source/kwsys/CMakeFiles/cmsys.dir/CommandLineArguments.cxx.o
[ 6%] Linking C static library libcmzlib.a
[ 6%] Built target cmzlib
Scanning dependencies of target cmnghttp2
[ 6%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_buf.c.o
[ 6%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_callbacks.c.o
[ 6%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_debug.c.o
[ 7%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_frame.c.o
[ 7%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_hd.c.o
[ 7%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_hd_huffman.c.o
[ 7%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_hd_huffman_data.c.o
[ 7%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_helper.c.o
[ 7%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_http.c.o
[ 7%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_map.c.o
[ 7%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_mem.c.o
[ 7%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_npn.c.o
[ 7%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_option.c.o
[ 7%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_outbound_item.c.o
[ 8%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_pq.c.o
[ 8%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_priority_spec.c.o
[ 8%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_queue.c.o
[ 8%] Building CXX object Source/kwsys/CMakeFiles/cmsys.dir/FStream.cxx.o
[ 8%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_rcbuf.c.o
[ 8%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_session.c.o
[ 8%] Building CXX object Source/kwsys/CMakeFiles/cmsys.dir/SystemInformation.cxx.o
[ 8%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_stream.c.o
[ 8%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_submit.c.o
[ 8%] Building C object Utilities/cmnghttp2/CMakeFiles/cmnghttp2.dir/lib/nghttp2_version.c.o
[ 8%] Linking C static library libcmnghttp2.a
[ 8%] Built target cmnghttp2
[ 8%] Building CXX object Source/kwsys/CMakeFiles/cmsys.dir/Status.cxx.o
Scanning dependencies of target cmexpat
[ 8%] Building C object Utilities/cmexpat/CMakeFiles/cmexpat.dir/lib/xmlparse.c.o
[ 8%] Linking CXX static library libcmsys.a
[ 8%] Built target cmsys
Scanning dependencies of target cmbzip2
[ 8%] Building C object Utilities/cmbzip2/CMakeFiles/cmbzip2.dir/blocksort.c.o
[ 8%] Building C object Utilities/cmbzip2/CMakeFiles/cmbzip2.dir/huffman.c.o
[ 8%] Building C object Utilities/cmbzip2/CMakeFiles/cmbzip2.dir/crctable.c.o
[ 8%] Building C object Utilities/cmexpat/CMakeFiles/cmexpat.dir/lib/xmlrole.c.o
[ 9%] Building C object Utilities/cmbzip2/CMakeFiles/cmbzip2.dir/randtable.c.o
[ 9%] Building C object Utilities/cmbzip2/CMakeFiles/cmbzip2.dir/compress.c.o
[ 9%] Building C object Utilities/cmexpat/CMakeFiles/cmexpat.dir/lib/xmltok.c.o
[ 9%] Building C object Utilities/cmbzip2/CMakeFiles/cmbzip2.dir/decompress.c.o
[ 9%] Building C object Utilities/cmbzip2/CMakeFiles/cmbzip2.dir/bzlib.c.o
[ 10%] Building C object Utilities/cmexpat/CMakeFiles/cmexpat.dir/lib/xmltok_impl.c.o
[ 10%] Building C object Utilities/cmexpat/CMakeFiles/cmexpat.dir/lib/xmltok_ns.c.o
[ 10%] Linking C static library libcmexpat.a
[ 10%] Built target cmexpat
Scanning dependencies of target cmzstd
[ 10%] Building C object Utilities/cmzstd/CMakeFiles/cmzstd.dir/lib/common/entropy_common.c.o
[ 10%] Building C object Utilities/cmzstd/CMakeFiles/cmzstd.dir/lib/common/error_private.c.o
[ 10%] Building C object Utilities/cmzstd/CMakeFiles/cmzstd.dir/lib/common/fse_decompress.c.o
[ 10%] Linking C static library libcmbzip2.a
[ 10%] Built target cmbzip2
[ 10%] Building C object Utilities/cmzstd/CMakeFiles/cmzstd.dir/lib/common/pool.c.o
[ 10%] Building C object Utilities/cmzstd/CMakeFiles/cmzstd.dir/lib/common/threading.c.o
[ 10%] Building C object Utilities/cmzstd/CMakeFiles/cmzstd.dir/lib/common/xxhash.c.o
[ 10%] Building C object Utilities/cmzstd/CMakeFiles/cmzstd.dir/lib/common/zstd_common.c.o
[ 11%] Building C object Utilities/cmzstd/CMakeFiles/cmzstd.dir/lib/compress/fse_compress.c.o
Scanning dependencies of target cmliblzma
[ 11%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/common/tuklib_cpucores.c.o
[ 11%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/check/check.c.o
[ 11%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/check/crc32_fast.c.o
[ 11%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/check/crc32_table.c.o
[ 11%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/check/crc64_fast.c.o
[ 11%] Building C object Utilities/cmzstd/CMakeFiles/cmzstd.dir/lib/compress/hist.c.o
[ 11%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/check/crc64_table.c.o
[ 11%] Building C object Utilities/cmzstd/CMakeFiles/cmzstd.dir/lib/compress/huf_compress.c.o
[ 11%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/check/sha256.c.o
[ 12%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/alone_decoder.c.o
[ 12%] Building C object Utilities/cmzstd/CMakeFiles/cmzstd.dir/lib/compress/zstd_compress_literals.c.o
[ 12%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/alone_encoder.c.o
[ 12%] Building C object Utilities/cmzstd/CMakeFiles/cmzstd.dir/lib/compress/zstd_compress.c.o
[ 12%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/auto_decoder.c.o
[ 12%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/block_buffer_decoder.c.o
[ 12%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/block_buffer_encoder.c.o
[ 12%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/block_decoder.c.o
[ 12%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/block_encoder.c.o
[ 12%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/block_header_decoder.c.o
[ 12%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/block_header_encoder.c.o
[ 12%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/block_util.c.o
[ 13%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/common.c.o
[ 13%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/easy_buffer_encoder.c.o
[ 13%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/easy_decoder_memusage.c.o
[ 13%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/easy_encoder.c.o
[ 13%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/easy_encoder_memusage.c.o
[ 13%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/easy_preset.c.o
[ 13%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/filter_buffer_decoder.c.o
[ 13%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/filter_buffer_encoder.c.o
[ 13%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/filter_common.c.o
[ 13%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/filter_decoder.c.o
[ 14%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/filter_encoder.c.o
[ 14%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/filter_flags_decoder.c.o
[ 14%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/filter_flags_encoder.c.o
[ 14%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/hardware_cputhreads.c.o
[ 14%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/index.c.o
[ 14%] Building C object Utilities/cmzstd/CMakeFiles/cmzstd.dir/lib/compress/zstd_compress_sequences.c.o
[ 14%] Building C object Utilities/cmzstd/CMakeFiles/cmzstd.dir/lib/compress/zstd_compress_superblock.c.o
[ 14%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/index_decoder.c.o
[ 14%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/index_encoder.c.o
[ 14%] Building C object Utilities/cmzstd/CMakeFiles/cmzstd.dir/lib/compress/zstd_double_fast.c.o
[ 14%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/index_hash.c.o
[ 14%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/outqueue.c.o
[ 14%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/stream_buffer_decoder.c.o
[ 14%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/stream_buffer_encoder.c.o
[ 15%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/stream_decoder.c.o
[ 15%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/stream_encoder.c.o
[ 15%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/stream_encoder_mt.c.o
[ 15%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/stream_flags_common.c.o
[ 15%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/stream_flags_decoder.c.o
[ 15%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/stream_flags_encoder.c.o
[ 15%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/vli_decoder.c.o
[ 15%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/vli_encoder.c.o
[ 15%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/common/vli_size.c.o
[ 15%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/delta/delta_common.c.o
[ 16%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/delta/delta_decoder.c.o
[ 16%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/delta/delta_encoder.c.o
[ 16%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/lz/lz_decoder.c.o
[ 16%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/lz/lz_encoder.c.o
[ 16%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/lz/lz_encoder_mf.c.o
[ 16%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/lzma/fastpos_table.c.o
[ 16%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/lzma/lzma2_decoder.c.o
[ 16%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/lzma/lzma2_encoder.c.o
[ 16%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/lzma/lzma_decoder.c.o
[ 16%] Building C object Utilities/cmzstd/CMakeFiles/cmzstd.dir/lib/compress/zstd_fast.c.o
[ 16%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/lzma/lzma_encoder.c.o
[ 16%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/lzma/lzma_encoder_optimum_fast.c.o
[ 17%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/lzma/lzma_encoder_optimum_normal.c.o
[ 17%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/lzma/lzma_encoder_presets.c.o
[ 17%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/rangecoder/price_table.c.o
[ 17%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/simple/arm.c.o
[ 17%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/simple/armthumb.c.o
[ 17%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/simple/ia64.c.o
[ 17%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/simple/powerpc.c.o
[ 17%] Building C object Utilities/cmliblzma/CMakeFiles/cmliblzma.dir/liblzma/simple/simple_coder.c.o