CMakeOutput.log
191 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
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
The system is: Linux - 5.4.0-148-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 "/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/3.16.3/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 "/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/3.16.3/CompilerIdC/a.out"
Determining if the CXX compiler works passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_822f9/fast && /usr/bin/make -f CMakeFiles/cmTC_822f9.dir/build.make CMakeFiles/cmTC_822f9.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_822f9.dir/testCXXCompiler.cxx.o
/usr/bin/c++ -fPIE -o CMakeFiles/cmTC_822f9.dir/testCXXCompiler.cxx.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_822f9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_822f9.dir/link.txt --verbose=1
/usr/bin/c++ CMakeFiles/cmTC_822f9.dir/testCXXCompiler.cxx.o -o cmTC_822f9
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_7e41d/fast && /usr/bin/make -f CMakeFiles/cmTC_7e41d.dir/build.make CMakeFiles/cmTC_7e41d.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/c++ -fPIE -v -o CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --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-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --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=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr,hsa --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 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)
COLLECT_GCC_OPTIONS='-fPIE' '-v' '-o' 'CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/9/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o -version -fPIE -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccjrXeQW.s
GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (x86_64-linux-gnu)
compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/9"
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/include/c++/9
/usr/include/x86_64-linux-gnu/c++/9
/usr/include/c++/9/backward
/usr/lib/gcc/x86_64-linux-gnu/9/include
/usr/local/include
/usr/include/x86_64-linux-gnu
/usr/include
End of search list.
GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (x86_64-linux-gnu)
compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 65fe925b83d3956b533de4aaba7dace0
COLLECT_GCC_OPTIONS='-fPIE' '-v' '-o' 'CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
as -v --64 -o CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccjrXeQW.s
GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-fPIE' '-v' '-o' 'CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
Linking CXX executable cmTC_7e41d
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7e41d.dir/link.txt --verbose=1
/usr/bin/c++ -v CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_7e41d
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --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-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --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=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr,hsa --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 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_7e41d' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccOBuvqA.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_7e41d /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../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/9/../../.. CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_7e41d' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Parsed CXX implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
add: [/usr/include/c++/9]
add: [/usr/include/x86_64-linux-gnu/c++/9]
add: [/usr/include/c++/9/backward]
add: [/usr/lib/gcc/x86_64-linux-gnu/9/include]
add: [/usr/local/include]
add: [/usr/include/x86_64-linux-gnu]
add: [/usr/include]
end of search list found
collapse include dir [/usr/include/c++/9] ==> [/usr/include/c++/9]
collapse include dir [/usr/include/x86_64-linux-gnu/c++/9] ==> [/usr/include/x86_64-linux-gnu/c++/9]
collapse include dir [/usr/include/c++/9/backward] ==> [/usr/include/c++/9/backward]
collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/9/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/9/include]
collapse include dir [/usr/local/include] ==> [/usr/local/include]
collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu]
collapse include dir [/usr/include] ==> [/usr/include]
implicit include dirs: [/usr/include/c++/9;/usr/include/x86_64-linux-gnu/c++/9;/usr/include/c++/9/backward;/usr/lib/gcc/x86_64-linux-gnu/9/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include]
Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):/usr/bin/make cmTC_7e41d/fast && /usr/bin/make -f CMakeFiles/cmTC_7e41d.dir/build.make CMakeFiles/cmTC_7e41d.dir/build]
ignore line: [make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp']
ignore line: [Building CXX object CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/c++ -fPIE -v -o CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/c++]
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa]
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --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-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --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=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr hsa --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 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) ]
ignore line: [COLLECT_GCC_OPTIONS='-fPIE' '-v' '-o' 'CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o -version -fPIE -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccjrXeQW.s]
ignore line: [GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (x86_64-linux-gnu)]
ignore line: [ compiled by GNU C version 9.4.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/9"]
ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /usr/include/c++/9]
ignore line: [ /usr/include/x86_64-linux-gnu/c++/9]
ignore line: [ /usr/include/c++/9/backward]
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/include]
ignore line: [ /usr/local/include]
ignore line: [ /usr/include/x86_64-linux-gnu]
ignore line: [ /usr/include]
ignore line: [End of search list.]
ignore line: [GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (x86_64-linux-gnu)]
ignore line: [ compiled by GNU C version 9.4.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: 65fe925b83d3956b533de4aaba7dace0]
ignore line: [COLLECT_GCC_OPTIONS='-fPIE' '-v' '-o' 'CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [ as -v --64 -o CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccjrXeQW.s]
ignore line: [GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-fPIE' '-v' '-o' 'CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [Linking CXX executable cmTC_7e41d]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7e41d.dir/link.txt --verbose=1]
ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_7e41d ]
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/9/lto-wrapper]
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa]
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --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-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --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=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr hsa --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 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_7e41d' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccOBuvqA.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_7e41d /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../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/9/../../.. CMakeFiles/cmTC_7e41d.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o]
arg [/usr/lib/gcc/x86_64-linux-gnu/9/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccOBuvqA.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_7e41d] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../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/9/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..]
arg [CMakeFiles/cmTC_7e41d.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/9/crtendS.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] ==> ignore
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../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/9/../../..] ==> [/usr/lib]
implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
implicit fwks: []
Determining if the C compiler works passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_91fba/fast && /usr/bin/make -f CMakeFiles/cmTC_91fba.dir/build.make CMakeFiles/cmTC_91fba.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_91fba.dir/testCCompiler.c.o
/usr/bin/cc -fPIE -o CMakeFiles/cmTC_91fba.dir/testCCompiler.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_91fba
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_91fba.dir/link.txt --verbose=1
/usr/bin/cc CMakeFiles/cmTC_91fba.dir/testCCompiler.c.o -o cmTC_91fba
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_89b2d/fast && /usr/bin/make -f CMakeFiles/cmTC_89b2d.dir/build.make CMakeFiles/cmTC_89b2d.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_89b2d.dir/CMakeCCompilerABI.c.o
/usr/bin/cc -fPIE -v -o CMakeFiles/cmTC_89b2d.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c
Using built-in specs.
COLLECT_GCC=/usr/bin/cc
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --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-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --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=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr,hsa --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 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)
COLLECT_GCC_OPTIONS='-fPIE' '-v' '-o' 'CMakeFiles/cmTC_89b2d.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/9/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_89b2d.dir/CMakeCCompilerABI.c.o -version -fPIE -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccqFTqIy.s
GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (x86_64-linux-gnu)
compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/lib/gcc/x86_64-linux-gnu/9/include
/usr/local/include
/usr/include/x86_64-linux-gnu
/usr/include
End of search list.
GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (x86_64-linux-gnu)
compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: c0c95c0b4209efec1c1892d5ff24030b
COLLECT_GCC_OPTIONS='-fPIE' '-v' '-o' 'CMakeFiles/cmTC_89b2d.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
as -v --64 -o CMakeFiles/cmTC_89b2d.dir/CMakeCCompilerABI.c.o /tmp/ccqFTqIy.s
GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-fPIE' '-v' '-o' 'CMakeFiles/cmTC_89b2d.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
Linking C executable cmTC_89b2d
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_89b2d.dir/link.txt --verbose=1
/usr/bin/cc -v CMakeFiles/cmTC_89b2d.dir/CMakeCCompilerABI.c.o -o cmTC_89b2d
Using built-in specs.
COLLECT_GCC=/usr/bin/cc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --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-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --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=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr,hsa --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 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_89b2d' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccVd9oZm.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_89b2d /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../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/9/../../.. CMakeFiles/cmTC_89b2d.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/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_89b2d' '-mtune=generic' '-march=x86-64'
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Parsed C implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
add: [/usr/lib/gcc/x86_64-linux-gnu/9/include]
add: [/usr/local/include]
add: [/usr/include/x86_64-linux-gnu]
add: [/usr/include]
end of search list found
collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/9/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/9/include]
collapse include dir [/usr/local/include] ==> [/usr/local/include]
collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu]
collapse include dir [/usr/include] ==> [/usr/include]
implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/9/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include]
Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):/usr/bin/make cmTC_89b2d/fast && /usr/bin/make -f CMakeFiles/cmTC_89b2d.dir/build.make CMakeFiles/cmTC_89b2d.dir/build]
ignore line: [make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp']
ignore line: [Building C object CMakeFiles/cmTC_89b2d.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/cc -fPIE -v -o CMakeFiles/cmTC_89b2d.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/cc]
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa]
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --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-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --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=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr hsa --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 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) ]
ignore line: [COLLECT_GCC_OPTIONS='-fPIE' '-v' '-o' 'CMakeFiles/cmTC_89b2d.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_89b2d.dir/CMakeCCompilerABI.c.o -version -fPIE -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccqFTqIy.s]
ignore line: [GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (x86_64-linux-gnu)]
ignore line: [ compiled by GNU C version 9.4.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/include]
ignore line: [ /usr/local/include]
ignore line: [ /usr/include/x86_64-linux-gnu]
ignore line: [ /usr/include]
ignore line: [End of search list.]
ignore line: [GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (x86_64-linux-gnu)]
ignore line: [ compiled by GNU C version 9.4.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: c0c95c0b4209efec1c1892d5ff24030b]
ignore line: [COLLECT_GCC_OPTIONS='-fPIE' '-v' '-o' 'CMakeFiles/cmTC_89b2d.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
ignore line: [ as -v --64 -o CMakeFiles/cmTC_89b2d.dir/CMakeCCompilerABI.c.o /tmp/ccqFTqIy.s]
ignore line: [GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-fPIE' '-v' '-o' 'CMakeFiles/cmTC_89b2d.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
ignore line: [Linking C executable cmTC_89b2d]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_89b2d.dir/link.txt --verbose=1]
ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_89b2d.dir/CMakeCCompilerABI.c.o -o cmTC_89b2d ]
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/9/lto-wrapper]
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa]
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --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-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --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=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr hsa --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 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_89b2d' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccVd9oZm.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_89b2d /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../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/9/../../.. CMakeFiles/cmTC_89b2d.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/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o]
arg [/usr/lib/gcc/x86_64-linux-gnu/9/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccVd9oZm.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_89b2d] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../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/9/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..]
arg [CMakeFiles/cmTC_89b2d.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/9/crtendS.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] ==> ignore
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../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/9/../../..] ==> [/usr/lib]
implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
implicit fwks: []
Determining if the include file pthread.h exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_5becf/fast && /usr/bin/make -f CMakeFiles/cmTC_5becf.dir/build.make CMakeFiles/cmTC_5becf.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_5becf.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_5becf.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_5becf
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5becf.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_5becf.dir/CheckIncludeFile.c.o -o cmTC_5becf
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the posix_memalign exist passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_2cd03/fast && /usr/bin/make -f CMakeFiles/cmTC_2cd03.dir/build.make CMakeFiles/cmTC_2cd03.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2cd03.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_2cd03.dir/CheckSymbolExists.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_2cd03
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2cd03.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_2cd03.dir/CheckSymbolExists.c.o -o cmTC_2cd03
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
File /home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_5eaac/fast && /usr/bin/make -f CMakeFiles/cmTC_5eaac.dir/build.make CMakeFiles/cmTC_5eaac.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_5eaac.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_5eaac.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_5eaac
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5eaac.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_5eaac.dir/CheckIncludeFile.c.o -o cmTC_5eaac
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the memalign exist passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_12114/fast && /usr/bin/make -f CMakeFiles/cmTC_12114.dir/build.make CMakeFiles/cmTC_12114.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_12114.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_12114.dir/CheckSymbolExists.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_12114
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_12114.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_12114.dir/CheckSymbolExists.c.o -o cmTC_12114
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
File /home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_f61fe/fast && /usr/bin/make -f CMakeFiles/cmTC_f61fe.dir/build.make CMakeFiles/cmTC_f61fe.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f61fe.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_f61fe.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_f61fe
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f61fe.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_f61fe.dir/CheckIncludeFile.c.o -o cmTC_f61fe
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_4574c/fast && /usr/bin/make -f CMakeFiles/cmTC_4574c.dir/build.make CMakeFiles/cmTC_4574c.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_4574c.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_4574c.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_4574c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4574c.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_4574c.dir/CheckIncludeFile.c.o -o cmTC_4574c
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_d4858/fast && /usr/bin/make -f CMakeFiles/cmTC_d4858.dir/build.make CMakeFiles/cmTC_d4858.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d4858.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_d4858.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_d4858
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d4858.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_d4858.dir/CheckIncludeFile.c.o -o cmTC_d4858
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining size of unsigned short passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_9dc62/fast && /usr/bin/make -f CMakeFiles/cmTC_9dc62.dir/build.make CMakeFiles/cmTC_9dc62.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_9dc62.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_9dc62.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CheckTypeSize/CMAKE_SIZEOF_UNSIGNED_SHORT.c
Linking C executable cmTC_9dc62
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9dc62.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_9dc62.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o -o cmTC_9dc62
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_e8fd1/fast && /usr/bin/make -f CMakeFiles/cmTC_e8fd1.dir/build.make CMakeFiles/cmTC_e8fd1.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e8fd1.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_e8fd1.dir/TestEndianess.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/TestEndianess.c
Linking C executable cmTC_e8fd1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e8fd1.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_e8fd1.dir/TestEndianess.c.o -o cmTC_e8fd1
make[1]: Leaving directory '/home/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 size of size_t passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_a5947/fast && /usr/bin/make -f CMakeFiles/cmTC_a5947.dir/build.make CMakeFiles/cmTC_a5947.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a5947.dir/SIZEOF_SIZE_T.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 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -Wno-unused-parameter -Wno-sign-compare -Wno-implicit-fallthrough -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_a5947.dir/SIZEOF_SIZE_T.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CheckTypeSize/SIZEOF_SIZE_T.c
Linking C executable cmTC_a5947
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a5947.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 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -Wno-unused-parameter -Wno-sign-compare -Wno-implicit-fallthrough -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_a5947.dir/SIZEOF_SIZE_T.c.o -o cmTC_a5947
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining size of unsigned long passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_5ae04/fast && /usr/bin/make -f CMakeFiles/cmTC_5ae04.dir/build.make CMakeFiles/cmTC_5ae04.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_5ae04.dir/SIZEOF_UNSIGNED_LONG.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 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -Wno-unused-parameter -Wno-sign-compare -Wno-implicit-fallthrough -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_5ae04.dir/SIZEOF_UNSIGNED_LONG.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CheckTypeSize/SIZEOF_UNSIGNED_LONG.c
Linking C executable cmTC_5ae04
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5ae04.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 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -Wno-unused-parameter -Wno-sign-compare -Wno-implicit-fallthrough -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_5ae04.dir/SIZEOF_UNSIGNED_LONG.c.o -o cmTC_5ae04
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Performing C SOURCE FILE Test HAVE_BUILTIN_CTZL succeeded with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_d5aff/fast && /usr/bin/make -f CMakeFiles/cmTC_d5aff.dir/build.make CMakeFiles/cmTC_d5aff.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d5aff.dir/src.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 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -Wno-unused-parameter -Wno-sign-compare -Wno-implicit-fallthrough -DHAVE_BUILTIN_CTZL -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_d5aff.dir/src.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_d5aff
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d5aff.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 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -Wno-unused-parameter -Wno-sign-compare -Wno-implicit-fallthrough -DHAVE_BUILTIN_CTZL -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_d5aff.dir/src.c.o -o cmTC_d5aff
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Source file was:
int main(int argc, char **argv) { unsigned long a = argc; return __builtin_ctzl(a); }
Determining if files locale.h exist passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_a91ec/fast && /usr/bin/make -f CMakeFiles/cmTC_a91ec.dir/build.make CMakeFiles/cmTC_a91ec.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a91ec.dir/HAVE_LOCALE_H.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 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -Wno-unused-parameter -Wno-sign-compare -Wno-implicit-fallthrough -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_a91ec.dir/HAVE_LOCALE_H.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CheckIncludeFiles/HAVE_LOCALE_H.c
Linking C executable cmTC_a91ec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a91ec.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 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -Wno-unused-parameter -Wno-sign-compare -Wno-implicit-fallthrough -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_a91ec.dir/HAVE_LOCALE_H.c.o -o cmTC_a91ec
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if files stdlib.h exist passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_90b68/fast && /usr/bin/make -f CMakeFiles/cmTC_90b68.dir/build.make CMakeFiles/cmTC_90b68.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_90b68.dir/HAVE_STDLIB_H.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 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -Wno-unused-parameter -Wno-sign-compare -Wno-implicit-fallthrough -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_90b68.dir/HAVE_STDLIB_H.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CheckIncludeFiles/HAVE_STDLIB_H.c
Linking C executable cmTC_90b68
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_90b68.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 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -Wno-unused-parameter -Wno-sign-compare -Wno-implicit-fallthrough -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_90b68.dir/HAVE_STDLIB_H.c.o -o cmTC_90b68
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if files sys/types.h exist passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_cfdd7/fast && /usr/bin/make -f CMakeFiles/cmTC_cfdd7.dir/build.make CMakeFiles/cmTC_cfdd7.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_cfdd7.dir/NEED_SYS_TYPES_H.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 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -Wno-unused-parameter -Wno-sign-compare -Wno-implicit-fallthrough -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_cfdd7.dir/NEED_SYS_TYPES_H.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CheckIncludeFiles/NEED_SYS_TYPES_H.c
Linking C executable cmTC_cfdd7
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cfdd7.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 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -Wno-unused-parameter -Wno-sign-compare -Wno-implicit-fallthrough -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_cfdd7.dir/NEED_SYS_TYPES_H.c.o -o cmTC_cfdd7
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_e7759/fast && /usr/bin/make -f CMakeFiles/cmTC_e7759.dir/build.make CMakeFiles/cmTC_e7759.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e7759.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_e7759.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_e7759
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e7759.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_e7759.dir/CheckIncludeFile.c.o -o cmTC_e7759
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file dlfcn.h exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_46a99/fast && /usr/bin/make -f CMakeFiles/cmTC_46a99.dir/build.make CMakeFiles/cmTC_46a99.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_46a99.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_46a99.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_46a99
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_46a99.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_46a99.dir/CheckIncludeFile.c.o -o cmTC_46a99
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file fcntl.h exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_df675/fast && /usr/bin/make -f CMakeFiles/cmTC_df675.dir/build.make CMakeFiles/cmTC_df675.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_df675.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_df675.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_df675
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_df675.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_df675.dir/CheckIncludeFile.c.o -o cmTC_df675
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_e34d3/fast && /usr/bin/make -f CMakeFiles/cmTC_e34d3.dir/build.make CMakeFiles/cmTC_e34d3.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e34d3.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_e34d3.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_e34d3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e34d3.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_e34d3.dir/CheckIncludeFile.c.o -o cmTC_e34d3
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file limits.h exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_f2fa7/fast && /usr/bin/make -f CMakeFiles/cmTC_f2fa7.dir/build.make CMakeFiles/cmTC_f2fa7.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f2fa7.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_f2fa7.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_f2fa7
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f2fa7.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_f2fa7.dir/CheckIncludeFile.c.o -o cmTC_f2fa7
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_83072/fast && /usr/bin/make -f CMakeFiles/cmTC_83072.dir/build.make CMakeFiles/cmTC_83072.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_83072.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_83072.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_83072
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_83072.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_83072.dir/CheckIncludeFile.c.o -o cmTC_83072
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file search.h exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_c3ed0/fast && /usr/bin/make -f CMakeFiles/cmTC_c3ed0.dir/build.make CMakeFiles/cmTC_c3ed0.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c3ed0.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_c3ed0.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_c3ed0
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c3ed0.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_c3ed0.dir/CheckIncludeFile.c.o -o cmTC_c3ed0
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file string.h exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_86a3c/fast && /usr/bin/make -f CMakeFiles/cmTC_86a3c.dir/build.make CMakeFiles/cmTC_86a3c.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_86a3c.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_86a3c.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_86a3c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_86a3c.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_86a3c.dir/CheckIncludeFile.c.o -o cmTC_86a3c
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_452b6/fast && /usr/bin/make -f CMakeFiles/cmTC_452b6.dir/build.make CMakeFiles/cmTC_452b6.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_452b6.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_452b6.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_452b6
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_452b6.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_452b6.dir/CheckIncludeFile.c.o -o cmTC_452b6
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the include file sys/time.h exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_31b00/fast && /usr/bin/make -f CMakeFiles/cmTC_31b00.dir/build.make CMakeFiles/cmTC_31b00.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_31b00.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_31b00.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_31b00
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_31b00.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_31b00.dir/CheckIncludeFile.c.o -o cmTC_31b00
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_f45a0/fast && /usr/bin/make -f CMakeFiles/cmTC_f45a0.dir/build.make CMakeFiles/cmTC_f45a0.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f45a0.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_f45a0.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_f45a0
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f45a0.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_f45a0.dir/CheckIncludeFile.c.o -o cmTC_f45a0
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Performing C SOURCE FILE Test C_HAS_inline succeeded with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_8f44a/fast && /usr/bin/make -f CMakeFiles/cmTC_8f44a.dir/build.make CMakeFiles/cmTC_8f44a.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8f44a.dir/src.c.o
/usr/bin/cc -Dinline=inline -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 -DC_HAS_inline -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_8f44a.dir/src.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/src.c
/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/src.c:3:29: warning: function declaration isn’t a prototype [-Wstrict-prototypes]
3 | static inline foo_t static_foo() {return 0;}
| ^~~~~~~~~~
/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/src.c:4:15: warning: function declaration isn’t a prototype [-Wstrict-prototypes]
4 | foo_t foo(){return 0;}
| ^~~
/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/src.c: In function ‘main’:
/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/src.c:5:22: warning: unused parameter ‘argc’ [-Wunused-parameter]
5 | int main(int argc, char *argv[]) {return 0;}
| ~~~~^~~~
/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/src.c:5:34: warning: unused parameter ‘argv’ [-Wunused-parameter]
5 | int main(int argc, char *argv[]) {return 0;}
| ~~~~~~^~~~~~
Linking C executable cmTC_8f44a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8f44a.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 -DC_HAS_inline -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_8f44a.dir/src.c.o -o cmTC_8f44a
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Source file was:
typedef int foo_t;
static inline foo_t static_foo() {return 0;}
foo_t foo(){return 0;}
int main(int argc, char *argv[]) {return 0;}
Determining size of signed short passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_6c12f/fast && /usr/bin/make -f CMakeFiles/cmTC_6c12f.dir/build.make CMakeFiles/cmTC_6c12f.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_6c12f.dir/SIZEOF_SIGNED_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_6c12f.dir/SIZEOF_SIGNED_SHORT.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CheckTypeSize/SIZEOF_SIGNED_SHORT.c
Linking C executable cmTC_6c12f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6c12f.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_6c12f.dir/SIZEOF_SIGNED_SHORT.c.o -o cmTC_6c12f
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining size of unsigned short passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_cfc45/fast && /usr/bin/make -f CMakeFiles/cmTC_cfc45.dir/build.make CMakeFiles/cmTC_cfc45.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_cfc45.dir/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_cfc45.dir/SIZEOF_UNSIGNED_SHORT.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CheckTypeSize/SIZEOF_UNSIGNED_SHORT.c
Linking C executable cmTC_cfc45
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cfc45.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_cfc45.dir/SIZEOF_UNSIGNED_SHORT.c.o -o cmTC_cfc45
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining size of signed int passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_802d9/fast && /usr/bin/make -f CMakeFiles/cmTC_802d9.dir/build.make CMakeFiles/cmTC_802d9.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_802d9.dir/SIZEOF_SIGNED_INT.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_802d9.dir/SIZEOF_SIGNED_INT.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CheckTypeSize/SIZEOF_SIGNED_INT.c
Linking C executable cmTC_802d9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_802d9.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_802d9.dir/SIZEOF_SIGNED_INT.c.o -o cmTC_802d9
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining size of unsigned int passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_7e99f/fast && /usr/bin/make -f CMakeFiles/cmTC_7e99f.dir/build.make CMakeFiles/cmTC_7e99f.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_7e99f.dir/SIZEOF_UNSIGNED_INT.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_7e99f.dir/SIZEOF_UNSIGNED_INT.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CheckTypeSize/SIZEOF_UNSIGNED_INT.c
Linking C executable cmTC_7e99f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7e99f.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_7e99f.dir/SIZEOF_UNSIGNED_INT.c.o -o cmTC_7e99f
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining size of signed long passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_d8e80/fast && /usr/bin/make -f CMakeFiles/cmTC_d8e80.dir/build.make CMakeFiles/cmTC_d8e80.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d8e80.dir/SIZEOF_SIGNED_LONG.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_d8e80.dir/SIZEOF_SIGNED_LONG.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CheckTypeSize/SIZEOF_SIGNED_LONG.c
Linking C executable cmTC_d8e80
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d8e80.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_d8e80.dir/SIZEOF_SIGNED_LONG.c.o -o cmTC_d8e80
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining size of signed long long passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_8c9b8/fast && /usr/bin/make -f CMakeFiles/cmTC_8c9b8.dir/build.make CMakeFiles/cmTC_8c9b8.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8c9b8.dir/SIZEOF_SIGNED_LONG_LONG.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_8c9b8.dir/SIZEOF_SIGNED_LONG_LONG.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CheckTypeSize/SIZEOF_SIGNED_LONG_LONG.c
Linking C executable cmTC_8c9b8
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8c9b8.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_8c9b8.dir/SIZEOF_SIGNED_LONG_LONG.c.o -o cmTC_8c9b8
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining size of unsigned long long passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_aa33a/fast && /usr/bin/make -f CMakeFiles/cmTC_aa33a.dir/build.make CMakeFiles/cmTC_aa33a.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_aa33a.dir/SIZEOF_UNSIGNED_LONG_LONG.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_aa33a.dir/SIZEOF_UNSIGNED_LONG_LONG.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CheckTypeSize/SIZEOF_UNSIGNED_LONG_LONG.c
Linking C executable cmTC_aa33a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_aa33a.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_aa33a.dir/SIZEOF_UNSIGNED_LONG_LONG.c.o -o cmTC_aa33a
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining size of unsigned char * passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_3b372/fast && /usr/bin/make -f CMakeFiles/cmTC_3b372.dir/build.make CMakeFiles/cmTC_3b372.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_3b372.dir/SIZEOF_UNSIGNED_CHAR_P.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_3b372.dir/SIZEOF_UNSIGNED_CHAR_P.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CheckTypeSize/SIZEOF_UNSIGNED_CHAR_P.c
Linking C executable cmTC_3b372
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3b372.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_3b372.dir/SIZEOF_UNSIGNED_CHAR_P.c.o -o cmTC_3b372
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining size of ptrdiff_t passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_ae3b8/fast && /usr/bin/make -f CMakeFiles/cmTC_ae3b8.dir/build.make CMakeFiles/cmTC_ae3b8.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_ae3b8.dir/SIZEOF_PTRDIFF_T.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_ae3b8.dir/SIZEOF_PTRDIFF_T.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CheckTypeSize/SIZEOF_PTRDIFF_T.c
Linking C executable cmTC_ae3b8
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ae3b8.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_ae3b8.dir/SIZEOF_PTRDIFF_T.c.o -o cmTC_ae3b8
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function floor exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_3a0e8/fast && /usr/bin/make -f CMakeFiles/cmTC_3a0e8.dir/build.make CMakeFiles/cmTC_3a0e8.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_3a0e8.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=floor -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_3a0e8.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
<command-line>: warning: conflicting types for built-in function ‘floor’; expected ‘double(double)’ [-Wbuiltin-declaration-mismatch]
/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’
7 | CHECK_FUNCTION_EXISTS(void);
| ^~~~~~~~~~~~~~~~~~~~~
/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘floor’ is declared in header ‘<math.h>’
+++ |+#include <math.h>
1 | #ifdef CHECK_FUNCTION_EXISTS
Linking C executable cmTC_3a0e8
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3a0e8.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=floor -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_3a0e8.dir/CheckFunctionExists.c.o -o cmTC_3a0e8 -lm
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function pow exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_22839/fast && /usr/bin/make -f CMakeFiles/cmTC_22839.dir/build.make CMakeFiles/cmTC_22839.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_22839.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=pow -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_22839.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
<command-line>: warning: conflicting types for built-in function ‘pow’; expected ‘double(double, double)’ [-Wbuiltin-declaration-mismatch]
/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’
7 | CHECK_FUNCTION_EXISTS(void);
| ^~~~~~~~~~~~~~~~~~~~~
/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘pow’ is declared in header ‘<math.h>’
+++ |+#include <math.h>
1 | #ifdef CHECK_FUNCTION_EXISTS
Linking C executable cmTC_22839
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_22839.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=pow -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_22839.dir/CheckFunctionExists.c.o -o cmTC_22839 -lm
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function sqrt exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_df6ca/fast && /usr/bin/make -f CMakeFiles/cmTC_df6ca.dir/build.make CMakeFiles/cmTC_df6ca.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_df6ca.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=sqrt -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_df6ca.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
<command-line>: warning: conflicting types for built-in function ‘sqrt’; expected ‘double(double)’ [-Wbuiltin-declaration-mismatch]
/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’
7 | CHECK_FUNCTION_EXISTS(void);
| ^~~~~~~~~~~~~~~~~~~~~
/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘sqrt’ is declared in header ‘<math.h>’
+++ |+#include <math.h>
1 | #ifdef CHECK_FUNCTION_EXISTS
Linking C executable cmTC_df6ca
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_df6ca.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=sqrt -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_df6ca.dir/CheckFunctionExists.c.o -o cmTC_df6ca -lm
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function isascii exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_e47d1/fast && /usr/bin/make -f CMakeFiles/cmTC_e47d1.dir/build.make CMakeFiles/cmTC_e47d1.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e47d1.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=isascii -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_e47d1.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
<command-line>: warning: conflicting types for built-in function ‘isascii’; expected ‘int(int)’ [-Wbuiltin-declaration-mismatch]
/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’
7 | CHECK_FUNCTION_EXISTS(void);
| ^~~~~~~~~~~~~~~~~~~~~
Linking C executable cmTC_e47d1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e47d1.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=isascii -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_e47d1.dir/CheckFunctionExists.c.o -o cmTC_e47d1
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function memset exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_32853/fast && /usr/bin/make -f CMakeFiles/cmTC_32853.dir/build.make CMakeFiles/cmTC_32853.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_32853.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=memset -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_32853.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
<command-line>: warning: conflicting types for built-in function ‘memset’; expected ‘void *(void *, int, long unsigned int)’ [-Wbuiltin-declaration-mismatch]
/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’
7 | CHECK_FUNCTION_EXISTS(void);
| ^~~~~~~~~~~~~~~~~~~~~
/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘memset’ is declared in header ‘<string.h>’
+++ |+#include <string.h>
1 | #ifdef CHECK_FUNCTION_EXISTS
Linking C executable cmTC_32853
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_32853.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=memset -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_32853.dir/CheckFunctionExists.c.o -o cmTC_32853
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function mmap exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_aee0c/fast && /usr/bin/make -f CMakeFiles/cmTC_aee0c.dir/build.make CMakeFiles/cmTC_aee0c.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_aee0c.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=mmap -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_aee0c.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_aee0c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_aee0c.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=mmap -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_aee0c.dir/CheckFunctionExists.c.o -o cmTC_aee0c
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function getopt exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_64829/fast && /usr/bin/make -f CMakeFiles/cmTC_64829.dir/build.make CMakeFiles/cmTC_64829.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_64829.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=getopt -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_64829.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_64829
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_64829.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=getopt -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_64829.dir/CheckFunctionExists.c.o -o cmTC_64829
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function memmove exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_0c6c1/fast && /usr/bin/make -f CMakeFiles/cmTC_0c6c1.dir/build.make CMakeFiles/cmTC_0c6c1.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0c6c1.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=memmove -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_0c6c1.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
<command-line>: warning: conflicting types for built-in function ‘memmove’; expected ‘void *(void *, const void *, long unsigned int)’ [-Wbuiltin-declaration-mismatch]
/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’
7 | CHECK_FUNCTION_EXISTS(void);
| ^~~~~~~~~~~~~~~~~~~~~
/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘memmove’ is declared in header ‘<string.h>’
+++ |+#include <string.h>
1 | #ifdef CHECK_FUNCTION_EXISTS
Linking C executable cmTC_0c6c1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0c6c1.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=memmove -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_0c6c1.dir/CheckFunctionExists.c.o -o cmTC_0c6c1
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function strcasecmp exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_8ea55/fast && /usr/bin/make -f CMakeFiles/cmTC_8ea55.dir/build.make CMakeFiles/cmTC_8ea55.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8ea55.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=strcasecmp -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_8ea55.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
<command-line>: warning: conflicting types for built-in function ‘strcasecmp’; expected ‘int(const char *, const char *)’ [-Wbuiltin-declaration-mismatch]
<command-line>: note: in definition of macro ‘CHECK_FUNCTION_EXISTS’
Linking C executable cmTC_8ea55
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8ea55.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=strcasecmp -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_8ea55.dir/CheckFunctionExists.c.o -o cmTC_8ea55
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function strchr exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_d1060/fast && /usr/bin/make -f CMakeFiles/cmTC_d1060.dir/build.make CMakeFiles/cmTC_d1060.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d1060.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=strchr -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_d1060.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
<command-line>: warning: conflicting types for built-in function ‘strchr’; expected ‘char *(const char *, int)’ [-Wbuiltin-declaration-mismatch]
/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’
7 | CHECK_FUNCTION_EXISTS(void);
| ^~~~~~~~~~~~~~~~~~~~~
/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘strchr’ is declared in header ‘<string.h>’
+++ |+#include <string.h>
1 | #ifdef CHECK_FUNCTION_EXISTS
Linking C executable cmTC_d1060
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d1060.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=strchr -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_d1060.dir/CheckFunctionExists.c.o -o cmTC_d1060
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function strrchr exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_161be/fast && /usr/bin/make -f CMakeFiles/cmTC_161be.dir/build.make CMakeFiles/cmTC_161be.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_161be.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=strrchr -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_161be.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
<command-line>: warning: conflicting types for built-in function ‘strrchr’; expected ‘char *(const char *, int)’ [-Wbuiltin-declaration-mismatch]
/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’
7 | CHECK_FUNCTION_EXISTS(void);
| ^~~~~~~~~~~~~~~~~~~~~
/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘strrchr’ is declared in header ‘<string.h>’
+++ |+#include <string.h>
1 | #ifdef CHECK_FUNCTION_EXISTS
Linking C executable cmTC_161be
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_161be.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=strrchr -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_161be.dir/CheckFunctionExists.c.o -o cmTC_161be
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function strstr exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_723af/fast && /usr/bin/make -f CMakeFiles/cmTC_723af.dir/build.make CMakeFiles/cmTC_723af.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_723af.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=strstr -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_723af.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
<command-line>: warning: conflicting types for built-in function ‘strstr’; expected ‘char *(const char *, const char *)’ [-Wbuiltin-declaration-mismatch]
/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’
7 | CHECK_FUNCTION_EXISTS(void);
| ^~~~~~~~~~~~~~~~~~~~~
/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘strstr’ is declared in header ‘<string.h>’
+++ |+#include <string.h>
1 | #ifdef CHECK_FUNCTION_EXISTS
Linking C executable cmTC_723af
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_723af.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=strstr -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_723af.dir/CheckFunctionExists.c.o -o cmTC_723af
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function strtol exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_dc7c2/fast && /usr/bin/make -f CMakeFiles/cmTC_dc7c2.dir/build.make CMakeFiles/cmTC_dc7c2.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_dc7c2.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=strtol -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_dc7c2.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_dc7c2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_dc7c2.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=strtol -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_dc7c2.dir/CheckFunctionExists.c.o -o cmTC_dc7c2
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function strtol exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_6ae4c/fast && /usr/bin/make -f CMakeFiles/cmTC_6ae4c.dir/build.make CMakeFiles/cmTC_6ae4c.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_6ae4c.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=strtol -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_6ae4c.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_6ae4c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6ae4c.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=strtol -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_6ae4c.dir/CheckFunctionExists.c.o -o cmTC_6ae4c
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function strtoull exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_f9faa/fast && /usr/bin/make -f CMakeFiles/cmTC_f9faa.dir/build.make CMakeFiles/cmTC_f9faa.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f9faa.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=strtoull -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_f9faa.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_f9faa
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f9faa.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=strtoull -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_f9faa.dir/CheckFunctionExists.c.o -o cmTC_f9faa
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function lfind exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_5f06b/fast && /usr/bin/make -f CMakeFiles/cmTC_5f06b.dir/build.make CMakeFiles/cmTC_5f06b.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_5f06b.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=lfind -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_5f06b.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_5f06b
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5f06b.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=lfind -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_5f06b.dir/CheckFunctionExists.c.o -o cmTC_5f06b
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Performing C SOURCE FILE Test HAVE_SNPRINTF succeeded with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_05b91/fast && /usr/bin/make -f CMakeFiles/cmTC_05b91.dir/build.make CMakeFiles/cmTC_05b91.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_05b91.dir/src.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 -DHAVE_SNPRINTF -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_05b91.dir/src.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_05b91
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_05b91.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 -DHAVE_SNPRINTF -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_05b91.dir/src.c.o -o cmTC_05b91
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Source file was:
#include <stdio.h>
int main(void) {
char buf[10];
snprintf(buf, 10, "Test %d", 1);
return 0;
}
Determining if the system is big endian passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_f26da/fast && /usr/bin/make -f CMakeFiles/cmTC_f26da.dir/build.make CMakeFiles/cmTC_f26da.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f26da.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_f26da.dir/TestEndianess.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/TestEndianess.c
Linking C executable cmTC_f26da
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f26da.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_f26da.dir/TestEndianess.c.o -o cmTC_f26da
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_4309f/fast && /usr/bin/make -f CMakeFiles/cmTC_4309f.dir/build.make CMakeFiles/cmTC_4309f.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_4309f.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_4309f.dir/TestEndianess.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/TestEndianess.c
Linking C executable cmTC_4309f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4309f.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_4309f.dir/TestEndianess.c.o -o cmTC_4309f
make[1]: Leaving directory '/home/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 stdio.h exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_2be43/fast && /usr/bin/make -f CMakeFiles/cmTC_2be43.dir/build.make CMakeFiles/cmTC_2be43.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2be43.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_2be43.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_2be43
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2be43.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_2be43.dir/CheckIncludeFile.c.o -o cmTC_2be43
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_34d38/fast && /usr/bin/make -f CMakeFiles/cmTC_34d38.dir/build.make CMakeFiles/cmTC_34d38.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_34d38.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_34d38.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_34d38
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_34d38.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_34d38.dir/CheckIncludeFile.c.o -o cmTC_34d38
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_7a519/fast && /usr/bin/make -f CMakeFiles/cmTC_7a519.dir/build.make CMakeFiles/cmTC_7a519.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_7a519.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_7a519.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_7a519
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7a519.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_7a519.dir/CheckIncludeFile.c.o -o cmTC_7a519
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_b559f/fast && /usr/bin/make -f CMakeFiles/cmTC_b559f.dir/build.make CMakeFiles/cmTC_b559f.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b559f.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_b559f.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_b559f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b559f.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_b559f.dir/CheckIncludeFile.c.o -o cmTC_b559f
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_b0931/fast && /usr/bin/make -f CMakeFiles/cmTC_b0931.dir/build.make CMakeFiles/cmTC_b0931.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b0931.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_b0931.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_b0931
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b0931.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_b0931.dir/CheckIncludeFile.c.o -o cmTC_b0931
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_0fd6f/fast && /usr/bin/make -f CMakeFiles/cmTC_0fd6f.dir/build.make CMakeFiles/cmTC_0fd6f.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0fd6f.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_0fd6f.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_0fd6f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0fd6f.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_0fd6f.dir/CheckIncludeFile.c.o -o cmTC_0fd6f
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_240a9/fast && /usr/bin/make -f CMakeFiles/cmTC_240a9.dir/build.make CMakeFiles/cmTC_240a9.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_240a9.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_240a9.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_240a9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_240a9.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_240a9.dir/CheckIncludeFile.c.o -o cmTC_240a9
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_52235/fast && /usr/bin/make -f CMakeFiles/cmTC_52235.dir/build.make CMakeFiles/cmTC_52235.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_52235.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_52235.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_52235
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_52235.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_52235.dir/CheckIncludeFile.c.o -o cmTC_52235
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_800e0/fast && /usr/bin/make -f CMakeFiles/cmTC_800e0.dir/build.make CMakeFiles/cmTC_800e0.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_800e0.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_800e0.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_800e0
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_800e0.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_800e0.dir/CheckIncludeFile.c.o -o cmTC_800e0
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if files malloc.h exist passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_cebc6/fast && /usr/bin/make -f CMakeFiles/cmTC_cebc6.dir/build.make CMakeFiles/cmTC_cebc6.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_cebc6.dir/OPJ_HAVE_MALLOC_H.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_cebc6.dir/OPJ_HAVE_MALLOC_H.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CheckIncludeFiles/OPJ_HAVE_MALLOC_H.c
Linking C executable cmTC_cebc6
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cebc6.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_cebc6.dir/OPJ_HAVE_MALLOC_H.c.o -o cmTC_cebc6
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the posix_memalign exist passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_a8917/fast && /usr/bin/make -f CMakeFiles/cmTC_a8917.dir/build.make CMakeFiles/cmTC_a8917.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a8917.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_a8917.dir/CheckSymbolExists.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_a8917
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a8917.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_a8917.dir/CheckSymbolExists.c.o -o cmTC_a8917
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
File /home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_233aa/fast && /usr/bin/make -f CMakeFiles/cmTC_233aa.dir/build.make CMakeFiles/cmTC_233aa.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_233aa.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_233aa.dir/CheckSymbolExists.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_233aa
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_233aa.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_233aa.dir/CheckSymbolExists.c.o -o cmTC_233aa
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
File /home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_8885c/fast && /usr/bin/make -f CMakeFiles/cmTC_8885c.dir/build.make CMakeFiles/cmTC_8885c.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8885c.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-cast-function-type -Wno-shadow -Wno-unused-function -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_8885c.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_8885c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8885c.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-cast-function-type -Wno-shadow -Wno-unused-function -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_8885c.dir/CheckIncludeFile.c.o -o cmTC_8885c
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD succeeded with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_c2d3c/fast && /usr/bin/make -f CMakeFiles/cmTC_c2d3c.dir/build.make CMakeFiles/cmTC_c2d3c.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c2d3c.dir/src.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-cast-function-type -Wno-shadow -Wno-unused-function -DCMAKE_HAVE_LIBC_PTHREAD -O3 -DNDEBUG -DNDEBUG -fPIE -o CMakeFiles/cmTC_c2d3c.dir/src.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/src.c
/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/src.c:3:7: warning: no previous prototype for ‘test_func’ [-Wmissing-prototypes]
3 | void* test_func(void* data)
| ^~~~~~~~~
Linking C executable cmTC_c2d3c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c2d3c.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-cast-function-type -Wno-shadow -Wno-unused-function -DCMAKE_HAVE_LIBC_PTHREAD -O3 -DNDEBUG -DNDEBUG -Wl,--gc-sections -Wl,--as-needed CMakeFiles/cmTC_c2d3c.dir/src.c.o -o cmTC_c2d3c
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Source file was:
#include <pthread.h>
void* test_func(void* data)
{
return data;
}
int main(void)
{
pthread_t thread;
pthread_create(&thread, NULL, test_func, NULL);
pthread_detach(thread);
pthread_join(thread, NULL);
pthread_atfork(NULL, NULL, NULL);
pthread_exit(NULL);
return 0;
}
Determining if the include file semaphore.h exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_8f2c6/fast && /usr/bin/make -f CMakeFiles/cmTC_8f2c6.dir/build.make CMakeFiles/cmTC_8f2c6.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8f2c6.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_8f2c6.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_8f2c6
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8f2c6.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_8f2c6.dir/CheckIncludeFile.c.o -o cmTC_8f2c6
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Determining if the function sgemm_ exists passed with the following output:
Change Dir: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_1eae3/fast && /usr/bin/make -f CMakeFiles/cmTC_1eae3.dir/build.make CMakeFiles/cmTC_1eae3.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_1eae3.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_1eae3.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_1eae3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1eae3.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_1eae3.dir/CheckFunctionExists.c.o -o cmTC_1eae3 /usr/lib/x86_64-linux-gnu/libblas.so
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_4e601/fast && /usr/bin/make -f CMakeFiles/cmTC_4e601.dir/build.make CMakeFiles/cmTC_4e601.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_4e601.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_4e601.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_4e601
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4e601.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_4e601.dir/CheckFunctionExists.c.o -o cmTC_4e601 -ldl
make[1]: Leaving directory '/home/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: /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_526c1/fast && /usr/bin/make -f CMakeFiles/cmTC_526c1.dir/build.make CMakeFiles/cmTC_526c1.dir/build
make[1]: Entering directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_526c1.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_526c1.dir/CheckIncludeFile.c.o -c /home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_526c1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_526c1.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_526c1.dir/CheckIncludeFile.c.o -o cmTC_526c1
make[1]: Leaving directory '/home/cmhu/vpt_ascend/3rdparty/opencv-4.5.4/build/CMakeFiles/CMakeTmp'