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 | Building location-service
cmake /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src -DCMAKE_INSTALL_PREFIX= -DCMAKE_VERBOSE_MAKEFILE=ON -DSNAPPY=YES
-- The C compiler identification is GNU 5.3.1
-- The CXX compiler identification is GNU 5.3.1
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Could NOT find Lcov (missing: LCOV_EXECUTABLE GENHTML_EXECUTABLE)
-- Could NOT find gcovr (missing: GCOVR_EXECUTABLE)
-- Found GFlags: /usr/lib/x86_64-linux-gnu/libgflags.so
-- Found GLog: /usr/lib/x86_64-linux-gnu/libglog.so
-- pdebuild NOT found, pre-push is going to FAIL
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.29")
-- Boost version: 1.58.0
-- Found the following Boost libraries:
-- filesystem
-- system
-- program_options
-- Looking for include file pthread.h
-- Looking for include file pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE
-- checking for module 'dbus-1'
-- found dbus-1, version 1.10.6
-- checking for module 'dbus-cpp'
-- found dbus-cpp, version 5.0.0
-- checking for module 'json-c'
-- found json-c, version 0.11.99
-- checking for module 'libapparmor'
-- found libapparmor, version 2.10
-- checking for module 'net-cpp'
-- found net-cpp, version 2.0.0
-- checking for module 'process-cpp'
-- found process-cpp, version 3.0.0
-- checking for module 'properties-cpp'
-- found properties-cpp, version 0.0.1
-- checking for module 'trust-store'
-- found trust-store, version 2.0.0
CMake Warning at CMakeLists.txt:62 (message):
Cannot find clang-format >= clang-format-3.5: formatcode target will not be
available
-- Found Doxygen: /usr/bin/doxygen (found version "1.8.11")
-- /usr/lib/x86_64-linux-gnu/libboost_filesystem.so/usr/lib/x86_64-linux-gnu/libboost_system.so/usr/lib/x86_64-linux-gnu/libboost_program_options.so
-- Found Gettext: /usr/bin/msgmerge (found version "0.19.7")
-- Enabling support for Geoclue location providers
-- Enabling GPS location provider
-- checking for module 'wpsapi'
-- package 'wpsapi' not found
-- Executing test suite under dbus-test-runner
-- Found PythonInterp: /usr/bin/python (found version "2.7.11")
-- Cannot enable coverage targets because neither lcov nor gcovr are found.
-- Configuring done
CMake Warning (dev) at cmake/PrePush.cmake:81 (add_dependencies):
Policy CMP0046 is not set: Error on non-existent dependency in
add_dependencies. Run "cmake --help-policy CMP0046" for policy details.
Use the cmake_policy command to set the policy and suppress this warning.
The dependency target "android-build" of target "pre-push" does not exist.
Call Stack (most recent call first):
CMakeLists.txt:19 (include)
This warning is for project developers. Use -Wno-dev to suppress it.
-- Generating done
CMake Warning:
Manually-specified variables were not used by the project:
SNAPPY
-- Build files have been written to: /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build
make -j8
/usr/bin/cmake -H/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src -B/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build --check-build-system CMakeFiles/Makefile.cmake 0
/usr/bin/cmake -E cmake_progress_start /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles/progress.marks
make -f CMakeFiles/Makefile2 all
make[1]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
make -f doc/CMakeFiles/doc.dir/build.make doc/CMakeFiles/doc.dir/depend
make -f src/location_service/com/ubuntu/location/CMakeFiles/ubuntu-location-service-connectivity.dir/build.make src/location_service/com/ubuntu/location/CMakeFiles/ubuntu-location-service-connectivity.dir/depend
make -f src/location_service/com/ubuntu/location/providers/dummy/CMakeFiles/dummy.dir/build.make src/location_service/com/ubuntu/location/providers/dummy/CMakeFiles/dummy.dir/depend
make -f src/location_service/com/ubuntu/location/providers/geoclue/CMakeFiles/geoclue.dir/build.make src/location_service/com/ubuntu/location/providers/geoclue/CMakeFiles/geoclue.dir/depend
make -f src/location_service/com/ubuntu/location/providers/gps/CMakeFiles/gps.dir/build.make src/location_service/com/ubuntu/location/providers/gps/CMakeFiles/gps.dir/depend
make -f po/CMakeFiles/pofiles_1.dir/build.make po/CMakeFiles/pofiles_1.dir/depend
make -f po/CMakeFiles/pofiles_10.dir/build.make po/CMakeFiles/pofiles_10.dir/depend
make -f po/CMakeFiles/pofiles_11.dir/build.make po/CMakeFiles/pofiles_11.dir/depend
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/doc /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/doc/CMakeFiles/doc.dir/DependInfo.cmake --color=
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/providers/dummy /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location/providers/dummy /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location/providers/dummy/CMakeFiles/dummy.dir/DependInfo.cmake --color=
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/providers/geoclue /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location/providers/geoclue /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location/providers/geoclue/CMakeFiles/geoclue.dir/DependInfo.cmake --color=
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location/CMakeFiles/ubuntu-location-service-connectivity.dir/DependInfo.cmake --color=
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/po /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/po /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/po/CMakeFiles/pofiles_10.dir/DependInfo.cmake --color=
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/po /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/po /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/po/CMakeFiles/pofiles_11.dir/DependInfo.cmake --color=
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/po /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/po /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/po/CMakeFiles/pofiles_1.dir/DependInfo.cmake --color=
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/providers/gps /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location/providers/gps /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location/providers/gps/CMakeFiles/gps.dir/DependInfo.cmake --color=
Scanning dependencies of target pofiles_10
Scanning dependencies of target dummy
Scanning dependencies of target pofiles_11
Scanning dependencies of target ubuntu-location-service-connectivity
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
make -f po/CMakeFiles/pofiles_10.dir/build.make po/CMakeFiles/pofiles_10.dir/build
make -f po/CMakeFiles/pofiles_11.dir/build.make po/CMakeFiles/pofiles_11.dir/build
Scanning dependencies of target pofiles_1
Scanning dependencies of target doc
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles 21
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
make -f doc/CMakeFiles/doc.dir/build.make doc/CMakeFiles/doc.dir/build
make -f po/CMakeFiles/pofiles_1.dir/build.make po/CMakeFiles/pofiles_1.dir/build
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
Scanning dependencies of target gps
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
make -f src/location_service/com/ubuntu/location/providers/dummy/CMakeFiles/dummy.dir/build.make src/location_service/com/ubuntu/location/providers/dummy/CMakeFiles/dummy.dir/build
make -f src/location_service/com/ubuntu/location/CMakeFiles/ubuntu-location-service-connectivity.dir/build.make src/location_service/com/ubuntu/location/CMakeFiles/ubuntu-location-service-connectivity.dir/build
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles 7
Scanning dependencies of target geoclue
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles 92
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
[ 1%] make -f src/location_service/com/ubuntu/location/providers/gps/CMakeFiles/gps.dir/build.make src/location_service/com/ubuntu/location/providers/gps/CMakeFiles/gps.dir/build
[ 1%] make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles 20
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles 14
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
make -f src/location_service/com/ubuntu/location/providers/geoclue/CMakeFiles/geoclue.dir/build.make src/location_service/com/ubuntu/location/providers/geoclue/CMakeFiles/geoclue.dir/build
[ 2%] make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles 10
[ 3%] [ 4%] Generating ja.gmo
Generating cs.gmo
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/po && /usr/bin/msgfmt -o /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/po/ja.gmo /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/po/ja.po
[ 5%] cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/po && /usr/bin/msgfmt -o /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/po/cs.gmo /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/po/cs.po
[ 5%] [ 6%] Generating aa.gmo
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/po && /usr/bin/msgfmt -o /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/po/aa.gmo /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/po/aa.po
Building CXX object src/location_service/com/ubuntu/location/CMakeFiles/ubuntu-location-service-connectivity.dir/set_name_for_thread.cpp.o
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location && /usr/bin/c++ -DCOM_UBUNTU_LOCATION_SERVICE_HAVE_NET_CPP=1 -DCOM_UBUNTU_LOCATION_SERVICE_PROVIDERS_GEOCLUE -DCOM_UBUNTU_LOCATION_SERVICE_PROVIDERS_GPS -Dubuntu_location_service_connectivity_EXPORTS -std=c++11 -Wall -fno-strict-aliasing -pedantic -Wextra -fPIC -Wno-error=unused-local-typedefs -fPIC -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/include/dbus-1.0 -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/include/json-c -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service -o CMakeFiles/ubuntu-location-service-connectivity.dir/set_name_for_thread.cpp.o -c /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/set_name_for_thread.cpp
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles 21
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles 20
Building CXX object src/location_service/com/ubuntu/location/providers/dummy/CMakeFiles/dummy.dir/provider.cpp.o
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location/providers/dummy && /usr/bin/c++ -DCOM_UBUNTU_LOCATION_SERVICE_HAVE_NET_CPP=1 -std=c++11 -Wall -fno-strict-aliasing -pedantic -Wextra -fPIC -Wno-error=unused-local-typedefs -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/include/dbus-1.0 -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/include/json-c -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service -o CMakeFiles/dummy.dir/provider.cpp.o -c /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/providers/dummy/provider.cpp
Building CXX object src/location_service/com/ubuntu/location/providers/gps/CMakeFiles/gps.dir/android_hardware_abstraction_layer.cpp.o
Generating API documentation with Doxygen
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location/providers/gps && /usr/bin/c++ -DCOM_UBUNTU_LOCATION_SERVICE_HAVE_NET_CPP=1 -std=c++11 -Wall -fno-strict-aliasing -pedantic -Wextra -fPIC -Wno-error=unused-local-typedefs -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/include/dbus-1.0 -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/include/json-c -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service -o CMakeFiles/gps.dir/android_hardware_abstraction_layer.cpp.o -c /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/providers/gps/android_hardware_abstraction_layer.cpp
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/doc && /usr/bin/doxygen /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/doc/Doxyfile
[ 6%] [ 6%] Built target pofiles_11
[ 6%] make -f po/CMakeFiles/pofiles_12.dir/build.make po/CMakeFiles/pofiles_12.dir/depend
Built target pofiles_10
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles
Built target pofiles_1
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles 93
Building CXX object src/location_service/com/ubuntu/location/providers/geoclue/CMakeFiles/geoclue.dir/provider.cpp.o
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location/providers/geoclue && /usr/bin/c++ -DCOM_UBUNTU_LOCATION_SERVICE_HAVE_NET_CPP=1 -std=c++11 -Wall -fno-strict-aliasing -pedantic -Wextra -fPIC -Wno-error=unused-local-typedefs -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/include/dbus-1.0 -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/include/json-c -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service -o CMakeFiles/geoclue.dir/provider.cpp.o -c /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/providers/geoclue/provider.cpp
warning: Tag `SYMBOL_CACHE_SIZE' at line 346 of file `/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/doc/Doxyfile' has become obsolete.
To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u"
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/po /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/po /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/po/CMakeFiles/pofiles_12.dir/DependInfo.cmake --color=
warning: Tag `XML_SCHEMA' at line 1478 of file `/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/doc/Doxyfile' has become obsolete.
To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u"
warning: Tag `XML_DTD' at line 1484 of file `/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/doc/Doxyfile' has become obsolete.
To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u"
Searching for include files...
Searching for example files...
Searching for files in directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/tests
Searching for images...
Searching for files in directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/images
[ 7%] Searching for dot files...
Searching for msc files...
Searching for dia files...
Searching for files to exclude
Searching INPUT for files to process...
Searching for files in directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc
Searching for files in directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/images
Searching for files in directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include
Searching for files in directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service
[ 7%] Searching for files in directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com
Searching for files in directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu
Searching for files in directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location
Searching for files in directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity
Searching for files in directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers
Searching for files in directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers/remote
Searching for files in directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service
Searching for files in directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session
Building CXX object src/location_service/com/ubuntu/location/CMakeFiles/ubuntu-location-service-connectivity.dir/connectivity/cached_wireless_network.cpp.o
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location && /usr/bin/c++ -DCOM_UBUNTU_LOCATION_SERVICE_HAVE_NET_CPP=1 -DCOM_UBUNTU_LOCATION_SERVICE_PROVIDERS_GEOCLUE -DCOM_UBUNTU_LOCATION_SERVICE_PROVIDERS_GPS -Dubuntu_location_service_connectivity_EXPORTS -std=c++11 -Wall -fno-strict-aliasing -pedantic -Wextra -fPIC -Wno-error=unused-local-typedefs -fPIC -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/include/dbus-1.0 -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/include/json-c -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service -o CMakeFiles/ubuntu-location-service-connectivity.dir/connectivity/cached_wireless_network.cpp.o -c /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/connectivity/cached_wireless_network.cpp
Searching for files in directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/units
Scanning dependencies of target pofiles_12
Searching for files in directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
Reading and parsing tag files
make -f po/CMakeFiles/pofiles_12.dir/build.make po/CMakeFiles/pofiles_12.dir/build
Parsing files
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/CMakeLists.txt...
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/CMakeLists.txt...
Reading /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/daemon_and_cli.md...
Reading /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/debugging.md...
Reading /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/hacking.md...
Reading /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/intro.md...
Reading /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/manual_testing.md...
Reading /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/tips_n_tricks.md...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/CMakeLists.txt...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/CMakeLists.txt...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/accuracy.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/accuracy.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/clock.h...
Building CXX object src/location_service/com/ubuntu/location/CMakeFiles/ubuntu-location-service-connectivity.dir/connectivity/cached_radio_cell.cpp.o
[ 7%] Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/clock.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/codec.h...
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location && /usr/bin/c++ -DCOM_UBUNTU_LOCATION_SERVICE_HAVE_NET_CPP=1 -DCOM_UBUNTU_LOCATION_SERVICE_PROVIDERS_GEOCLUE -DCOM_UBUNTU_LOCATION_SERVICE_PROVIDERS_GPS -Dubuntu_location_service_connectivity_EXPORTS -std=c++11 -Wall -fno-strict-aliasing -pedantic -Wextra -fPIC -Wno-error=unused-local-typedefs -fPIC -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/include/dbus-1.0 -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/include/json-c -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service -o CMakeFiles/ubuntu-location-service-connectivity.dir/connectivity/cached_radio_cell.cpp.o -c /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/connectivity/cached_radio_cell.cpp
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/codec.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/configuration.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/configuration.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity/bounded_integer.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity/bounded_integer.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity/manager.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity/manager.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity/radio_cell.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity/radio_cell.h...
Generating uk.gmo
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity/wireless_network.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity/wireless_network.h...
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/po && /usr/bin/msgfmt -o /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/po/uk.gmo /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/po/uk.po
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/criteria.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/criteria.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/default_provider_selection_policy.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/default_provider_selection_policy.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/heading.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/heading.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/init_and_shutdown.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/init_and_shutdown.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/logging.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/logging.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/optional.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/optional.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/position.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/position.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider.h...
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider_enumerator.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider_enumerator.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider_factory.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider_factory.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider_selection.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider_selection.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider_selection_policy.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider_selection_policy.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers/remote/interface.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers/remote/interface.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers/remote/skeleton.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers/remote/skeleton.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers/remote/stub.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers/remote/stub.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/proxy_provider.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/proxy_provider.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/satellite_based_positioning_state.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/satellite_based_positioning_state.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/configuration.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/configuration.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/default_permission_manager.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/default_permission_manager.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/interface.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/interface.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/permission_manager.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/permission_manager.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session/implementation.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session/implementation.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session/interface.h...
[ 7%] Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session/interface.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session/skeleton.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session/skeleton.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session/stub.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session/stub.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/skeleton.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/skeleton.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/stub.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/stub.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/space_vehicle.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/space_vehicle.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/units/units.h...
Built target pofiles_12
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/units/units.h...
make -f po/CMakeFiles/pofiles_13.dir/build.make po/CMakeFiles/pofiles_13.dir/depend
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/update.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/update.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/velocity.h...
In file included from /usr/include/core/dbus/message.h:21:0,
from /usr/include/core/dbus/bus.h:23,
from /usr/include/core/dbus/object.h:21,
from /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/providers/geoclue/provider.h:22,
from /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/providers/geoclue/provider.cpp:20:
/usr/include/core/dbus/argument_type.h:25:23: fatal error: dbus/dbus.h: No such file or directory
compilation terminated.
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/po /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/po /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/po/CMakeFiles/pofiles_13.dir/DependInfo.cmake --color=
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/velocity.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84/altitude.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84/altitude.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84/coordinate.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84/coordinate.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84/latitude.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84/latitude.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84/longitude.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84/longitude.h...
Preprocessing /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wifi_and_cell_reporting_state.h...
Parsing file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wifi_and_cell_reporting_state.h...
src/location_service/com/ubuntu/location/providers/geoclue/CMakeFiles/geoclue.dir/build.make:57: recipe for target 'src/location_service/com/ubuntu/location/providers/geoclue/CMakeFiles/geoclue.dir/provider.cpp.o' failed
make[2]: *** [src/location_service/com/ubuntu/location/providers/geoclue/CMakeFiles/geoclue.dir/provider.cpp.o] Error 1
Building group list...
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
CMakeFiles/Makefile2:4287: recipe for target 'src/location_service/com/ubuntu/location/providers/geoclue/CMakeFiles/geoclue.dir/all' failed
make[1]: *** [src/location_service/com/ubuntu/location/providers/geoclue/CMakeFiles/geoclue.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles
Building directory list...
Building namespace list...
Building file list...
Building class list...
Associating documentation with classes...
Computing nesting relations for classes...
Building example list...
Searching for enumerations...
Searching for documented typedefs...
[ 7%] Searching for members imported via using declarations...
Scanning dependencies of target pofiles_13
Searching for included using directives...
Searching for documented variables...
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
make -f po/CMakeFiles/pofiles_13.dir/build.make po/CMakeFiles/pofiles_13.dir/build
make[2]: Entering directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles 22
Building interface member list...
Building member list...
[ 8%] Building CXX object src/location_service/com/ubuntu/location/providers/gps/CMakeFiles/gps.dir/provider.cpp.o
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location/providers/gps && /usr/bin/c++ -DCOM_UBUNTU_LOCATION_SERVICE_HAVE_NET_CPP=1 -std=c++11 -Wall -fno-strict-aliasing -pedantic -Wextra -fPIC -Wno-error=unused-local-typedefs -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/include/dbus-1.0 -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/include/json-c -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service -o CMakeFiles/gps.dir/provider.cpp.o -c /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/providers/gps/provider.cpp
Searching for friends...
Searching for documented defines...
Computing class inheritance relations...
Computing class usage relations...
Generating he.gmo
In file included from /usr/include/core/dbus/message.h:21:0,
from /usr/include/core/dbus/bus.h:23,
from /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/connectivity/ofono.h:21,
from /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/connectivity/cached_radio_cell.h:23,
from /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/connectivity/cached_radio_cell.cpp:19:
/usr/include/core/dbus/argument_type.h:25:23: fatal error: dbus/dbus.h: No such file or directory
compilation terminated.
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/po && /usr/bin/msgfmt -o /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/po/he.gmo /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/po/he.po
src/location_service/com/ubuntu/location/CMakeFiles/ubuntu-location-service-connectivity.dir/build.make:80: recipe for target 'src/location_service/com/ubuntu/location/CMakeFiles/ubuntu-location-service-connectivity.dir/connectivity/cached_radio_cell.cpp.o' failed
make[2]: *** [src/location_service/com/ubuntu/location/CMakeFiles/ubuntu-location-service-connectivity.dir/connectivity/cached_radio_cell.cpp.o] Error 1
make[2]: *** Waiting for unfinished jobs....
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles 8
In file included from /usr/include/core/dbus/message.h:21:0,
from /usr/include/core/dbus/bus.h:23,
from /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/connectivity/nm.h:21,
from /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/connectivity/cached_wireless_network.h:25,
from /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/connectivity/cached_wireless_network.cpp:19:
/usr/include/core/dbus/argument_type.h:25:23: fatal error: dbus/dbus.h: No such file or directory
compilation terminated.
[ 9%] src/location_service/com/ubuntu/location/CMakeFiles/ubuntu-location-service-connectivity.dir/build.make:103: recipe for target 'src/location_service/com/ubuntu/location/CMakeFiles/ubuntu-location-service-connectivity.dir/connectivity/cached_wireless_network.cpp.o' failed
make[2]: *** [src/location_service/com/ubuntu/location/CMakeFiles/ubuntu-location-service-connectivity.dir/connectivity/cached_wireless_network.cpp.o] Error 1
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles 22
Building CXX object src/location_service/com/ubuntu/location/providers/dummy/CMakeFiles/dummy.dir/delayed_provider.cpp.o
[ 9%] cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location/providers/dummy && /usr/bin/c++ -DCOM_UBUNTU_LOCATION_SERVICE_HAVE_NET_CPP=1 -std=c++11 -Wall -fno-strict-aliasing -pedantic -Wextra -fPIC -Wno-error=unused-local-typedefs -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/include/dbus-1.0 -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/home/ubuntu/src/snapcraft-2.3/snappy/stage/usr/include/json-c -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service -I/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service -o CMakeFiles/dummy.dir/delayed_provider.cpp.o -c /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/src/location_service/com/ubuntu/location/providers/dummy/delayed_provider.cpp
Built target pofiles_13
Flushing cached template relations that have become invalid...
Creating members for template instances...
Computing class relations...
Add enum values to enums...
Searching for member function documentation...
Building page list...
Search for main page...
Computing page relations...
Determining the scope of groups...
Sorting lists...
Freeing entry tree
Determining which enums are documented
Computing member relations...
Building full member lists recursively...
Adding members to member groups.
Computing member references...
Inheriting documentation...
Generating disk names...
Adding source references...
Adding xrefitems...
Sorting member lists...
Computing dependencies between directories...
Generating citations page...
Counting data structures...
Resolving user defined references...
Finding anchors and sections in the documentation...
Transferring function references...
Combining using relations...
Adding members to index pages...
Generating style sheet...
Generating search indices...
Generating example documentation...
Generating file sources...
Parsing code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/CMakeLists.txt...
Parsing code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/CMakeLists.txt...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/daemon_and_cli.md...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/debugging.md...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/hacking.md...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/intro.md...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/manual_testing.md...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/tips_n_tricks.md...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/accuracy.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/clock.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/codec.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/configuration.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/configuration.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity/bounded_integer.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity/manager.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity/radio_cell.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity/wireless_network.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/criteria.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/default_provider_selection_policy.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/heading.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/init_and_shutdown.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/logging.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/optional.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/position.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider_enumerator.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider_factory.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider_selection.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider_selection_policy.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers/remote/interface.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/interface.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session/interface.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers/remote/skeleton.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session/skeleton.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/skeleton.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers/remote/stub.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session/stub.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/stub.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/proxy_provider.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/satellite_based_positioning_state.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/default_permission_manager.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/permission_manager.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session/implementation.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/space_vehicle.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/units/units.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/update.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/velocity.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84/altitude.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84/coordinate.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84/latitude.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84/longitude.h...
Generating code for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wifi_and_cell_reporting_state.h...
Generating file documentation...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/CMakeLists.txt...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/CMakeLists.txt...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/daemon_and_cli.md...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/debugging.md...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/hacking.md...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/intro.md...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/manual_testing.md...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/tips_n_tricks.md...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/accuracy.h...
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
CMakeFiles/Makefile2:3912: recipe for target 'src/location_service/com/ubuntu/location/CMakeFiles/ubuntu-location-service-connectivity.dir/all' failed
make[1]: *** [src/location_service/com/ubuntu/location/CMakeFiles/ubuntu-location-service-connectivity.dir/all] Error 2
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/clock.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/codec.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/configuration.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/configuration.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity/bounded_integer.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity/manager.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity/radio_cell.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity/wireless_network.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/criteria.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/default_provider_selection_policy.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/heading.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/init_and_shutdown.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/logging.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/optional.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/position.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider_enumerator.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider_factory.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider_selection.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/provider_selection_policy.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers/remote/interface.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/interface.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session/interface.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers/remote/skeleton.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session/skeleton.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/skeleton.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers/remote/stub.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session/stub.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/stub.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/proxy_provider.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/satellite_based_positioning_state.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/default_permission_manager.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/permission_manager.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session/implementation.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/space_vehicle.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/units/units.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/update.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/velocity.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84/altitude.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84/coordinate.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84/latitude.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84/longitude.h...
Generating docs for file /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wifi_and_cell_reporting_state.h...
Generating page documentation...
Generating docs for page md__home_ubuntu_src_snapcraft-2.3_snappy_parts_location-service_src_doc_daemon_and_cli...
/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/daemon_and_cli.md:45: warning: Found unknown command `\gps'
/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/daemon_and_cli.md:46: warning: Found unknown command `\network'
Generating docs for page md__home_ubuntu_src_snapcraft-2.3_snappy_parts_location-service_src_doc_debugging...
Generating docs for page md__home_ubuntu_src_snapcraft-2.3_snappy_parts_location-service_src_doc_hacking...
Generating docs for page md__home_ubuntu_src_snapcraft-2.3_snappy_parts_location-service_src_doc_manual_testing...
/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/manual_testing.md:57: warning: explicit link request to 'Provider::ReferenceLocationLat' could not be resolved
/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/manual_testing.md:57: warning: explicit link request to 'Provider::ReferenceLocationLon' could not be resolved
Generating docs for page md__home_ubuntu_src_snapcraft-2.3_snappy_parts_location-service_src_doc_tips_n_tricks...
Generating group documentation...
Generating class documentation...
Generating docs for compound core::dbus::Skeleton...
Generating docs for compound core::dbus::Stub...
Generating namespace index...
Generating docs for namespace com
Generating docs for namespace com::ubuntu
Generating docs for namespace com::ubuntu::location
Generating docs for compound com::ubuntu::location::Accuracy...
Generating call graph for function com::ubuntu::location::Accuracy::best
Generating call graph for function com::ubuntu::location::Accuracy::classify
Generating call graph for function com::ubuntu::location::Accuracy::worst
Generating docs for compound com::ubuntu::location::AccuracyTraits...
Generating docs for compound com::ubuntu::location::Clock...
Generating docs for compound com::ubuntu::location::Criteria...
Generating docs for nested compound com::ubuntu::location::Criteria::Accuracy...
Generating docs for nested compound com::ubuntu::location::Criteria::Requires...
Generating docs for compound com::ubuntu::location::DefaultProviderSelectionPolicy...
Generating docs for compound com::ubuntu::location::Position...
Generating docs for nested compound com::ubuntu::location::Position::Accuracy...
Generating docs for compound com::ubuntu::location::Provider...
Generating docs for nested compound com::ubuntu::location::Provider::Controller...
Generating docs for nested compound com::ubuntu::location::Provider::Updates...
Generating docs for compound com::ubuntu::location::ProviderEnumerator...
Generating docs for compound com::ubuntu::location::ProviderFactory...
Generating docs for compound com::ubuntu::location::ProviderSelection...
Generating docs for compound com::ubuntu::location::ProviderSelectionPolicy...
Generating docs for compound com::ubuntu::location::ProxyProvider...
Generating docs for compound com::ubuntu::location::SpaceVehicle...
Generating call graph for function com::ubuntu::location::SpaceVehicle::operator==
Generating docs for nested compound com::ubuntu::location::SpaceVehicle::Key...
Generating docs for compound com::ubuntu::location::Update...
Generating call graph for function com::ubuntu::location::Update::Update
Generating docs for namespace com::ubuntu::location::connectivity
Generating docs for compound com::ubuntu::location::connectivity::BoundedInteger...
Generating docs for compound com::ubuntu::location::connectivity::Manager...
Generating docs for nested compound com::ubuntu::location::connectivity::Manager::Errors...
Generating docs for nested compound com::ubuntu::location::connectivity::Manager::Errors::ConnectivityManagementNotSupported...
Generating call graph for function com::ubuntu::location::connectivity::Manager::Errors::ConnectivityManagementNotSupported::ConnectivityManagementNotSupported
Generating docs for compound com::ubuntu::location::connectivity::RadioCell...
Generating docs for nested compound com::ubuntu::location::connectivity::RadioCell::Gsm...
Generating docs for nested compound com::ubuntu::location::connectivity::RadioCell::Lte...
Generating docs for nested compound com::ubuntu::location::connectivity::RadioCell::Umts...
Generating docs for compound com::ubuntu::location::connectivity::WirelessNetwork...
Generating docs for namespace com::ubuntu::location::providers
Generating docs for namespace com::ubuntu::location::providers::remote
Generating docs for compound com::ubuntu::location::providers::remote::Interface...
Generating docs for nested compound com::ubuntu::location::providers::remote::Interface::Properties...
Generating docs for nested compound com::ubuntu::location::providers::remote::Interface::Signals...
Generating docs for nested compound com::ubuntu::location::providers::remote::Interface::Skeleton...
Generating docs for nested compound com::ubuntu::location::providers::remote::Interface::Stub...
Generating docs for namespace com::ubuntu::location::providers::remote::skeleton
Generating docs for compound com::ubuntu::location::providers::remote::skeleton::Configuration...
Generating docs for namespace com::ubuntu::location::providers::remote::stub
Generating docs for compound com::ubuntu::location::providers::remote::stub::Configuration...
Generating docs for namespace com::ubuntu::location::service
Generating docs for compound com::ubuntu::location::service::Configuration...
Generating docs for compound com::ubuntu::location::service::Credentials...
Generating docs for compound com::ubuntu::location::service::DefaultPermissionManager...
Generating docs for compound com::ubuntu::location::service::Interface...
Generating call graph for function com::ubuntu::location::service::Interface::path
Generating docs for nested compound com::ubuntu::location::service::Interface::CreateSessionForCriteria...
Generating docs for nested compound com::ubuntu::location::service::Interface::Errors...
Generating docs for nested compound com::ubuntu::location::service::Interface::Errors::CreatingSession...
Generating docs for nested compound com::ubuntu::location::service::Interface::Errors::InsufficientPermissions...
Generating docs for nested compound com::ubuntu::location::service::Interface::Properties...
Generating docs for nested compound com::ubuntu::location::service::Interface::Properties::DoesReportCellAndWifiIds...
Generating docs for nested compound com::ubuntu::location::service::Interface::Properties::DoesSatelliteBasedPositioning...
Generating docs for nested compound com::ubuntu::location::service::Interface::Properties::IsOnline...
Generating docs for nested compound com::ubuntu::location::service::Interface::Properties::VisibleSpaceVehicles...
Generating docs for compound com::ubuntu::location::service::PermissionManager...
Generating docs for compound com::ubuntu::location::service::Skeleton...
Generating docs for nested compound com::ubuntu::location::service::Skeleton::Configuration...
Generating docs for nested compound com::ubuntu::location::service::Skeleton::CredentialsResolver...
Generating docs for nested compound com::ubuntu::location::service::Skeleton::DBusDaemonCredentialsResolver...
Generating docs for nested compound com::ubuntu::location::service::Skeleton::ObjectPathGenerator...
Generating docs for compound com::ubuntu::location::service::Stub...
Generating docs for namespace com::ubuntu::location::service::session
Generating docs for compound com::ubuntu::location::service::session::Implementation...
Generating docs for compound com::ubuntu::location::service::session::Interface...
Generating docs for nested compound com::ubuntu::location::service::session::Interface::Errors...
Generating docs for nested compound com::ubuntu::location::service::session::Interface::Updates...
Generating docs for compound com::ubuntu::location::service::session::Skeleton...
Generating docs for nested compound com::ubuntu::location::service::session::Skeleton::Configuration...
Generating docs for nested compound com::ubuntu::location::service::session::Skeleton::Local...
Generating docs for nested compound com::ubuntu::location::service::session::Skeleton::Remote...
Generating docs for compound com::ubuntu::location::service::session::Stub...
Generating docs for namespace com::ubuntu::location::units
Generating docs for namespace com::ubuntu::location::wgs84
Generating docs for compound com::ubuntu::location::wgs84::Coordinate...
Generating call graph for function com::ubuntu::location::wgs84::Coordinate::Coordinate
Generating docs for compound com::ubuntu::location::wgs84::CoordinateTraits...
Generating docs for compound com::ubuntu::location::wgs84::CoordinateTraits< Altitude >...
Generating docs for compound com::ubuntu::location::wgs84::CoordinateTraits< Latitude >...
Generating docs for compound com::ubuntu::location::wgs84::CoordinateTraits< Longitude >...
Generating docs for namespace com::ubuntu::location::wgs84::tag
Generating docs for namespace core
Generating docs for namespace core::dbus
Generating docs for compound core::dbus::Codec< com::ubuntu::location::Criteria >...
Generating docs for compound core::dbus::Codec< com::ubuntu::location::Optional< T > >...
Generating docs for compound core::dbus::Codec< com::ubuntu::location::Position >...
Generating docs for compound core::dbus::Codec< com::ubuntu::location::Provider::Features >...
Generating docs for compound core::dbus::Codec< com::ubuntu::location::Provider::Requirements >...
Generating docs for compound core::dbus::Codec< com::ubuntu::location::SpaceVehicle >...
Generating call graph for function core::dbus::Codec< com::ubuntu::location::SpaceVehicle >::decode_argument
Generating call graph for function core::dbus::Codec< com::ubuntu::location::SpaceVehicle >::encode_argument
Generating docs for compound core::dbus::Codec< com::ubuntu::location::SpaceVehicle::Key >...
Generating docs for compound core::dbus::Codec< com::ubuntu::location::units::Quantity< T > >...
Generating docs for compound core::dbus::Codec< com::ubuntu::location::Update< T > >...
Generating docs for compound core::dbus::Codec< com::ubuntu::location::wgs84::Coordinate< T, U > >...
Generating docs for compound core::dbus::Codec< com::ubuntu::location::WifiAndCellIdReportingState >...
Generating docs for compound core::dbus::Codec< std::map< com::ubuntu::location::SpaceVehicle::Key, com::ubuntu::location::SpaceVehicle > >...
Generating call graph for function core::dbus::Codec< std::map< com::ubuntu::location::SpaceVehicle::Key, com::ubuntu::location::SpaceVehicle > >::decode_argument
Generating call graph for function core::dbus::Codec< std::map< com::ubuntu::location::SpaceVehicle::Key, com::ubuntu::location::SpaceVehicle > >::encode_argument
Generating docs for namespace core::dbus::helper
Generating docs for compound core::dbus::helper::TypeMapper< com::ubuntu::location::SpaceVehicle >...
Generating call graph for function core::dbus::helper::TypeMapper< com::ubuntu::location::SpaceVehicle >::signature
Generating docs for compound core::dbus::helper::TypeMapper< com::ubuntu::location::SpaceVehicle::Key >...
Generating docs for compound core::dbus::helper::TypeMapper< com::ubuntu::location::units::Quantity< T > >...
Generating docs for compound core::dbus::helper::TypeMapper< com::ubuntu::location::Update< T > >...
Generating docs for compound core::dbus::helper::TypeMapper< std::map< com::ubuntu::location::SpaceVehicle::Key, com::ubuntu::location::SpaceVehicle > >...
Generating call graph for function core::dbus::helper::TypeMapper< std::map< com::ubuntu::location::SpaceVehicle::Key, com::ubuntu::location::SpaceVehicle > >::signature
Generating docs for namespace core::dbus::traits
Generating docs for compound core::dbus::traits::Service< com::ubuntu::location::service::Interface >...
Generating graph info page...
Generating directory documentation...
Generating dependency graph for directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com
Generating dependency graph for directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include
Generating dependency graph for directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location
Generating dependency graph for directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service
Generating dependency graph for directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers
Generating dependency graph for directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers/remote
Generating dependency graph for directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service
Generating dependency graph for directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session
Generating dependency graph for directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src
Generating dependency graph for directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu
Generating dependency graph for directory /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84
Generating index page...
Generating page index...
Generating module index...
Generating namespace index...
Generating namespace member index...
Generating annotated compound index...
Generating alphabetical compound index...
Generating hierarchical class index...
Generating graphical class hierarchy...
Generating member index...
Generating file index...
Generating file member index...
Generating example index...
finalizing index lists...
writing tag file...
Generating XML output...
Generating XML output for class com::ubuntu::location::Position::Accuracy
Generating XML output for class com::ubuntu::location::Criteria::Accuracy
Generating XML output for class com::ubuntu::location::Accuracy
Generating XML output for class com::ubuntu::location::AccuracyTraits
Generating XML output for class com::ubuntu::location::connectivity::BoundedInteger
Generating XML output for class com::ubuntu::location::Clock
Generating XML output for class core::dbus::Codec< com::ubuntu::location::Criteria >
Generating XML output for class core::dbus::Codec< com::ubuntu::location::Optional< T > >
Generating XML output for class core::dbus::Codec< com::ubuntu::location::Position >
Generating XML output for class core::dbus::Codec< com::ubuntu::location::Provider::Features >
Generating XML output for class core::dbus::Codec< com::ubuntu::location::Provider::Requirements >
Generating XML output for class core::dbus::Codec< com::ubuntu::location::SpaceVehicle >
Generating XML output for class core::dbus::Codec< com::ubuntu::location::SpaceVehicle::Key >
Generating XML output for class core::dbus::Codec< com::ubuntu::location::units::Quantity< T > >
Generating XML output for class core::dbus::Codec< com::ubuntu::location::Update< T > >
Generating XML output for class core::dbus::Codec< com::ubuntu::location::wgs84::Coordinate< T, U > >
Generating XML output for class core::dbus::Codec< com::ubuntu::location::WifiAndCellIdReportingState >
Generating XML output for class core::dbus::Codec< std::map< com::ubuntu::location::SpaceVehicle::Key, com::ubuntu::location::SpaceVehicle > >
Generating XML output for class com::ubuntu::location::providers::remote::skeleton::Configuration
Generating XML output for class com::ubuntu::location::providers::remote::stub::Configuration
Generating XML output for class com::ubuntu::location::service::Configuration
Generating XML output for class com::ubuntu::location::service::session::Skeleton::Configuration
Generating XML output for class com::ubuntu::location::service::Skeleton::Configuration
Generating XML output for class com::ubuntu::location::connectivity::Manager::Errors::ConnectivityManagementNotSupported
Generating XML output for class com::ubuntu::location::Provider::Controller
Generating XML output for class com::ubuntu::location::wgs84::Coordinate
Generating XML output for class com::ubuntu::location::wgs84::CoordinateTraits
Generating XML output for class com::ubuntu::location::wgs84::CoordinateTraits< Altitude >
Generating XML output for class com::ubuntu::location::wgs84::CoordinateTraits< Latitude >
Generating XML output for class com::ubuntu::location::wgs84::CoordinateTraits< Longitude >
Generating XML output for class com::ubuntu::location::service::Interface::CreateSessionForCriteria
Generating XML output for class com::ubuntu::location::service::Interface::Errors::CreatingSession
Generating XML output for class com::ubuntu::location::service::Credentials
Generating XML output for class com::ubuntu::location::service::Skeleton::CredentialsResolver
Generating XML output for class com::ubuntu::location::Criteria
Generating XML output for class com::ubuntu::location::service::Skeleton::DBusDaemonCredentialsResolver
Generating XML output for class com::ubuntu::location::service::DefaultPermissionManager
Generating XML output for class com::ubuntu::location::DefaultProviderSelectionPolicy
Generating XML output for class com::ubuntu::location::service::Interface::Properties::DoesReportCellAndWifiIds
Generating XML output for class com::ubuntu::location::service::Interface::Properties::DoesSatelliteBasedPositioning
Generating XML output for class com::ubuntu::location::service::Skeleton::Element
Generating XML output for class com::ubuntu::location::service::Interface::Errors
Generating XML output for class com::ubuntu::location::connectivity::Manager::Errors
Generating XML output for class com::ubuntu::location::service::session::Interface::Errors
Generating XML output for class com::ubuntu::location::connectivity::RadioCell::Gsm
Generating XML output for class com::ubuntu::location::service::session::Implementation
Generating XML output for class com::ubuntu::location::service::Interface::Errors::InsufficientPermissions
Generating XML output for class com::ubuntu::location::providers::remote::Interface
Generating XML output for class com::ubuntu::location::service::Interface
Generating XML output for class com::ubuntu::location::service::session::Interface
Generating XML output for class com::ubuntu::location::service::Interface::Properties::IsOnline
Generating XML output for class com::ubuntu::location::SpaceVehicle::Key
Generating XML output for class com::ubuntu::location::service::session::Skeleton::Local
Generating XML output for class com::ubuntu::location::connectivity::RadioCell::Lte
Generating XML output for class com::ubuntu::location::connectivity::Manager
Generating XML output for class com::ubuntu::location::service::Skeleton::ObjectPathGenerator
Generating XML output for class com::ubuntu::location::service::PermissionManager
Generating XML output for class com::ubuntu::location::Position
Generating XML output for class com::ubuntu::location::service::Interface::Properties
Generating XML output for class com::ubuntu::location::providers::remote::Interface::Properties
Generating XML output for class com::ubuntu::location::Provider
Generating XML output for class com::ubuntu::location::ProviderEnumerator
Generating XML output for class com::ubuntu::location::ProviderFactory
Generating XML output for class com::ubuntu::location::ProviderSelection
Generating XML output for class com::ubuntu::location::ProviderSelectionPolicy
Generating XML output for class com::ubuntu::location::ProxyProvider
Generating XML output for class com::ubuntu::location::connectivity::RadioCell
Generating XML output for class com::ubuntu::location::service::session::Skeleton::Remote
Generating XML output for class com::ubuntu::location::Criteria::Requires
Generating XML output for class core::dbus::traits::Service< com::ubuntu::location::service::Interface >
Generating XML output for class com::ubuntu::location::providers::remote::Interface::Signals
Generating XML output for class com::ubuntu::location::providers::remote::Interface::Skeleton
Generating XML output for class core::dbus::Skeleton
Generating XML output for class com::ubuntu::location::service::session::Skeleton
Generating XML output for class com::ubuntu::location::service::Skeleton
Generating XML output for class com::ubuntu::location::SpaceVehicle
Generating XML output for class com::ubuntu::location::service::session::Stub
Generating XML output for class com::ubuntu::location::providers::remote::Interface::Stub
Generating XML output for class com::ubuntu::location::service::Stub
Generating XML output for class core::dbus::Stub
Generating XML output for class core::dbus::helper::TypeMapper< com::ubuntu::location::SpaceVehicle >
Generating XML output for class core::dbus::helper::TypeMapper< com::ubuntu::location::SpaceVehicle::Key >
Generating XML output for class core::dbus::helper::TypeMapper< com::ubuntu::location::units::Quantity< T > >
Generating XML output for class core::dbus::helper::TypeMapper< com::ubuntu::location::Update< T > >
Generating XML output for class core::dbus::helper::TypeMapper< std::map< com::ubuntu::location::SpaceVehicle::Key, com::ubuntu::location::SpaceVehicle > >
Generating XML output for class com::ubuntu::location::connectivity::RadioCell::Umts
Generating XML output for class com::ubuntu::location::Update
Generating XML output for class com::ubuntu::location::service::session::Interface::Updates
Generating XML output for class com::ubuntu::location::Provider::Updates
Generating XML output for class com::ubuntu::location::service::Interface::Properties::VisibleSpaceVehicles
Generating XML output for class com::ubuntu::location::connectivity::WirelessNetwork
Generating XML output for namespace com
Generating XML output for namespace com::ubuntu
Generating XML output for namespace com::ubuntu::location
Generating XML output for namespace com::ubuntu::location::connectivity
Generating XML output for namespace com::ubuntu::location::providers
Generating XML output for namespace com::ubuntu::location::providers::remote
Generating XML output for namespace com::ubuntu::location::providers::remote::skeleton
Generating XML output for namespace com::ubuntu::location::providers::remote::stub
Generating XML output for namespace com::ubuntu::location::service
Generating XML output for namespace com::ubuntu::location::service::session
Generating XML output for namespace com::ubuntu::location::units
Generating XML output for namespace com::ubuntu::location::wgs84
Generating XML output for namespace com::ubuntu::location::wgs84::tag
Generating XML output for namespace core
Generating XML output for namespace core::dbus
Generating XML output for namespace core::dbus::helper
Generating XML output for namespace core::dbus::traits
Generating XML output for namespace std
Generating XML output for file CMakeLists.txt
Generating XML output for file CMakeLists.txt
Generating XML output for file daemon_and_cli.md
Generating XML output for file debugging.md
Generating XML output for file hacking.md
Generating XML output for file intro.md
Generating XML output for file manual_testing.md
Generating XML output for file tips_n_tricks.md
Generating XML output for file accuracy.h
Generating XML output for file clock.h
Generating XML output for file codec.h
Generating XML output for file configuration.h
Generating XML output for file configuration.h
Generating XML output for file bounded_integer.h
Generating XML output for file manager.h
Generating XML output for file radio_cell.h
Generating XML output for file wireless_network.h
Generating XML output for file criteria.h
Generating XML output for file default_provider_selection_policy.h
Generating XML output for file heading.h
Generating XML output for file init_and_shutdown.h
Generating XML output for file logging.h
Generating XML output for file optional.h
Generating XML output for file position.h
Generating XML output for file provider.h
Generating XML output for file provider_enumerator.h
Generating XML output for file provider_factory.h
Generating XML output for file provider_selection.h
Generating XML output for file provider_selection_policy.h
Generating XML output for file interface.h
Generating XML output for file interface.h
Generating XML output for file interface.h
Generating XML output for file skeleton.h
Generating XML output for file skeleton.h
Generating XML output for file skeleton.h
Generating XML output for file stub.h
Generating XML output for file stub.h
Generating XML output for file stub.h
Generating XML output for file proxy_provider.h
Generating XML output for file satellite_based_positioning_state.h
Generating XML output for file default_permission_manager.h
Generating XML output for file permission_manager.h
Generating XML output for file implementation.h
Generating XML output for file space_vehicle.h
Generating XML output for file units.h
Generating XML output for file update.h
Generating XML output for file velocity.h
Generating XML output for file altitude.h
Generating XML output for file coordinate.h
Generating XML output for file latitude.h
Generating XML output for file longitude.h
Generating XML output for file wifi_and_cell_reporting_state.h
Generating XML output for page md__home_ubuntu_src_snapcraft-2.3_snappy_parts_location-service_src_doc_daemon_and_cli
/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/daemon_and_cli.md:45: warning: Found unknown command `\gps'
/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/daemon_and_cli.md:46: warning: Found unknown command `\network'
Generating XML output for page md__home_ubuntu_src_snapcraft-2.3_snappy_parts_location-service_src_doc_debugging
Generating XML output for page md__home_ubuntu_src_snapcraft-2.3_snappy_parts_location-service_src_doc_hacking
Generating XML output for page md__home_ubuntu_src_snapcraft-2.3_snappy_parts_location-service_src_doc_manual_testing
/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/manual_testing.md:57: warning: explicit link request to 'Provider::ReferenceLocationLat' could not be resolved
/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/manual_testing.md:57: warning: explicit link request to 'Provider::ReferenceLocationLon' could not be resolved
Generating XML output for page md__home_ubuntu_src_snapcraft-2.3_snappy_parts_location-service_src_doc_tips_n_tricks
Generate XML output for dir /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/
Generate XML output for dir /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/connectivity/
Generate XML output for dir /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/
Generate XML output for dir /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/
Generate XML output for dir /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/
Generate XML output for dir /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers/
Generate XML output for dir /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/providers/remote/
Generate XML output for dir /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/
Generate XML output for dir /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/service/session/
Generate XML output for dir /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/
Generate XML output for dir /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/
Generate XML output for dir /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/units/
Generate XML output for dir /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/include/location_service/com/ubuntu/location/wgs84/
Generating XML output for the main page
Running dot...
Generating dot graphs in single threaded mode...
Running dot for graph 1/486
Running dot for graph 2/486
Running dot for graph 3/486
Running dot for graph 4/486
Running dot for graph 5/486
Running dot for graph 6/486
Running dot for graph 7/486
Running dot for graph 8/486
Running dot for graph 9/486
Running dot for graph 10/486
Running dot for graph 11/486
Running dot for graph 12/486
Running dot for graph 13/486
Running dot for graph 14/486
Running dot for graph 15/486
Running dot for graph 16/486
Running dot for graph 17/486
Running dot for graph 18/486
Running dot for graph 19/486
Running dot for graph 20/486
Running dot for graph 21/486
Running dot for graph 22/486
Running dot for graph 23/486
Running dot for graph 24/486
Running dot for graph 25/486
Running dot for graph 26/486
Running dot for graph 27/486
Running dot for graph 28/486
Running dot for graph 29/486
Running dot for graph 30/486
Running dot for graph 31/486
Running dot for graph 32/486
Running dot for graph 33/486
Running dot for graph 34/486
Running dot for graph 35/486
Running dot for graph 36/486
Running dot for graph 37/486
Running dot for graph 38/486
Running dot for graph 39/486
Running dot for graph 40/486
Running dot for graph 41/486
Running dot for graph 42/486
Running dot for graph 43/486
Running dot for graph 44/486
Running dot for graph 45/486
Running dot for graph 46/486
Running dot for graph 47/486
Running dot for graph 48/486
Running dot for graph 49/486
Running dot for graph 50/486
Running dot for graph 51/486
Running dot for graph 52/486
Running dot for graph 53/486
Running dot for graph 54/486
Running dot for graph 55/486
Running dot for graph 56/486
Running dot for graph 57/486
Running dot for graph 58/486
Running dot for graph 59/486
Running dot for graph 60/486
Running dot for graph 61/486
Running dot for graph 62/486
Running dot for graph 63/486
Linking CXX static library libdummy.a
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location/providers/dummy && /usr/bin/cmake -P CMakeFiles/dummy.dir/cmake_clean_target.cmake
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location/providers/dummy && /usr/bin/cmake -E cmake_link_script CMakeFiles/dummy.dir/link.txt --verbose=1
Running dot for graph 64/486
/usr/bin/ar cq libdummy.a CMakeFiles/dummy.dir/provider.cpp.o CMakeFiles/dummy.dir/delayed_provider.cpp.o
Running dot for graph 65/486
/usr/bin/ranlib libdummy.a
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles 8
[ 9%] Built target dummy
Running dot for graph 66/486
Running dot for graph 67/486
Running dot for graph 68/486
Running dot for graph 69/486
Running dot for graph 70/486
Running dot for graph 71/486
Running dot for graph 72/486
Running dot for graph 73/486
Running dot for graph 74/486
Running dot for graph 75/486
Running dot for graph 76/486
Running dot for graph 77/486
Running dot for graph 78/486
Running dot for graph 79/486
Running dot for graph 80/486
Running dot for graph 81/486
Running dot for graph 82/486
Running dot for graph 83/486
Running dot for graph 84/486
Running dot for graph 85/486
Linking CXX static library libgps.a
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location/providers/gps && /usr/bin/cmake -P CMakeFiles/gps.dir/cmake_clean_target.cmake
Running dot for graph 86/486
cd /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/src/location_service/com/ubuntu/location/providers/gps && /usr/bin/cmake -E cmake_link_script CMakeFiles/gps.dir/link.txt --verbose=1
/usr/bin/ar cq libgps.a CMakeFiles/gps.dir/android_hardware_abstraction_layer.cpp.o CMakeFiles/gps.dir/provider.cpp.o
Running dot for graph 87/486
/usr/bin/ranlib libgps.a
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles 14
[ 9%] Built target gps
Running dot for graph 88/486
Running dot for graph 89/486
Running dot for graph 90/486
Running dot for graph 91/486
Running dot for graph 92/486
Running dot for graph 93/486
Running dot for graph 94/486
Running dot for graph 95/486
Running dot for graph 96/486
Running dot for graph 97/486
Running dot for graph 98/486
Running dot for graph 99/486
Running dot for graph 100/486
Running dot for graph 101/486
Running dot for graph 102/486
Running dot for graph 103/486
Running dot for graph 104/486
Running dot for graph 105/486
Running dot for graph 106/486
Running dot for graph 107/486
Running dot for graph 108/486
Running dot for graph 109/486
Running dot for graph 110/486
Running dot for graph 111/486
Running dot for graph 112/486
Running dot for graph 113/486
Running dot for graph 114/486
Running dot for graph 115/486
Running dot for graph 116/486
Running dot for graph 117/486
Running dot for graph 118/486
Running dot for graph 119/486
Running dot for graph 120/486
Running dot for graph 121/486
Running dot for graph 122/486
Running dot for graph 123/486
Running dot for graph 124/486
Running dot for graph 125/486
Running dot for graph 126/486
Running dot for graph 127/486
Running dot for graph 128/486
Running dot for graph 129/486
Running dot for graph 130/486
Running dot for graph 131/486
Running dot for graph 132/486
Running dot for graph 133/486
Running dot for graph 134/486
Running dot for graph 135/486
Running dot for graph 136/486
Running dot for graph 137/486
Running dot for graph 138/486
Running dot for graph 139/486
Running dot for graph 140/486
Running dot for graph 141/486
Running dot for graph 142/486
Running dot for graph 143/486
Running dot for graph 144/486
Running dot for graph 145/486
Running dot for graph 146/486
Running dot for graph 147/486
Running dot for graph 148/486
Running dot for graph 149/486
Running dot for graph 150/486
Running dot for graph 151/486
Running dot for graph 152/486
Running dot for graph 153/486
Running dot for graph 154/486
Running dot for graph 155/486
Running dot for graph 156/486
Running dot for graph 157/486
Running dot for graph 158/486
Running dot for graph 159/486
Running dot for graph 160/486
Running dot for graph 161/486
Running dot for graph 162/486
Running dot for graph 163/486
Running dot for graph 164/486
Running dot for graph 165/486
Running dot for graph 166/486
Running dot for graph 167/486
Running dot for graph 168/486
Running dot for graph 169/486
Running dot for graph 170/486
Running dot for graph 171/486
Running dot for graph 172/486
Running dot for graph 173/486
Running dot for graph 174/486
Running dot for graph 175/486
Running dot for graph 176/486
Running dot for graph 177/486
Running dot for graph 178/486
Running dot for graph 179/486
Running dot for graph 180/486
Running dot for graph 181/486
Running dot for graph 182/486
Running dot for graph 183/486
Running dot for graph 184/486
Running dot for graph 185/486
Running dot for graph 186/486
Running dot for graph 187/486
Running dot for graph 188/486
Running dot for graph 189/486
Running dot for graph 190/486
Running dot for graph 191/486
Running dot for graph 192/486
Running dot for graph 193/486
Running dot for graph 194/486
Running dot for graph 195/486
Running dot for graph 196/486
Running dot for graph 197/486
Running dot for graph 198/486
Running dot for graph 199/486
Running dot for graph 200/486
Running dot for graph 201/486
Running dot for graph 202/486
Running dot for graph 203/486
Running dot for graph 204/486
Running dot for graph 205/486
Running dot for graph 206/486
Running dot for graph 207/486
Running dot for graph 208/486
Running dot for graph 209/486
Running dot for graph 210/486
Running dot for graph 211/486
Running dot for graph 212/486
Running dot for graph 213/486
Running dot for graph 214/486
Running dot for graph 215/486
Running dot for graph 216/486
Running dot for graph 217/486
Running dot for graph 218/486
Running dot for graph 219/486
Running dot for graph 220/486
Running dot for graph 221/486
Running dot for graph 222/486
Running dot for graph 223/486
Running dot for graph 224/486
Running dot for graph 225/486
Running dot for graph 226/486
Running dot for graph 227/486
Running dot for graph 228/486
Running dot for graph 229/486
Running dot for graph 230/486
Running dot for graph 231/486
Running dot for graph 232/486
Running dot for graph 233/486
Running dot for graph 234/486
Running dot for graph 235/486
Running dot for graph 236/486
Running dot for graph 237/486
Running dot for graph 238/486
Running dot for graph 239/486
Running dot for graph 240/486
Running dot for graph 241/486
Running dot for graph 242/486
Running dot for graph 243/486
Running dot for graph 244/486
Running dot for graph 245/486
Running dot for graph 246/486
Running dot for graph 247/486
Running dot for graph 248/486
Running dot for graph 249/486
Running dot for graph 250/486
Running dot for graph 251/486
Running dot for graph 252/486
Running dot for graph 253/486
Running dot for graph 254/486
Running dot for graph 255/486
Running dot for graph 256/486
Running dot for graph 257/486
Running dot for graph 258/486
Running dot for graph 259/486
Running dot for graph 260/486
Running dot for graph 261/486
Running dot for graph 262/486
Running dot for graph 263/486
Running dot for graph 264/486
Running dot for graph 265/486
Running dot for graph 266/486
Running dot for graph 267/486
Running dot for graph 268/486
Running dot for graph 269/486
Running dot for graph 270/486
Running dot for graph 271/486
Running dot for graph 272/486
Running dot for graph 273/486
Running dot for graph 274/486
Running dot for graph 275/486
Running dot for graph 276/486
Running dot for graph 277/486
Running dot for graph 278/486
Running dot for graph 279/486
Running dot for graph 280/486
Running dot for graph 281/486
Running dot for graph 282/486
Running dot for graph 283/486
Running dot for graph 284/486
Running dot for graph 285/486
Running dot for graph 286/486
Running dot for graph 287/486
Running dot for graph 288/486
Running dot for graph 289/486
Running dot for graph 290/486
Running dot for graph 291/486
Running dot for graph 292/486
Running dot for graph 293/486
Running dot for graph 294/486
Running dot for graph 295/486
Running dot for graph 296/486
Running dot for graph 297/486
Running dot for graph 298/486
Running dot for graph 299/486
Running dot for graph 300/486
Running dot for graph 301/486
Running dot for graph 302/486
Running dot for graph 303/486
Running dot for graph 304/486
Running dot for graph 305/486
Running dot for graph 306/486
Running dot for graph 307/486
Running dot for graph 308/486
Running dot for graph 309/486
Running dot for graph 310/486
Running dot for graph 311/486
Running dot for graph 312/486
Running dot for graph 313/486
Running dot for graph 314/486
Running dot for graph 315/486
Running dot for graph 316/486
Running dot for graph 317/486
Running dot for graph 318/486
Running dot for graph 319/486
Running dot for graph 320/486
Running dot for graph 321/486
Running dot for graph 322/486
Running dot for graph 323/486
Running dot for graph 324/486
Running dot for graph 325/486
Running dot for graph 326/486
Running dot for graph 327/486
Running dot for graph 328/486
Running dot for graph 329/486
Running dot for graph 330/486
Running dot for graph 331/486
Running dot for graph 332/486
Running dot for graph 333/486
Running dot for graph 334/486
Running dot for graph 335/486
Running dot for graph 336/486
Running dot for graph 337/486
Running dot for graph 338/486
Running dot for graph 339/486
Running dot for graph 340/486
Running dot for graph 341/486
Running dot for graph 342/486
Running dot for graph 343/486
Running dot for graph 344/486
Running dot for graph 345/486
Running dot for graph 346/486
Running dot for graph 347/486
Running dot for graph 348/486
Running dot for graph 349/486
Running dot for graph 350/486
Running dot for graph 351/486
Running dot for graph 352/486
Running dot for graph 353/486
Running dot for graph 354/486
Running dot for graph 355/486
Running dot for graph 356/486
Running dot for graph 357/486
Running dot for graph 358/486
Running dot for graph 359/486
Running dot for graph 360/486
Running dot for graph 361/486
Running dot for graph 362/486
Running dot for graph 363/486
Running dot for graph 364/486
Running dot for graph 365/486
Running dot for graph 366/486
Running dot for graph 367/486
Running dot for graph 368/486
Running dot for graph 369/486
Running dot for graph 370/486
Running dot for graph 371/486
Running dot for graph 372/486
Running dot for graph 373/486
Running dot for graph 374/486
Running dot for graph 375/486
Running dot for graph 376/486
Running dot for graph 377/486
Running dot for graph 378/486
Running dot for graph 379/486
Running dot for graph 380/486
Running dot for graph 381/486
Running dot for graph 382/486
Running dot for graph 383/486
Running dot for graph 384/486
Running dot for graph 385/486
Running dot for graph 386/486
Running dot for graph 387/486
Running dot for graph 388/486
Running dot for graph 389/486
Running dot for graph 390/486
Running dot for graph 391/486
Running dot for graph 392/486
Running dot for graph 393/486
Running dot for graph 394/486
Running dot for graph 395/486
Running dot for graph 396/486
Running dot for graph 397/486
Running dot for graph 398/486
Running dot for graph 399/486
Running dot for graph 400/486
Running dot for graph 401/486
Running dot for graph 402/486
Running dot for graph 403/486
Running dot for graph 404/486
Running dot for graph 405/486
Running dot for graph 406/486
Running dot for graph 407/486
Running dot for graph 408/486
Running dot for graph 409/486
Running dot for graph 410/486
Running dot for graph 411/486
Running dot for graph 412/486
Running dot for graph 413/486
Running dot for graph 414/486
Running dot for graph 415/486
Running dot for graph 416/486
Running dot for graph 417/486
Running dot for graph 418/486
Running dot for graph 419/486
Running dot for graph 420/486
Running dot for graph 421/486
Running dot for graph 422/486
Running dot for graph 423/486
Running dot for graph 424/486
Running dot for graph 425/486
Running dot for graph 426/486
Running dot for graph 427/486
Running dot for graph 428/486
Running dot for graph 429/486
Running dot for graph 430/486
Running dot for graph 431/486
Running dot for graph 432/486
Running dot for graph 433/486
Running dot for graph 434/486
Running dot for graph 435/486
Running dot for graph 436/486
Running dot for graph 437/486
Running dot for graph 438/486
Running dot for graph 439/486
Running dot for graph 440/486
Running dot for graph 441/486
Running dot for graph 442/486
Running dot for graph 443/486
Running dot for graph 444/486
Running dot for graph 445/486
Running dot for graph 446/486
Running dot for graph 447/486
Running dot for graph 448/486
Running dot for graph 449/486
Running dot for graph 450/486
Running dot for graph 451/486
Running dot for graph 452/486
Running dot for graph 453/486
Running dot for graph 454/486
Running dot for graph 455/486
Running dot for graph 456/486
Running dot for graph 457/486
Running dot for graph 458/486
Running dot for graph 459/486
Running dot for graph 460/486
Running dot for graph 461/486
Running dot for graph 462/486
Running dot for graph 463/486
Running dot for graph 464/486
Running dot for graph 465/486
Running dot for graph 466/486
Running dot for graph 467/486
Running dot for graph 468/486
Running dot for graph 469/486
Running dot for graph 470/486
Running dot for graph 471/486
Running dot for graph 472/486
Running dot for graph 473/486
Running dot for graph 474/486
Running dot for graph 475/486
Running dot for graph 476/486
Running dot for graph 477/486
Running dot for graph 478/486
Running dot for graph 479/486
Running dot for graph 480/486
Running dot for graph 481/486
Running dot for graph 482/486
Running dot for graph 483/486
Running dot for graph 484/486
Running dot for graph 485/486
Running dot for graph 486/486
Patching output file 1/289
Patching output file 2/289
Patching output file 3/289
Patching output file 4/289
Patching output file 5/289
Patching output file 6/289
Patching output file 7/289
Patching output file 8/289
Patching output file 9/289
Patching output file 10/289
Patching output file 11/289
Patching output file 12/289
Patching output file 13/289
Patching output file 14/289
Patching output file 15/289
Patching output file 16/289
Patching output file 17/289
Patching output file 18/289
Patching output file 19/289
Patching output file 20/289
Patching output file 21/289
Patching output file 22/289
Patching output file 23/289
Patching output file 24/289
Patching output file 25/289
Patching output file 26/289
Patching output file 27/289
Patching output file 28/289
Patching output file 29/289
Patching output file 30/289
Patching output file 31/289
Patching output file 32/289
Patching output file 33/289
Patching output file 34/289
Patching output file 35/289
Patching output file 36/289
Patching output file 37/289
Patching output file 38/289
Patching output file 39/289
Patching output file 40/289
Patching output file 41/289
Patching output file 42/289
Patching output file 43/289
Patching output file 44/289
Patching output file 45/289
Patching output file 46/289
Patching output file 47/289
Patching output file 48/289
Patching output file 49/289
Patching output file 50/289
Patching output file 51/289
Patching output file 52/289
Patching output file 53/289
Patching output file 54/289
Patching output file 55/289
Patching output file 56/289
Patching output file 57/289
Patching output file 58/289
Patching output file 59/289
Patching output file 60/289
Patching output file 61/289
Patching output file 62/289
Patching output file 63/289
Patching output file 64/289
Patching output file 65/289
Patching output file 66/289
Patching output file 67/289
Patching output file 68/289
Patching output file 69/289
Patching output file 70/289
Patching output file 71/289
Patching output file 72/289
Patching output file 73/289
Patching output file 74/289
Patching output file 75/289
Patching output file 76/289
Patching output file 77/289
Patching output file 78/289
Patching output file 79/289
Patching output file 80/289
Patching output file 81/289
Patching output file 82/289
Patching output file 83/289
Patching output file 84/289
Patching output file 85/289
Patching output file 86/289
Patching output file 87/289
Patching output file 88/289
Patching output file 89/289
Patching output file 90/289
Patching output file 91/289
Patching output file 92/289
Patching output file 93/289
Patching output file 94/289
Patching output file 95/289
Patching output file 96/289
Patching output file 97/289
Patching output file 98/289
Patching output file 99/289
Patching output file 100/289
Patching output file 101/289
Patching output file 102/289
Patching output file 103/289
Patching output file 104/289
Patching output file 105/289
Patching output file 106/289
Patching output file 107/289
Patching output file 108/289
Patching output file 109/289
Patching output file 110/289
Patching output file 111/289
Patching output file 112/289
Patching output file 113/289
Patching output file 114/289
Patching output file 115/289
Patching output file 116/289
Patching output file 117/289
Patching output file 118/289
Patching output file 119/289
Patching output file 120/289
Patching output file 121/289
Patching output file 122/289
Patching output file 123/289
Patching output file 124/289
Patching output file 125/289
Patching output file 126/289
Patching output file 127/289
Patching output file 128/289
Patching output file 129/289
Patching output file 130/289
Patching output file 131/289
Patching output file 132/289
Patching output file 133/289
Patching output file 134/289
Patching output file 135/289
Patching output file 136/289
Patching output file 137/289
Patching output file 138/289
Patching output file 139/289
Patching output file 140/289
Patching output file 141/289
Patching output file 142/289
Patching output file 143/289
Patching output file 144/289
Patching output file 145/289
Patching output file 146/289
Patching output file 147/289
Patching output file 148/289
Patching output file 149/289
Patching output file 150/289
Patching output file 151/289
Patching output file 152/289
Patching output file 153/289
Patching output file 154/289
Patching output file 155/289
Patching output file 156/289
Patching output file 157/289
Patching output file 158/289
Patching output file 159/289
Patching output file 160/289
Patching output file 161/289
Patching output file 162/289
Patching output file 163/289
Patching output file 164/289
Patching output file 165/289
Patching output file 166/289
Patching output file 167/289
Patching output file 168/289
Patching output file 169/289
Patching output file 170/289
Patching output file 171/289
Patching output file 172/289
Patching output file 173/289
Patching output file 174/289
Patching output file 175/289
Patching output file 176/289
Patching output file 177/289
Patching output file 178/289
Patching output file 179/289
Patching output file 180/289
Patching output file 181/289
Patching output file 182/289
Patching output file 183/289
Patching output file 184/289
Patching output file 185/289
Patching output file 186/289
Patching output file 187/289
Patching output file 188/289
Patching output file 189/289
Patching output file 190/289
Patching output file 191/289
Patching output file 192/289
Patching output file 193/289
Patching output file 194/289
Patching output file 195/289
Patching output file 196/289
Patching output file 197/289
Patching output file 198/289
Patching output file 199/289
Patching output file 200/289
Patching output file 201/289
Patching output file 202/289
Patching output file 203/289
Patching output file 204/289
Patching output file 205/289
Patching output file 206/289
Patching output file 207/289
Patching output file 208/289
Patching output file 209/289
Patching output file 210/289
Patching output file 211/289
Patching output file 212/289
Patching output file 213/289
Patching output file 214/289
Patching output file 215/289
Patching output file 216/289
Patching output file 217/289
Patching output file 218/289
Patching output file 219/289
Patching output file 220/289
Patching output file 221/289
Patching output file 222/289
Patching output file 223/289
Patching output file 224/289
Patching output file 225/289
Patching output file 226/289
Patching output file 227/289
Patching output file 228/289
Patching output file 229/289
Patching output file 230/289
Patching output file 231/289
Patching output file 232/289
Patching output file 233/289
Patching output file 234/289
Patching output file 235/289
Patching output file 236/289
Patching output file 237/289
Patching output file 238/289
Patching output file 239/289
Patching output file 240/289
Patching output file 241/289
Patching output file 242/289
Patching output file 243/289
Patching output file 244/289
Patching output file 245/289
Patching output file 246/289
Patching output file 247/289
Patching output file 248/289
Patching output file 249/289
Patching output file 250/289
Patching output file 251/289
Patching output file 252/289
Patching output file 253/289
Patching output file 254/289
Patching output file 255/289
Patching output file 256/289
Patching output file 257/289
Patching output file 258/289
Patching output file 259/289
Patching output file 260/289
Patching output file 261/289
Patching output file 262/289
Patching output file 263/289
Patching output file 264/289
Patching output file 265/289
Patching output file 266/289
Patching output file 267/289
Patching output file 268/289
Patching output file 269/289
Patching output file 270/289
Patching output file 271/289
Patching output file 272/289
Patching output file 273/289
Patching output file 274/289
Patching output file 275/289
Patching output file 276/289
Patching output file 277/289
Patching output file 278/289
Patching output file 279/289
Patching output file 280/289
Patching output file 281/289
Patching output file 282/289
Patching output file 283/289
Patching output file 284/289
Patching output file 285/289
Patching output file 286/289
Patching output file 287/289
Patching output file 288/289
Patching output file 289/289
error: Style sheet '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/src/doc/extra.css' specified by HTML_EXTRA_STYLESHEET does not exist!
lookup cache used 2663/65536 hits=19751 misses=3170
finished...
make[2]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
/usr/bin/cmake -E cmake_progress_report /home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build/CMakeFiles 7
[ 9%] Built target doc
make[1]: Leaving directory '/home/ubuntu/src/snapcraft-2.3/snappy/parts/location-service/build'
Makefile:129: recipe for target 'all' failed
make: *** [all] Error 2
Command '['/bin/sh', '/tmp/tmpn3geis21', 'make', '-j8']' returned non-
zero exit status 2
|