CMakeOutput.log
113 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
The system is: Linux - 5.4.0-150-generic - x86_64
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /usr/bin/c++
Build flags:
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 "/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out"
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /usr/bin/cc
Build flags:
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 "/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/3.10.2/CompilerIdC/a.out"
Determining if the CXX compiler works passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_789f3/fast"
/usr/bin/make -f CMakeFiles/cmTC_789f3.dir/build.make CMakeFiles/cmTC_789f3.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_789f3.dir/testCXXCompiler.cxx.o
/usr/bin/c++ -fPIE -o CMakeFiles/cmTC_789f3.dir/testCXXCompiler.cxx.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_789f3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_789f3.dir/link.txt --verbose=1
/usr/bin/c++ CMakeFiles/cmTC_789f3.dir/testCXXCompiler.cxx.o -o cmTC_789f3
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_6a3ad/fast"
/usr/bin/make -f CMakeFiles/cmTC_6a3ad.dir/build.make CMakeFiles/cmTC_6a3ad.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_6a3ad.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/c++ -fPIE -o CMakeFiles/cmTC_6a3ad.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTC_6a3ad
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6a3ad.dir/link.txt --verbose=1
/usr/bin/c++ -v CMakeFiles/cmTC_6a3ad.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_6a3ad
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --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 --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6a3ad' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccXbsdma.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 --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_6a3ad /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../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/7/../../.. CMakeFiles/cmTC_6a3ad.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6a3ad' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_6a3ad/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_6a3ad.dir/build.make CMakeFiles/cmTC_6a3ad.dir/build]
ignore line: [make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp']
ignore line: [Building CXX object CMakeFiles/cmTC_6a3ad.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/c++ -fPIE -o CMakeFiles/cmTC_6a3ad.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Linking CXX executable cmTC_6a3ad]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6a3ad.dir/link.txt --verbose=1]
ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_6a3ad.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_6a3ad ]
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/7/lto-wrapper]
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none]
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --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 --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --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 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6a3ad' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccXbsdma.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 --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_6a3ad /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../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/7/../../.. CMakeFiles/cmTC_6a3ad.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o]
arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccXbsdma.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 [--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 [-dynamic-linker] ==> ignore
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-pie] ==> ignore
arg [-znow] ==> ignore
arg [-zrelro] ==> ignore
arg [-o] ==> ignore
arg [cmTC_6a3ad] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../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/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..]
arg [CMakeFiles/cmTC_6a3ad.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/7/crtendS.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> ignore
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../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/7/../../..] ==> [/usr/lib]
implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/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: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_a5c65/fast"
/usr/bin/make -f CMakeFiles/cmTC_a5c65.dir/build.make CMakeFiles/cmTC_a5c65.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_a5c65.dir/feature_tests.cxx.o
/usr/bin/c++ -fPIE -std=c++1z -o CMakeFiles/cmTC_a5c65.dir/feature_tests.cxx.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_a5c65
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a5c65.dir/link.txt --verbose=1
/usr/bin/c++ CMakeFiles/cmTC_a5c65.dir/feature_tests.cxx.o -o cmTC_a5c65
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/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: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_077f3/fast"
/usr/bin/make -f CMakeFiles/cmTC_077f3.dir/build.make CMakeFiles/cmTC_077f3.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_077f3.dir/feature_tests.cxx.o
/usr/bin/c++ -fPIE -std=c++14 -o CMakeFiles/cmTC_077f3.dir/feature_tests.cxx.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_077f3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_077f3.dir/link.txt --verbose=1
/usr/bin/c++ CMakeFiles/cmTC_077f3.dir/feature_tests.cxx.o -o cmTC_077f3
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/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: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_12485/fast"
/usr/bin/make -f CMakeFiles/cmTC_12485.dir/build.make CMakeFiles/cmTC_12485.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_12485.dir/feature_tests.cxx.o
/usr/bin/c++ -fPIE -std=c++11 -o CMakeFiles/cmTC_12485.dir/feature_tests.cxx.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_12485
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_12485.dir/link.txt --verbose=1
/usr/bin/c++ CMakeFiles/cmTC_12485.dir/feature_tests.cxx.o -o cmTC_12485
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/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: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_ef1ca/fast"
/usr/bin/make -f CMakeFiles/cmTC_ef1ca.dir/build.make CMakeFiles/cmTC_ef1ca.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_ef1ca.dir/feature_tests.cxx.o
/usr/bin/c++ -fPIE -std=c++98 -o CMakeFiles/cmTC_ef1ca.dir/feature_tests.cxx.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_ef1ca
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ef1ca.dir/link.txt --verbose=1
/usr/bin/c++ CMakeFiles/cmTC_ef1ca.dir/feature_tests.cxx.o -o cmTC_ef1ca
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
Feature record: CXX_FEATURE:0cxx_alias_templates
Feature record: CXX_FEATURE:0cxx_alignas
Feature record: CXX_FEATURE:0cxx_alignof
Feature record: CXX_FEATURE:0cxx_attributes
Feature record: CXX_FEATURE:0cxx_attribute_deprecated
Feature record: CXX_FEATURE:0cxx_auto_type
Feature record: CXX_FEATURE:0cxx_binary_literals
Feature record: CXX_FEATURE:0cxx_constexpr
Feature record: CXX_FEATURE:0cxx_contextual_conversions
Feature record: CXX_FEATURE:0cxx_decltype
Feature record: CXX_FEATURE:0cxx_decltype_auto
Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types
Feature record: CXX_FEATURE:0cxx_default_function_template_args
Feature record: CXX_FEATURE:0cxx_defaulted_functions
Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers
Feature record: CXX_FEATURE:0cxx_delegating_constructors
Feature record: CXX_FEATURE:0cxx_deleted_functions
Feature record: CXX_FEATURE:0cxx_digit_separators
Feature record: CXX_FEATURE:0cxx_enum_forward_declarations
Feature record: CXX_FEATURE:0cxx_explicit_conversions
Feature record: CXX_FEATURE:0cxx_extended_friend_declarations
Feature record: CXX_FEATURE:0cxx_extern_templates
Feature record: CXX_FEATURE:0cxx_final
Feature record: CXX_FEATURE:0cxx_func_identifier
Feature record: CXX_FEATURE:0cxx_generalized_initializers
Feature record: CXX_FEATURE:0cxx_generic_lambdas
Feature record: CXX_FEATURE:0cxx_inheriting_constructors
Feature record: CXX_FEATURE:0cxx_inline_namespaces
Feature record: CXX_FEATURE:0cxx_lambdas
Feature record: CXX_FEATURE:0cxx_lambda_init_captures
Feature record: CXX_FEATURE:0cxx_local_type_template_args
Feature record: CXX_FEATURE:0cxx_long_long_type
Feature record: CXX_FEATURE:0cxx_noexcept
Feature record: CXX_FEATURE:0cxx_nonstatic_member_init
Feature record: CXX_FEATURE:0cxx_nullptr
Feature record: CXX_FEATURE:0cxx_override
Feature record: CXX_FEATURE:0cxx_range_for
Feature record: CXX_FEATURE:0cxx_raw_string_literals
Feature record: CXX_FEATURE:0cxx_reference_qualified_functions
Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
Feature record: CXX_FEATURE:0cxx_return_type_deduction
Feature record: CXX_FEATURE:0cxx_right_angle_brackets
Feature record: CXX_FEATURE:0cxx_rvalue_references
Feature record: CXX_FEATURE:0cxx_sizeof_member
Feature record: CXX_FEATURE:0cxx_static_assert
Feature record: CXX_FEATURE:0cxx_strong_enums
Feature record: CXX_FEATURE:1cxx_template_template_parameters
Feature record: CXX_FEATURE:0cxx_thread_local
Feature record: CXX_FEATURE:0cxx_trailing_return_types
Feature record: CXX_FEATURE:0cxx_unicode_literals
Feature record: CXX_FEATURE:0cxx_uniform_initialization
Feature record: CXX_FEATURE:0cxx_unrestricted_unions
Feature record: CXX_FEATURE:0cxx_user_literals
Feature record: CXX_FEATURE:0cxx_variable_templates
Feature record: CXX_FEATURE:0cxx_variadic_macros
Feature record: CXX_FEATURE:0cxx_variadic_templates
Determining if the C compiler works passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_c5450/fast"
/usr/bin/make -f CMakeFiles/cmTC_c5450.dir/build.make CMakeFiles/cmTC_c5450.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c5450.dir/testCCompiler.c.o
/usr/bin/cc -fPIE -o CMakeFiles/cmTC_c5450.dir/testCCompiler.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_c5450
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c5450.dir/link.txt --verbose=1
/usr/bin/cc CMakeFiles/cmTC_c5450.dir/testCCompiler.c.o -o cmTC_c5450
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Detecting C compiler ABI info compiled with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_f0724/fast"
/usr/bin/make -f CMakeFiles/cmTC_f0724.dir/build.make CMakeFiles/cmTC_f0724.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f0724.dir/CMakeCCompilerABI.c.o
/usr/bin/cc -fPIE -o CMakeFiles/cmTC_f0724.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c
Linking C executable cmTC_f0724
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f0724.dir/link.txt --verbose=1
/usr/bin/cc -v CMakeFiles/cmTC_f0724.dir/CMakeCCompilerABI.c.o -o cmTC_f0724
Using built-in specs.
COLLECT_GCC=/usr/bin/cc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --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 --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f0724' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/cc2WjGAs.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 --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_f0724 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../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/7/../../.. CMakeFiles/cmTC_f0724.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f0724' '-mtune=generic' '-march=x86-64'
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_f0724/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_f0724.dir/build.make CMakeFiles/cmTC_f0724.dir/build]
ignore line: [make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp']
ignore line: [Building C object CMakeFiles/cmTC_f0724.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/cc -fPIE -o CMakeFiles/cmTC_f0724.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c]
ignore line: [Linking C executable cmTC_f0724]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f0724.dir/link.txt --verbose=1]
ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_f0724.dir/CMakeCCompilerABI.c.o -o cmTC_f0724 ]
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/7/lto-wrapper]
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none]
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --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 --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --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 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f0724' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/cc2WjGAs.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 --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_f0724 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../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/7/../../.. CMakeFiles/cmTC_f0724.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o]
arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/cc2WjGAs.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 [--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 [-dynamic-linker] ==> ignore
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-pie] ==> ignore
arg [-znow] ==> ignore
arg [-zrelro] ==> ignore
arg [-o] ==> ignore
arg [cmTC_f0724] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../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/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..]
arg [CMakeFiles/cmTC_f0724.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [--push-state] ==> ignore
arg [--as-needed] ==> ignore
arg [-lgcc_s] ==> lib [gcc_s]
arg [--pop-state] ==> ignore
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [--push-state] ==> ignore
arg [--as-needed] ==> ignore
arg [-lgcc_s] ==> lib [gcc_s]
arg [--pop-state] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> ignore
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../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/7/../../..] ==> [/usr/lib]
implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/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: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_f5452/fast"
/usr/bin/make -f CMakeFiles/cmTC_f5452.dir/build.make CMakeFiles/cmTC_f5452.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f5452.dir/feature_tests.c.o
/usr/bin/cc -fPIE -std=c11 -o CMakeFiles/cmTC_f5452.dir/feature_tests.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_f5452
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f5452.dir/link.txt --verbose=1
/usr/bin/cc CMakeFiles/cmTC_f5452.dir/feature_tests.c.o -o cmTC_f5452
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/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: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_00c5b/fast"
/usr/bin/make -f CMakeFiles/cmTC_00c5b.dir/build.make CMakeFiles/cmTC_00c5b.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_00c5b.dir/feature_tests.c.o
/usr/bin/cc -fPIE -std=c99 -o CMakeFiles/cmTC_00c5b.dir/feature_tests.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_00c5b
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_00c5b.dir/link.txt --verbose=1
/usr/bin/cc CMakeFiles/cmTC_00c5b.dir/feature_tests.c.o -o cmTC_00c5b
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/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: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_acb01/fast"
/usr/bin/make -f CMakeFiles/cmTC_acb01.dir/build.make CMakeFiles/cmTC_acb01.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_acb01.dir/feature_tests.c.o
/usr/bin/cc -fPIE -std=c90 -o CMakeFiles/cmTC_acb01.dir/feature_tests.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_acb01
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_acb01.dir/link.txt --verbose=1
/usr/bin/cc CMakeFiles/cmTC_acb01.dir/feature_tests.c.o -o cmTC_acb01
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/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 include file pthread.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_2092c/fast"
/usr/bin/make -f CMakeFiles/cmTC_2092c.dir/build.make CMakeFiles/cmTC_2092c.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2092c.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_2092c.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_2092c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2092c.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_2092c.dir/CheckIncludeFile.c.o -o cmTC_2092c
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the posix_memalign exist passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_795fa/fast"
/usr/bin/make -f CMakeFiles/cmTC_795fa.dir/build.make CMakeFiles/cmTC_795fa.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_795fa.dir/CheckSymbolExists.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_795fa.dir/CheckSymbolExists.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_795fa
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_795fa.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_795fa.dir/CheckSymbolExists.c.o -o cmTC_795fa
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
File /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <stdlib.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef posix_memalign
return ((int*)(&posix_memalign))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the include file malloc.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_aa5e8/fast"
/usr/bin/make -f CMakeFiles/cmTC_aa5e8.dir/build.make CMakeFiles/cmTC_aa5e8.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_aa5e8.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_aa5e8.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_aa5e8
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_aa5e8.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_aa5e8.dir/CheckIncludeFile.c.o -o cmTC_aa5e8
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the memalign exist passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_e0741/fast"
/usr/bin/make -f CMakeFiles/cmTC_e0741.dir/build.make CMakeFiles/cmTC_e0741.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e0741.dir/CheckSymbolExists.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_e0741.dir/CheckSymbolExists.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_e0741
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e0741.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_e0741.dir/CheckSymbolExists.c.o -o cmTC_e0741
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
File /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <malloc.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef memalign
return ((int*)(&memalign))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the include file sys/types.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_593c5/fast"
/usr/bin/make -f CMakeFiles/cmTC_593c5.dir/build.make CMakeFiles/cmTC_593c5.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_593c5.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_593c5.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_593c5
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_593c5.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_593c5.dir/CheckIncludeFile.c.o -o cmTC_593c5
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file stdint.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_84fdf/fast"
/usr/bin/make -f CMakeFiles/cmTC_84fdf.dir/build.make CMakeFiles/cmTC_84fdf.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_84fdf.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_84fdf.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_84fdf
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_84fdf.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_84fdf.dir/CheckIncludeFile.c.o -o cmTC_84fdf
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file stddef.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_65e7d/fast"
/usr/bin/make -f CMakeFiles/cmTC_65e7d.dir/build.make CMakeFiles/cmTC_65e7d.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_65e7d.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_65e7d.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_65e7d
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_65e7d.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_65e7d.dir/CheckIncludeFile.c.o -o cmTC_65e7d
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining size of unsigned short passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_b3834/fast"
/usr/bin/make -f CMakeFiles/cmTC_b3834.dir/build.make CMakeFiles/cmTC_b3834.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b3834.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_b3834.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CheckTypeSize/CMAKE_SIZEOF_UNSIGNED_SHORT.c
Linking C executable cmTC_b3834
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b3834.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_b3834.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o -o cmTC_b3834
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the system is big endian passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_fe542/fast"
/usr/bin/make -f CMakeFiles/cmTC_fe542.dir/build.make CMakeFiles/cmTC_fe542.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_fe542.dir/TestEndianess.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_fe542.dir/TestEndianess.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/TestEndianess.c
Linking C executable cmTC_fe542
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fe542.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_fe542.dir/TestEndianess.c.o -o cmTC_fe542
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
TestEndianess.c:
/* A 16 bit integer is required. */
typedef unsigned short cmakeint16;
/* On a little endian machine, these 16bit ints will give "THIS IS LITTLE ENDIAN."
On a big endian machine the characters will be exchanged pairwise. */
const cmakeint16 info_little[] = {0x4854, 0x5349, 0x4920, 0x2053, 0x494c, 0x5454, 0x454c, 0x4520, 0x444e, 0x4149, 0x2e4e, 0x0000};
/* on a big endian machine, these 16bit ints will give "THIS IS BIG ENDIAN."
On a little endian machine the characters will be exchanged pairwise. */
const cmakeint16 info_big[] = {0x5448, 0x4953, 0x2049, 0x5320, 0x4249, 0x4720, 0x454e, 0x4449, 0x414e, 0x2e2e, 0x0000};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
int require = 0;
require += info_little[argc];
require += info_big[argc];
(void)argv;
return require;
}
Determining if the system is big endian passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_68f05/fast"
/usr/bin/make -f CMakeFiles/cmTC_68f05.dir/build.make CMakeFiles/cmTC_68f05.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_68f05.dir/TestEndianess.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_68f05.dir/TestEndianess.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/TestEndianess.c
Linking C executable cmTC_68f05
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_68f05.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_68f05.dir/TestEndianess.c.o -o cmTC_68f05
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
TestEndianess.c:
/* A 16 bit integer is required. */
typedef unsigned short cmakeint16;
/* On a little endian machine, these 16bit ints will give "THIS IS LITTLE ENDIAN."
On a big endian machine the characters will be exchanged pairwise. */
const cmakeint16 info_little[] = {0x4854, 0x5349, 0x4920, 0x2053, 0x494c, 0x5454, 0x454c, 0x4520, 0x444e, 0x4149, 0x2e4e, 0x0000};
/* on a big endian machine, these 16bit ints will give "THIS IS BIG ENDIAN."
On a little endian machine the characters will be exchanged pairwise. */
const cmakeint16 info_big[] = {0x5448, 0x4953, 0x2049, 0x5320, 0x4249, 0x4720, 0x454e, 0x4449, 0x414e, 0x2e2e, 0x0000};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
int require = 0;
require += info_little[argc];
require += info_big[argc];
(void)argv;
return require;
}
Determining if the include file string.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_bea2f/fast"
/usr/bin/make -f CMakeFiles/cmTC_bea2f.dir/build.make CMakeFiles/cmTC_bea2f.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_bea2f.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_bea2f.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_bea2f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bea2f.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_bea2f.dir/CheckIncludeFile.c.o -o cmTC_bea2f
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file memory.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_aeffb/fast"
/usr/bin/make -f CMakeFiles/cmTC_aeffb.dir/build.make CMakeFiles/cmTC_aeffb.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_aeffb.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_aeffb.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_aeffb
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_aeffb.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_aeffb.dir/CheckIncludeFile.c.o -o cmTC_aeffb
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file stdlib.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_641d9/fast"
/usr/bin/make -f CMakeFiles/cmTC_641d9.dir/build.make CMakeFiles/cmTC_641d9.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_641d9.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_641d9.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_641d9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_641d9.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_641d9.dir/CheckIncludeFile.c.o -o cmTC_641d9
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file stdio.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_a578b/fast"
/usr/bin/make -f CMakeFiles/cmTC_a578b.dir/build.make CMakeFiles/cmTC_a578b.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a578b.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_a578b.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_a578b
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a578b.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_a578b.dir/CheckIncludeFile.c.o -o cmTC_a578b
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file math.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_f32c7/fast"
/usr/bin/make -f CMakeFiles/cmTC_f32c7.dir/build.make CMakeFiles/cmTC_f32c7.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f32c7.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_f32c7.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_f32c7
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f32c7.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_f32c7.dir/CheckIncludeFile.c.o -o cmTC_f32c7
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file float.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_e52ab/fast"
/usr/bin/make -f CMakeFiles/cmTC_e52ab.dir/build.make CMakeFiles/cmTC_e52ab.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e52ab.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_e52ab.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_e52ab
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e52ab.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_e52ab.dir/CheckIncludeFile.c.o -o cmTC_e52ab
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file time.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_167c0/fast"
/usr/bin/make -f CMakeFiles/cmTC_167c0.dir/build.make CMakeFiles/cmTC_167c0.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_167c0.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_167c0.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_167c0
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_167c0.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_167c0.dir/CheckIncludeFile.c.o -o cmTC_167c0
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file stdarg.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_6310f/fast"
/usr/bin/make -f CMakeFiles/cmTC_6310f.dir/build.make CMakeFiles/cmTC_6310f.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_6310f.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_6310f.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_6310f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6310f.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_6310f.dir/CheckIncludeFile.c.o -o cmTC_6310f
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file ctype.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_07d4f/fast"
/usr/bin/make -f CMakeFiles/cmTC_07d4f.dir/build.make CMakeFiles/cmTC_07d4f.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_07d4f.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_07d4f.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_07d4f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_07d4f.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_07d4f.dir/CheckIncludeFile.c.o -o cmTC_07d4f
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file assert.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_7e007/fast"
/usr/bin/make -f CMakeFiles/cmTC_7e007.dir/build.make CMakeFiles/cmTC_7e007.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_7e007.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_7e007.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_7e007
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7e007.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_7e007.dir/CheckIncludeFile.c.o -o cmTC_7e007
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file stdint.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_fc8ae/fast"
/usr/bin/make -f CMakeFiles/cmTC_fc8ae.dir/build.make CMakeFiles/cmTC_fc8ae.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_fc8ae.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_fc8ae.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_fc8ae
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fc8ae.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_fc8ae.dir/CheckIncludeFile.c.o -o cmTC_fc8ae
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file inttypes.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_bc2aa/fast"
/usr/bin/make -f CMakeFiles/cmTC_bc2aa.dir/build.make CMakeFiles/cmTC_bc2aa.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_bc2aa.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_bc2aa.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_bc2aa
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bc2aa.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_bc2aa.dir/CheckIncludeFile.c.o -o cmTC_bc2aa
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file strings.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_db39a/fast"
/usr/bin/make -f CMakeFiles/cmTC_db39a.dir/build.make CMakeFiles/cmTC_db39a.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_db39a.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_db39a.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_db39a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_db39a.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_db39a.dir/CheckIncludeFile.c.o -o cmTC_db39a
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file sys/stat.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_a787a/fast"
/usr/bin/make -f CMakeFiles/cmTC_a787a.dir/build.make CMakeFiles/cmTC_a787a.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a787a.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_a787a.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_a787a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a787a.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_a787a.dir/CheckIncludeFile.c.o -o cmTC_a787a
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file unistd.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_0434c/fast"
/usr/bin/make -f CMakeFiles/cmTC_0434c.dir/build.make CMakeFiles/cmTC_0434c.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0434c.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_0434c.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_0434c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0434c.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_0434c.dir/CheckIncludeFile.c.o -o cmTC_0434c
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if files malloc.h exist passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_6a059/fast"
/usr/bin/make -f CMakeFiles/cmTC_6a059.dir/build.make CMakeFiles/cmTC_6a059.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_6a059.dir/CheckIncludeFiles.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_6a059.dir/CheckIncludeFiles.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_6a059
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6a059.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_6a059.dir/CheckIncludeFiles.c.o -o cmTC_6a059
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the posix_memalign exist passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_8cef1/fast"
/usr/bin/make -f CMakeFiles/cmTC_8cef1.dir/build.make CMakeFiles/cmTC_8cef1.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8cef1.dir/CheckSymbolExists.c.o
/usr/bin/cc -D_POSIX_C_SOURCE=200112L -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_8cef1.dir/CheckSymbolExists.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_8cef1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8cef1.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_8cef1.dir/CheckSymbolExists.c.o -o cmTC_8cef1
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
File /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <stdlib.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef posix_memalign
return ((int*)(&posix_memalign))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the memalign exist passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_7008c/fast"
/usr/bin/make -f CMakeFiles/cmTC_7008c.dir/build.make CMakeFiles/cmTC_7008c.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_7008c.dir/CheckSymbolExists.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_7008c.dir/CheckSymbolExists.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_7008c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7008c.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_7008c.dir/CheckSymbolExists.c.o -o cmTC_7008c
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
File /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <malloc.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef memalign
return ((int*)(&memalign))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the include file pthread.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_b6e95/fast"
/usr/bin/make -f CMakeFiles/cmTC_b6e95.dir/build.make CMakeFiles/cmTC_b6e95.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b6e95.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Winit-self -Wpointer-arith -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -Wno-undef -Wno-strict-prototypes -Wno-shadow -Wno-unused-function -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_b6e95.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_b6e95
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b6e95.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Winit-self -Wpointer-arith -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -Wno-undef -Wno-strict-prototypes -Wno-shadow -Wno-unused-function -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_b6e95.dir/CheckIncludeFile.c.o -o cmTC_b6e95
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the pthread_create exist passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_1b26c/fast"
/usr/bin/make -f CMakeFiles/cmTC_1b26c.dir/build.make CMakeFiles/cmTC_1b26c.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_1b26c.dir/CheckSymbolExists.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Winit-self -Wpointer-arith -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -Wno-undef -Wno-strict-prototypes -Wno-shadow -Wno-unused-function -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_1b26c.dir/CheckSymbolExists.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_1b26c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1b26c.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Winit-self -Wpointer-arith -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -Wno-undef -Wno-strict-prototypes -Wno-shadow -Wno-unused-function -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_1b26c.dir/CheckSymbolExists.c.o -o cmTC_1b26c
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
File /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/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 the include file /usr/include/libpng/png.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_cc9a5/fast"
/usr/bin/make -f CMakeFiles/cmTC_cc9a5.dir/build.make CMakeFiles/cmTC_cc9a5.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_cc9a5.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_cc9a5.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_cc9a5
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cc9a5.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_cc9a5.dir/CheckIncludeFile.c.o -o cmTC_cc9a5
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function sgemm_ exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_79bc6/fast"
/usr/bin/make -f CMakeFiles/cmTC_79bc6.dir/build.make CMakeFiles/cmTC_79bc6.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_79bc6.dir/CheckFunctionExists.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -DCHECK_FUNCTION_EXISTS=sgemm_ -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_79bc6.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_79bc6
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_79bc6.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -DCHECK_FUNCTION_EXISTS=sgemm_ -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_79bc6.dir/CheckFunctionExists.c.o -o cmTC_79bc6 /usr/lib/x86_64-linux-gnu/libopenblas.so
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function cheev_ exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_c6bf6/fast"
/usr/bin/make -f CMakeFiles/cmTC_c6bf6.dir/build.make CMakeFiles/cmTC_c6bf6.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c6bf6.dir/CheckFunctionExists.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -DCHECK_FUNCTION_EXISTS=cheev_ -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_c6bf6.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_c6bf6
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c6bf6.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -DCHECK_FUNCTION_EXISTS=cheev_ -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_c6bf6.dir/CheckFunctionExists.c.o -o cmTC_c6bf6 /usr/lib/x86_64-linux-gnu/libopenblas.so /usr/lib/x86_64-linux-gnu/libopenblas.so
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function dlerror exists in the dl passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_5afec/fast"
/usr/bin/make -f CMakeFiles/cmTC_5afec.dir/build.make CMakeFiles/cmTC_5afec.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_5afec.dir/CheckFunctionExists.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -DCHECK_FUNCTION_EXISTS=dlerror -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_5afec.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_5afec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5afec.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -DCHECK_FUNCTION_EXISTS=dlerror -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_5afec.dir/CheckFunctionExists.c.o -o cmTC_5afec -ldl
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file linux/videodev2.h exists passed with the following output:
Change Dir: /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_a870a/fast"
/usr/bin/make -f CMakeFiles/cmTC_a870a.dir/build.make CMakeFiles/cmTC_a870a.dir/build
make[1]: Entering directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a870a.dir/CheckIncludeFile.c.o
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_a870a.dir/CheckIncludeFile.c.o -c /data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_a870a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a870a.dir/link.txt --verbose=1
/usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_a870a.dir/CheckIncludeFile.c.o -o cmTC_a870a
make[1]: Leaving directory '/data/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'